Machine Learning
Loading the Model (and Complaining about Memory Usage)
How I loaded the files in python I used joblib to save the files from sklearn.externals import joblib feature_list = count_vect.get_feature_names() model = "model105" joblib.dump(feature_list, model + '_vocabulary.pkl') joblib.dump(tfidf_transformer, model + '_transform.pkl') joblib.dump(