MaartenGr / Concept

Concept Modeling: Topic Modeling on Images and Text
https://maartengr.github.io/Concept/
MIT License
192 stars 16 forks source link

Saving the model #8

Closed vvkishere closed 2 years ago

vvkishere commented 2 years ago

Hi.

Thank you very much for creating this. It is an absolutely brilliant idea. Once we have created the model, how do we save the model and use it for any new data that comes in?

MaartenGr commented 2 years ago

You can save the model using .save(path="my_model"). That way, you can save the model and load it with ConceptModel.load(path="my_model") to use it for new data.

vvkishere commented 2 years ago

perfect. Thank you.