Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.53 KB

File metadata and controls

39 lines (30 loc) · 1.53 KB

CreatePhotoPrediction

Properties

Name Type Description Notes
photo SimplePhoto [readonly]
bbox BoundingBox
insect_confidence float Insect confidence
predicted_class str
taxon SimpleTaxon [readonly]
threshold_deviation float
is_decisive bool Indicates if this prediction can close the identification task. [optional]
scores PredictionScore
classifier_version str
created_at datetime [readonly]
updated_at datetime [readonly]

Example

from mosquito_alert.models.create_photo_prediction import CreatePhotoPrediction

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

# convert the object into a dict
create_photo_prediction_dict = create_photo_prediction_instance.to_dict()
# create an instance of CreatePhotoPrediction from a dict
create_photo_prediction_from_dict = CreatePhotoPrediction.from_dict(create_photo_prediction_dict)

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