File tree 2 files changed +5
-6
lines changed 2 files changed +5
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,18 +7,18 @@ def get_curr_working_dir():
7
7
curr_working_dir = os .getcwd ()
8
8
return curr_working_dir
9
9
10
-
11
10
def run ():
12
11
current_working_directory = get_curr_working_dir ()
13
12
sys .path .append ("{}" .format (current_working_directory ))
14
13
sys .path .append ("{}/challenge_data/challenge_1" .format (current_working_directory ))
15
14
16
15
challenge_id = 1
17
- challenge_phase = "test" # Add the challenge phase codename to be tested
18
- annotation_file_path = "{}/annotations/test_annotations_testsplit.json" .format (
19
- current_working_directory
16
+ challenge_phase = "dev" # Add the challenge phase codename to be tested
17
+ # Make the annotation file path dependent on the challenge_phase
18
+ annotation_file_path = "{}/annotations/{}_annotations.zip" .format (
19
+ current_working_directory , challenge_phase
20
20
) # Add the test annotation file path
21
- user_submission_file_path = "{}/submission.json " .format (
21
+ user_submission_file_path = "{}/submission.zip " .format (
22
22
current_working_directory
23
23
) # Add the sample submission file path
24
24
You can’t perform that action at this time.
0 commit comments