Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 838 Bytes

File metadata and controls

30 lines (21 loc) · 838 Bytes

ModelCost

Properties

Name Type Description Notes
model str
total_cost float

Example

from iblai.models.model_cost import ModelCost

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

# convert the object into a dict
model_cost_dict = model_cost_instance.to_dict()
# create an instance of ModelCost from a dict
model_cost_from_dict = ModelCost.from_dict(model_cost_dict)

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