Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 844 Bytes

Prediction.md

File metadata and controls

30 lines (21 loc) · 844 Bytes

Prediction

Properties

Name Type Description Notes
tag str
prob float

Example

from usd_search_client.models.prediction import Prediction

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

# convert the object into a dict
prediction_dict = prediction_instance.to_dict()
# create an instance of Prediction from a dict
prediction_from_dict = Prediction.from_dict(prediction_dict)

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