You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import pickle
from sklearn.svm import LinearSVC
clf = LinearSVC()
with open("test.pkl","wb") as f:
f.write(pickle.dumps(clf,2))
if i want to load this model , i need know the struct of this model.In fact, I know nothing about the internals of the model save file.
anybody help? pls
The text was updated successfully, but these errors were encountered:
train in python:
if i want to load this model , i need know the struct of this model.In fact, I know nothing about the internals of the model save file.
anybody help? pls
The text was updated successfully, but these errors were encountered: