is there anyway to know from inside a node which n...
# questions
u
is there anyway to know from inside a node which nodes have been run? My project has after the etl six different models being trained and I don't necessarily train all of them at each run. At the end I create a graph comparing the results but I want only to show data from the ones trained in the current run.
d
you could use Hooks to make a log of this
or a custom runner
u
I will see for the customer runner thanks!