-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsubmit_results.py
40 lines (37 loc) · 1.18 KB
/
submit_results.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright (c) OpenRobotLab. All rights reserved.
import mmengine
# Please modify the following content to submit your results
results_file = './test_results_mini.json'
submit_file = './submission_mini.pkl'
method = 'Baseline'
team = 'EmbodiedScan'
authors = 'EmbodiedScan Team'
email = '[email protected]'
institution = 'Shanghai AI Laboratory'
country = 'China'
# submission prototype:
# dict {
# 'method': <str> -- name of the method
# 'team': <str> -- name of the team, identical to the Google Form
# 'authors': <list> -- list of str, authors
# 'e-mail': <str> -- e-mail address
# 'institution / company': <str> -- institution or company
# 'country / region': <str> -- country or region
# 'results': {
# [identifier]: <frame_token> -- identifier of the frame
# dict or list, a single frame prediction
# ,
# ...
# }
# }
results = mmengine.load(results_file)
submit_data = {
'method': method,
'team': team,
'authors': authors,
'e-mail': email,
'institution': institution,
'country': country,
'results': results
}
mmengine.dump(submit_data, submit_file)