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.
/
10,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 eccomp2024 -m single-objective-2
$ 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:
# eccomp2024/single-objective-2
opthub_match = api.match("47e507bd-eed3-4d37-9def-a1165f45b850")
opthub_match.submit(<YOUR_SOLUTION>)Details on how to submit solutions using a Pythoncurl -X POST "https://api.competition.opthub.ai/matches/47e507bd-eed3-4d37-9def-a1165f45b850/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