A ML model for the features, so far just a name.
Name | Type | Description | Notes |
---|---|---|---|
name | str | A usable model for features extraction. |
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)