Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 879 Bytes

MLModel.md

File metadata and controls

30 lines (21 loc) · 879 Bytes

MLModel

A ML model for the features, so far just a name.

Properties

Name Type Description Notes
name str A usable model for features extraction.

Example

from ecotaxa_py_client.models.ml_model import MLModel

# TODO update the JSON string below
json = "{}"
# create an instance of MLModel from a JSON string
ml_model_instance = MLModel.from_json(json)
# print the JSON string representation of the object
print(MLModel.to_json())

# convert the object into a dict
ml_model_dict = ml_model_instance.to_dict()
# create an instance of MLModel from a dict
ml_model_form_dict = ml_model.from_dict(ml_model_dict)

[Back to Model list] [Back to API list] [Back to README]