Scores are calculated based on the evaluation history of the solutions you have submitted. The score for each match is used to calculate the overall competition score and ranking.
/
400
The number of evaluations is incremented when a solution is submitted, and if the evaluation value or score calculation fails, the count is decremented. Solutions cannot be submitted if the number of evaluations exceeds the limit.
Please submit a solution that optimizesthe indicator as much as possible, referring to the following problem and indicator information.
$ opt login -u <YOUR_USER_NAME> -p <YOUR_PASSWORD>
$ opt select -c eccomp2020 -m MOP-Large-Huge
$ opt submit
? Write the solution:<YOUR_SOLUTION>Details on how to submit solutions using a CLIfrom opthub_client.api import OptHub
with OptHub("<YOUR_API_KEY>") as api:
# eccomp2020/MOP-Large-Huge
opthub_match = api.match("72332aa8-6ae2-46e6-ab86-ac62a93d78f2")
opthub_match.submit(<YOUR_SOLUTION>)Details on how to submit solutions using a Pythoncurl -X POST "https://api.competition.opthub.ai/matches/72332aa8-6ae2-46e6-ab86-ac62a93d78f2/trials" \
-H "Content-Type: application/json"\
-H "x-api-key: <YOUR_API_KEY>"\
-d '{"variable": <YOUR_SOLUTION>}'Details on how to submit solutions using a REST API