a very common use case is that you do ...
ds.input(read_in_some_data())
and later...
ds.start()
model.fit()
ds.summary("x_accuracy", model.accuracy)
ds.publish("trained a model")
ds.start()
model2.fit()
ds.summary("y_accuracy", model.accuracy)
ds.publish("trained some other model")
i think we just shouldn't reset input files on ds.start() and instead have an explicit ds.clear()
we should clear params & stats on ds.start() though
a very common use case is that you do ...
and later...
i think we just shouldn't reset input files on
ds.start()and instead have an explicitds.clear()we should clear params & stats on ds.start() though