turicreate.nearest_neighbors.NearestNeighborsModel.save — Turi Create API 6.4.1 documentation (original) (raw)
- Docs »
- turicreate.nearest_neighbors.NearestNeighborsModel.save
NearestNeighborsModel.
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. |
---|
Examples
model.save('my_model_file') loaded_model = turicreate.load_model('my_model_file')