I was wondering if there is a implemented function for a status (in %) of my node… writing a learner and predictor node for SOMs and need %-display instead the blue load bar in the node…
with friendly regards
kubrick
I was wondering if there is a implemented function for a status (in %) of my node… writing a learner and predictor node for SOMs and need %-display instead the blue load bar in the node…
with friendly regards
kubrick
You can also update the hover text to report the percent completed.
…using the setProgress-methods on the ExecutionContext inside execute.
thx for your answers. we already found the answer although.
=)
what was the answer you found? might be helpful to others.
i used in my example this:
exec.setProgress((t / train), "Trainstep: " + t);
t was the current trainingstep and train ne maximum number of trainsteps… so
setProgress(var) gives the percentage… while the secound part of the expression gives a mouseover text with the current trainstep… =)