I'm working mostly with scikit-learn, as far as I understand, the TRAINS auto-magic doesn't catch scikit-learn model store/load automatically.
How do I manually register the model after I have 'pickled' it.
For Example:
import pickle
with open("model.pkl", "wb") as file:
pickle.dump(my_model, file)
Assuming you are referring to TRAINS experiment manager: https://github.com/allegroai/trains (which I'm one of the maintainers)
Or, if you have information you want to store together with the pickled model file, you can do:
Now, you should see in the UI an output model registered with the experiment. The model contains a link to the pickel file, together with the configuration dictionary.