turicreate.image_similarity.ImageSimilarityModel.save¶
-
ImageSimilarityModel.
save
(location)¶ Save the model. The model is saved as a directory which can then be loaded using the
load_model()
method.Parameters: - location : string
Target destination for the model. Can be a local path or remote URL.
See also
Examples
>>> model.save('my_model_file') >>> loaded_model = tc.load_model('my_model_file')