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 eccomp2023 -m sop-practice
$ 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:
# eccomp2023/sop-practice
opthub_match = api.match("cfc985ca-a889-4441-8942-0b146f69ed30")
opthub_match.submit(<YOUR_SOLUTION>)Details on how to submit solutions using a Pythoncurl -X POST "https://api.competition.opthub.ai/matches/cfc985ca-a889-4441-8942-0b146f69ed30/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