Exporting installed models back to .tar.gz files. #10126
Answered
by
polm
foscraft
asked this question in
Help: Coding & Implementations
-
I am working on my spacy project, and I want to make it easy for users to add entity ruler to the models using the yaml file easily. As part of this I want to find a way to export an already installed model back to tar.gz file. How can I reverse that? |
Beta Was this translation helpful? Give feedback.
Answered by
polm
Jan 25, 2022
Replies: 1 comment 3 replies
-
I don't think we'd considered that use case before, but you should be able to do it by using |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
foscraft
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't think we'd considered that use case before, but you should be able to do it by using
spacy package
with the directory where the model was installed. You can find the directory withpip show [model_name]
.