Skip to content

Commit 6baa51a

Browse files
committed
Update some config
1 parent 569848e commit 6baa51a

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

challenge_config.yaml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ challenge_phases:
7373
allowed_email_ids: []
7474
disable_logs: False
7575
is_submission_public: True
76-
start_date: 2019-01-19 00:00:00
76+
start_date: 2025-04-19 00:00:00
7777
end_date: 2099-04-25 23:59:59
7878
test_annotation_file: annotations/test_annotations_devsplit.json
7979
max_submissions_per_day: 5
@@ -97,11 +97,12 @@ challenge_phases:
9797
description: Sample
9898
type: radio
9999
options: ["A", "B", "C"]
100-
- name: MultipleChoiceAttribute
100+
- name: Solution Modality
101101
description: Sample
102102
type: checkbox
103-
options: ["alpha", "beta", "gamma"]
104-
- name: TrueFalseField
103+
options: ["LiDAR Only", "Lidar-Inertial", "Visual Only", "Visual-Inertial"]
104+
required: True
105+
- name: Is post-processing applied?
105106
description: Sample
106107
type: boolean
107108
required: True
@@ -126,7 +127,7 @@ challenge_phases:
126127
allowed_email_ids: []
127128
disable_logs: False
128129
is_submission_public: False
129-
start_date: 2019-01-01 00:00:00
130+
start_date: 2025-04-19 00:00:00
130131
end_date: 2099-05-24 23:59:59
131132
max_concurrent_submissions_allowed: 3
132133
max_submissions_per_day: 5
@@ -149,11 +150,11 @@ challenge_phases:
149150
description: Sample
150151
type: radio
151152
options: ["A", "B", "C"]
152-
- name: MultipleChoiceAttribute
153+
- name: Solution Modality
153154
description: Sample
154155
type: checkbox
155-
options: ["alpha", "beta", "gamma"]
156-
- name: TrueFalseField
156+
options: ["LiDAR Only", "Lidar-Inertial", "Visual Only", "Visual-Inertial"]
157+
- name: Is post-processing applied?
157158
description: Sample
158159
type: boolean
159160
is_restricted_to_select_one_submission: False
@@ -162,20 +163,20 @@ challenge_phases:
162163

163164
dataset_splits:
164165
- id: 1
165-
name: Train Split 1 Heap
166+
name: Heap Dataset
166167
codename: heap
167168

168169
- id: 2
169-
name: Train Split 2 Eiger
170+
name: Eiger Dataset
170171
codename: eiger
171172

172173
- id: 3
173174
name: Test Split 3
174-
codename: test_split_3
175+
codename: t_dataset
175176

176177
- id: 4
177-
name: Test Split 4
178-
codename: test_split_4
178+
name: T Dataset
179+
codename: tt_dataset
179180

180181
- id: 10
181182
name: Test Split 10

evaluation_script/evo_script.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import io
2-
import os
3-
import tempfile
2+
# import os
3+
# import tempfile
44
from pathlib import Path
55
from typing import Dict, IO, Optional, Union, List
66
import numpy as np

github/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

33

4-
os.environ["CHALLENGE_ERRORS"] = "False"
4+
os.environ["CHALLENGE_ERRORS"] = "True"
55

66
HOST_CONFIG_FILE_PATH = "github/host_config.json"
77
CHALLENGE_CONFIG_VALIDATION_URL = "/api/challenges/challenge/challenge_host_team/{}/validate_challenge_config/"

0 commit comments

Comments
 (0)