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.
/
1,000
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 eccomp2021 -m mop-1
$ 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:
# eccomp2021/mop-1
opthub_match = api.match("7885c4ec-e043-47cf-9df6-2fd5c96334df")
opthub_match.submit(<YOUR_SOLUTION>)Details on how to submit solutions using a Pythoncurl -X POST "https://api.competition.opthub.ai/matches/7885c4ec-e043-47cf-9df6-2fd5c96334df/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