Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

CServeRecipePerf

Properties

Name Type Description Notes
recipe CServeV2Recipe
hardware_instance_id int
output_tp List[List[object]]
mean_ttft List[List[object]]

Example

from platform_api_python_client.models.c_serve_recipe_perf import CServeRecipePerf

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

# convert the object into a dict
c_serve_recipe_perf_dict = c_serve_recipe_perf_instance.to_dict()
# create an instance of CServeRecipePerf from a dict
c_serve_recipe_perf_from_dict = CServeRecipePerf.from_dict(c_serve_recipe_perf_dict)

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