Request to start an evaluation.
| 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] |
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)