Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.06 KB

File metadata and controls

33 lines (24 loc) · 1.06 KB

ModelCard

Properties

Name Type Description Notes
api_version str The version of the model serve APIs
model_type ModelType The type of the served model
model_description str [optional]
model_card Dict[str, object] [optional]
labels Dict[str, str] [optional]

Example

from cms_client.models.model_card import ModelCard

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

# convert the object into a dict
model_card_dict = model_card_instance.to_dict()
# create an instance of ModelCard from a dict
model_card_from_dict = ModelCard.from_dict(model_card_dict)

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