Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

ConfidenceResponse

Taxonomy confidence distribution response.

Properties

Name Type Description Notes
taxonomy_id str
distribution List[ConfidenceDistribution]
avg_confidence float
low_confidence_count int Count of assignments below 0.5 confidence

Example

from mixpeek.models.confidence_response import ConfidenceResponse

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

# convert the object into a dict
confidence_response_dict = confidence_response_instance.to_dict()
# create an instance of ConfidenceResponse from a dict
confidence_response_from_dict = ConfidenceResponse.from_dict(confidence_response_dict)

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