Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

StartEvaluationRequest

Request to start an evaluation.

Properties

Name Type Description Notes
dataset_name str Name of the evaluation dataset to use
evaluation_config EvaluationConfig Optional evaluation configuration (uses defaults if not provided) [optional]

Example

from mixpeek.models.start_evaluation_request import StartEvaluationRequest

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

# convert the object into a dict
start_evaluation_request_dict = start_evaluation_request_instance.to_dict()
# create an instance of StartEvaluationRequest from a dict
start_evaluation_request_from_dict = StartEvaluationRequest.from_dict(start_evaluation_request_dict)

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