-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript_run_eval_on_map.py
More file actions
41 lines (31 loc) · 1.05 KB
/
Copy pathscript_run_eval_on_map.py
File metadata and controls
41 lines (31 loc) · 1.05 KB
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
41
import os
args = [#f'--network PointNetPGAP',
#f'--network PointNetPGAPLoss',
#f'--network PointNetVLADLoss',
#f'--network PointNetVLAD',
#f'--network overlap_transformer',
f'--network LOGG3D',
]
#resume = 'saved_model_data/RAL/triplet/ground_truth_ar0.5m_nr10m_pr2m.pkl/10000/PointNetGAP-LazyTripletLoss_L2-segment_lossM0.5/0.842@1'
test_sequrnces = [
'00',
'02',
'05',
'06',
'08',
]
test_sequences = ['ON23',
'OJ22',
'ON22',
'SJ23',
'OJ23',
'GTJ23'
]
for seq in test_sequences:
test_seq = '--val_set ' + seq
# Run ground truth
#os.system('python3 tools/run_eval_on_map.py ' + test_seq + ' --ground_truth 1')
for net in args:
func_arg = net + ' ' + test_seq + ' ' + ' --ground_truth 1' #+ ' show_plot 0'
#print(func_arg)
os.system('python3 tools/run_eval_on_map.py ' + func_arg)