Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to save and load model?Thanks #183

Closed
freehello opened this issue Jun 29, 2022 · 1 comment
Closed

How to save and load model?Thanks #183

freehello opened this issue Jun 29, 2022 · 1 comment

Comments

@freehello
Copy link

💡 Feature request

Motivation

Additional context

@freehello
Copy link
Author

can use dill.
example code:

model_path = "solo_model.dill"
with open(model_path, 'wb') as f:
    dill.dump(model_to_save, f)
    
model_load = dill.load(open(model_path, "rb")
```)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant