Say I want to dump my classifier (clf) and a few other Python data
structures.

Is there any difference between:

import  joblib

my_data['clf'] = clf
my_data['other_things'] = other_things
joblib.dump(my_data, my_data)

and:

from sklearn.externals import joblib

my_data['clf'] = clf
my_data['other_things'] = other_things
joblib.dump(my_data, my_data)

?

Thanks

Josh
------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
_______________________________________________
Scikit-learn-general mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/scikit-learn-general

Reply via email to