-
Notifications
You must be signed in to change notification settings - Fork 2
/
results_table.py
2043 lines (1930 loc) · 160 KB
/
results_table.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Now try running all these results for BC04 settings.
Run with:
python analysis/results_bc04.py
python analysis/results_bc04.py --show_raw_perf
The first shows _normalized_ performance, the second shows _raw_ performance.
Note that these are not the settings used to report in the original CoRL 2022 submission.
For the CNN v2 I'm using and reporting:
Actor(
(encoder): PixelEncoder(
(convs): ModuleList(
(0): Conv2d(3, 16, kernel_size=(3, 3), stride=(2, 2))
(1): Conv2d(16, 16, kernel_size=(3, 3), stride=(1, 1))
(2): Conv2d(16, 16, kernel_size=(3, 3), stride=(1, 1))
(3): Conv2d(16, 16, kernel_size=(3, 3), stride=(1, 1))
)
(fc): Linear(in_features=29584, out_features=100, bias=True)
(ln): LayerNorm((100,), eps=1e-05, elementwise_affine=True)
)
(trunk): Sequential(
(0): Linear(in_features=100, out_features=256, bias=True)
(1): ReLU()
(2): Linear(in_features=256, out_features=256, bias=True)
(3): ReLU()
(4): Linear(in_features=256, out_features=6, bias=True)
)
)
This is not what's in the repo (only difference is the repo has 32 conv filters, but
uses 50 feature dim). I think it makes it less suspicious to use 100 instead of 50 for
the feature dim, as 50 is REALLY compressing it. (Edit: wait I think I'm now using 50
by default, which is what CURL used. I see minor performance differences in any case.)
Anyway I think we should just say it's based on the CURL code?
"""
import os
from os.path import join
import ast
import json
import argparse
import numpy as np
np.set_printoptions(linewidth=180, suppress=True, precision=4, edgeitems=12)
# ------------------------------------------------------------------------- #
# Matplotlib stuff, adjust settings as needed.
import matplotlib
import matplotlib.pyplot as plt
matplotlib.use('Agg')
titlesize = 33
xsize = 31
ysize = 31
ticksize = 29
legendsize = 18
er_alpha = 0.25
lw = 4
smooth_w = 5
# ------------------------------------------------------------------------- #
# Directories
SAVE_PATH = './data/plots/'
DATA_PATH = '/data/seita/softagent_mm/'
# Use this in case we use normalized performance.
DEMO_PERF = dict(
PourWater=0.906,
PourWater_6DoF=0.815,
MMOneSphere=0.632,
MMOneSphere_6DoF=1.000,
MMOneSphereTransOnly=0.832, # translation only variant has higher success rates
MMMultiSphere=0.623,
)
# ================================================================================================ #
# ================================================================================================ #
# All the files have to be on my machine in `DATA_PATH`!!
MM_ONE_SPHERE_TRANS_ONLY = dict(
NAIVE_CLASS_VECTOR_MSE = [
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_ee_3DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_21_10_34_07_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_ee_3DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_21_10_34_07_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_ee_3DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_21_10_34_07_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_ee_3DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_21_10_34_07_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_ee_3DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_21_10_34_07_0005',
],
SEGM_PN2_AVG_LAYER = [ # PN++ with averaging layer
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_avg_ee_3DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_22_16_11_37_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_avg_ee_3DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_22_16_11_37_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_avg_ee_3DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_22_16_11_37_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_avg_ee_3DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_22_16_11_37_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_avg_ee_3DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_22_16_11_37_0005',
],
FLOW3D_SVD_PW_CONSIST_0_1=[ # with translation only the SVD can only introduce noise right?
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_flow_3DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_21_12_18_13_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_flow_3DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_21_13_31_23_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_flow_3DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_21_14_44_49_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_flow_3DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_21_14_44_49_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_flow_3DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_21_14_44_49_0003',
],
)
# ======================================================================================= #
# =================================== 6DoF SCOOPING ===================================== #
# ======================================================================================= #
MM_ONE_SPHERE_6DOF = dict(
# ---------------------------------- OUR METHOD ----------------------------------- #
# All of these use Eddie's axes conversion fix from 08/16.
FLOW3D_SVD_PW_CONSIST_0_0=[
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_09_50_18_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_09_50_18_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_09_50_18_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_09_50_18_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_09_50_18_0005',
],
FLOW3D_SVD_PW_CONSIST_0_1=[
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_00_09_29_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_00_09_29_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_00_09_29_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_00_09_29_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_00_09_29_0005',
],
FLOW3D_SVD_PW_CONSIST_0_5=[
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_09_54_38_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_09_54_38_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_09_54_38_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_09_54_38_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_09_54_38_0005',
],
FLOW3D_SVD_PW_CONSIST_1_0=[
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_18_10_54_05_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_18_10_54_05_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_18_10_54_05_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_18_10_54_05_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_18_10_54_05_0005',
],
# --------------------------------------- ABLATIONS ----------------------------------- #
FLOW3D_SVD_PW_CONSIST_NOSKIP=[
# Used Eddis' axes conversion from 08/16.
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_08_17_11_13_15_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_08_17_11_13_15_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_08_17_11_13_15_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_08_17_11_13_15_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_08_17_11_13_15_0005',
],
FLOW3D_PW_BEFORE_SVD_NOCONSISTENCY=[
# Used Eddis' axes conversion from 08/16.
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_16_14_33_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_16_14_33_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_16_14_33_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_16_14_33_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_16_14_33_0005',
],
FLOW3D_MSE_AFTER_SVD_CONSISTENCY=[
# Wait did this do axes conversion? Yes, since Eddie implemented that on 08/16 so this must have used it.
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_15_56_36_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_15_56_36_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_15_56_36_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_15_56_36_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_15_56_36_0005',
],
# --------------------------------------- BASELINES ------------------------------------- #
DIRECT_VECTOR_MSE = [
## Wait, these must have done the un-necessary SVD corrections at runtime.
# These had a max of 0.792, avg of 0.572.
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_00_16_41_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_00_16_41_0002',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_00_16_41_0003',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_00_16_41_0004',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_00_16_41_0005',
# I think we want these (they are a _slight_ improvement):
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_20_22_36_03_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_20_22_36_03_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_20_22_36_03_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_20_22_36_03_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_20_22_36_03_0005',
],
DIRECT_VECTOR_PW = [
## This did the axes conversion at runtime, which I think we want now?
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_15_32_38_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_15_32_38_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_15_32_38_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_15_32_38_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_15_32_38_0005',
# This does NOT do the axes conversion at runtime, let's just see if this helps. Running 08/24.
# Never mind, I didn't finish these, these results are AWFUL.
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_40_27_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_40_27_0002',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_40_27_0003',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_40_27_0004',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_40_27_0005',
],
DENSE_TRANSFORMATION_MSE = [
## Wait, these must have done the un-necessary SVD corrections at runtime.
# These had a max of 0.792, avg of 0.590.
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_11_00_46_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_11_00_46_0002',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_11_00_46_0003',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_11_00_46_0004',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_11_00_46_0005',
# I think we want these (_slight_ improvement):
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_20_22_30_37_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_20_22_30_37_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_20_22_30_37_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_20_22_30_37_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_20_22_30_37_0005',
],
DENSE_TRANSFORMATION_PW = [
# This did the axes conversion at runtime, which I think we want now? But this was worse than the alternative of not doing it?
# Max of 0.288, avg of 0.122.
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_15_39_28_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_15_39_28_0002',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_15_39_28_0003',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_15_39_28_0004',
#'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_17_15_39_28_0005',
# I think we want these, which are actually giving slightly higher results (0.360, 0.158) though still bad:
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_10_08_43_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_10_08_43_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_10_08_43_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_10_08_43_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_10_08_43_0005',
],
RGB_DIRECT_VECTOR = [ # actually v1 but I want to keep the name the same, run locally so file names don't have same stem
## Wait, these must have done the un-necessary SVD corrections at runtime.
## 0.808, 0.628 for two evaluation metrics.
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_17_11_39_27_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_17_11_09_21_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_17_11_07_53_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_17_10_37_45_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_17_10_36_50_0001',
# I think we want these.
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_19_56_15_0001',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_19_56_15_0002',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_19_56_15_0003',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_19_56_15_0004',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_19_56_15_0005',
],
RGB_DIRECT_VECTOR_AUGM = [ # actually v1 but I want to keep the name the same, run locally so file names don't have same stem
## Wait, these must have done the un-necessary SVD corrections at runtime.
## 0.952, 0.698 for two evaluation metrics.
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_17_12_44_17_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_17_12_43_17_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_17_12_14_07_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_17_12_12_44_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_17_11_40_46_0001',
# I think we want these.
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_20_06_47_0001',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_20_06_47_0002',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_20_06_47_0003',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_20_06_47_0004',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_20_06_47_0005',
],
RGBD_DIRECT_VECTOR = [
## Wait, these must have done the un-necessary SVD corrections at runtime.
# 0.872 +/- 0.03 and 0.737 +/- 0.03 for the two evaluation metrics.
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_18_13_24_47_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_18_13_24_47_0002',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_18_13_24_47_0003',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_18_13_24_47_0004',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_18_13_24_47_0005',
# I think we want these. Results are slightly better.
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_20_26_00_0001',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_20_26_00_0002',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_20_26_00_0003',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_20_26_00_0004',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_20_26_00_0005',
],
RGBD_DIRECT_VECTOR_AUGM = [
## Wait, these must have done the un-necessary SVD corrections at runtime.
# 0.888 +/- 0.06 and 0.699 +/- 0.03 for the two evaluation metrics.
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_18_13_32_23_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_18_13_32_23_0002',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_18_13_32_23_0003',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_18_13_32_23_0004',
#'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_18_13_32_23_0005',
# I think we want these. Results are slightly better.
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_22_33_08_0001',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_22_33_08_0002',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_22_33_08_0003',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_22_33_08_0004',
'BC04_MMOneSphere_v02_ntrain_0025_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_22_33_08_0005',
],
D_SEGM_DIRECT_VECTOR=[
# Segmented depth --> Image CNN --> Vector (no SVD at runtime)
# Running these locally.
'BC04_MMOneSphere_v02_ntrain_0025_depth_segm_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_24_19_51_28_0001',
'BC04_MMOneSphere_v02_ntrain_0025_depth_segm_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_24_19_51_41_0001',
'BC04_MMOneSphere_v02_ntrain_0025_depth_segm_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_24_21_38_25_0001',
'BC04_MMOneSphere_v02_ntrain_0025_depth_segm_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_24_21_39_32_0001',
'BC04_MMOneSphere_v02_ntrain_0025_depth_segm_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_24_23_30_44_0001',
],
RGB_SEGM_DIRECT_VECTOR=[
# Ran 08/25 on cluster. Use `toolflownet` branch.
'BC04_MMOneSphere_v02_ntrain_0025_rgb_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_52_40_0001',
'BC04_MMOneSphere_v02_ntrain_0025_rgb_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_52_40_0002',
'BC04_MMOneSphere_v02_ntrain_0025_rgb_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_52_40_0003',
'BC04_MMOneSphere_v02_ntrain_0025_rgb_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_52_40_0004',
'BC04_MMOneSphere_v02_ntrain_0025_rgb_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_52_40_0005',
],
RGBD_SEGM_DIRECT_VECTOR=[
# Ran 08/25 on cluster. Use `toolflownet` branch.
'BC04_MMOneSphere_v02_ntrain_0025_rgbd_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_50_51_0001',
'BC04_MMOneSphere_v02_ntrain_0025_rgbd_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_50_51_0002',
'BC04_MMOneSphere_v02_ntrain_0025_rgbd_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_50_51_0003',
'BC04_MMOneSphere_v02_ntrain_0025_rgbd_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_50_51_0004',
'BC04_MMOneSphere_v02_ntrain_0025_rgbd_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_50_51_0005',
],
D_DIRECT_VECTOR=[
# Cluster, closer to rebuttal deadline.
'BC04_MMOneSphere_v02_ntrain_0025_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_23_36_57_0001',
'BC04_MMOneSphere_v02_ntrain_0025_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_23_36_57_0002',
'BC04_MMOneSphere_v02_ntrain_0025_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_23_36_57_0003',
'BC04_MMOneSphere_v02_ntrain_0025_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_23_36_57_0004',
'BC04_MMOneSphere_v02_ntrain_0025_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_23_36_57_0005',
],
STATE_GT_DIRECT_VECTOR=[
## This has state info. For 4D and 6D scooping we use (in order): 3d ball center, 3d ladle tip, 4d ladle quaternion.
## The quaternion is computed analytically instead of us storing the data (though we have regenerated such data for later).
## This one got: 0.496 $\pm$ 0.14
#'BC04_MMOneSphere_v02_ntrain_0025_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_00_59_52_0001',
#'BC04_MMOneSphere_v02_ntrain_0025_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_00_59_52_0002',
#'BC04_MMOneSphere_v02_ntrain_0025_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_00_59_52_0003',
#'BC04_MMOneSphere_v02_ntrain_0025_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_00_59_52_0004',
#'BC04_MMOneSphere_v02_ntrain_0025_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_00_59_52_0005',
# This has NEW BC data where I now actually save the ladle quaternion in the obs tuple, so we do not have to
# recompute such data after the fact. I think we should use this. Edit: well it got worse performance
# for some reason LOL. 0.336 +/- 0.06, no idea why. Also no idea why this is not as good as the learned
# state predictor, and the MSE losses for this seem to be going down (for eval as well).
'BC04_MMOneSphere_v02_ntrain_0025_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_12_48_41_0001',
'BC04_MMOneSphere_v02_ntrain_0025_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_12_48_41_0002',
'BC04_MMOneSphere_v02_ntrain_0025_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_12_48_41_0003',
'BC04_MMOneSphere_v02_ntrain_0025_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_12_48_41_0004',
'BC04_MMOneSphere_v02_ntrain_0025_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_12_48_41_0005',
],
STATE_LEARNED_DIRECT_VECTOR = [
# Literally last-minute before rebuttal. Uses the ACTUAL ball + ladle tip + ladle quaternion, not the tool reducer one.
# I have NO IDEA why this is better than using ground truth state.
'BC04_MMOneSphere_v02_ntrain_0025_PCL_state_predictor_then_mlp_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_27_16_11_17_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_state_predictor_then_mlp_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_27_16_11_17_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_state_predictor_then_mlp_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_27_16_11_17_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_state_predictor_then_mlp_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_27_16_11_17_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_state_predictor_then_mlp_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_27_16_11_17_0005',
],
# --------------------------------------- NEW ROT REPRESENTATIONS ------------------------------------- #
# Also includes repeats of our earlier axis-angle results just in case
PCL_DIRECT_VECTOR_MSE_NEWAPI_AXANG=[
# Ran 5x on cluster 09/27. One used a bad GPU so had to regen.
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_convert_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_27_09_27_20_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_convert_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_27_09_27_20_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_convert_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_27_09_27_20_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_convert_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_27_09_27_20_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_convert_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_27_10_47_00_0001',
],
PCL_DIRECT_VECTOR_MSE_INTRIN_AXANG=[
# 5x on cluster.
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_convert_intrinsic_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_09_44_07_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_convert_intrinsic_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_09_44_07_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_convert_intrinsic_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_09_44_07_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_convert_intrinsic_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_09_44_07_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_eepose_convert_intrinsic_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_09_44_07_0005',
],
PCL_DENSE_TRANSF_MSE_EXTRIN_AXANG=[
# Ran 5x on cluster.
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_10_29_48_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_10_29_48_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_10_29_48_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_10_29_48_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_10_29_48_0005',
],
PCL_DENSE_TRANSF_MSE_INTRIN_AXANG=[
# Ran 5x on cluster.
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_intrinsic_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_10_19_25_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_intrinsic_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_10_19_25_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_intrinsic_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_10_19_25_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_intrinsic_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_10_19_25_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_intrinsic_axis_angle_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_10_19_25_0005',
],
PCL_DIRECT_VECTOR_MSE_FRO_4D_ROTS=[
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_4D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_13_04_30_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_4D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_13_04_30_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_4D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_13_04_30_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_4D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_13_04_30_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_4D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_13_04_30_0005',
],
PCL_DIRECT_VECTOR_MSE_FRO_6D_ROTS=[
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_6D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_28_19_47_15_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_6D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_28_19_47_15_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_6D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_28_19_47_15_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_6D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_28_19_47_15_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_6D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_28_19_47_15_0005',
],
PCL_DIRECT_VECTOR_MSE_FRO_9D_ROTS=[
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_9D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_11_03_09_28_24_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_9D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_11_03_09_28_24_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_9D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_11_03_09_28_24_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_9D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_11_03_09_28_24_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_9D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_11_03_09_28_24_0005',
],
PCL_DIRECT_VECTOR_MSE_FRO_10D_ROTS=[
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_10D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_30_20_54_08_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_10D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_30_20_54_08_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_10D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_30_20_54_08_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_10D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_30_20_54_08_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_rpmg_eepose_convert_rotation_10D_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_30_20_54_08_0005',
],
# --------------------------------------------- segless --------------------------------------------- #
SEGLESS_NAIVE=[
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_15_33_20_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_15_33_20_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_15_33_20_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_15_33_20_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_15_33_20_0005',
],
SEGLESS_WEIGHT_CONSIST=[
# Use L1 for segmentation normalization.
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_15_17_22_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_15_17_22_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_15_17_22_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_15_17_22_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_15_17_22_0005',
],
SEGLESS_WEIGHT_CONSIST_SOFTMAX=[
# Use softmax for segmentation normalization, temperature 0.1.
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_16_09_46_0001',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_16_09_46_0002',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_16_09_46_0003',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_16_09_46_0004',
'BC04_MMOneSphere_v02_ntrain_0025_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_6DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_10_16_09_46_0005',
],
)
# ============================================================================================== #
# =================================== 4DoF SCOOPING ============================================ #
# ============================================================================================== #
MM_ONE_SPHERE = dict(
# ---------------------------------- OUR METHOD ----------------------------------- #
FLOW3D_SVD_PW_CONSIST_0_0=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_17_18_23_01_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_17_18_23_01_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_17_18_23_01_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_17_18_23_01_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_17_18_23_01_0005',
],
FLOW3D_SVD_PW_CONSIST_0_1=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_11_00_57_07_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_11_00_57_07_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_11_00_57_07_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_11_00_57_07_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_11_00_57_07_0005',
],
FLOW3D_SVD_PW_CONSIST_0_5=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_17_18_38_44_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_17_18_38_44_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_17_18_38_44_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_17_18_38_44_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_17_18_38_44_0005',
],
FLOW3D_SVD_PW_CONSIST_1_0=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_18_11_04_58_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_18_11_04_58_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_18_11_04_58_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_18_11_04_58_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_18_11_04_58_0005',
],
# --------------------------------------- ABLATIONS ----------------------------------- #
FLOW3D_SVD_PW_CONSIST_NOSKIP=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_06_18_16_55_02_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_06_18_16_55_02_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_06_18_16_55_02_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_06_18_16_55_02_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_06_18_16_55_02_0005',
],
FLOW3D_PW_BEFORE_SVD_NOCONSISTENCY=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_20_11_21_36_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_20_11_21_36_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_20_11_21_36_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_20_11_21_36_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_20_11_21_36_0005',
],
FLOW3D_MSE_AFTER_SVD_CONSISTENCY=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_21_07_51_43_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_21_07_51_43_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_21_07_51_43_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_21_07_51_43_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_21_07_51_43_0005',
],
# ----------------------------- SCALING (or lack thereof) --------------------------------- #
FLOW3D_SVD_PW_CONSIST_0_1_NOSCALE=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_rawPCL_noScaleTarg_2022_06_18_13_45_31_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_rawPCL_noScaleTarg_2022_06_18_13_45_31_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_rawPCL_noScaleTarg_2022_06_18_13_45_31_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_rawPCL_noScaleTarg_2022_06_18_13_45_31_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_rawPCL_noScaleTarg_2022_06_18_13_45_31_0005',
],
DIRECT_VECTOR_MSE_NOSCALE=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_noScaleTarg_2022_06_19_08_21_26_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_noScaleTarg_2022_06_19_08_21_26_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_noScaleTarg_2022_06_19_08_21_26_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_noScaleTarg_2022_06_19_08_21_26_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_noScaleTarg_2022_06_19_08_21_26_0005',
],
DIRECT_VECTOR_MSE_MULT_ROT_250=[ # small experiment where we mult rot by 250x and downscale by 250x at inference, instead of lambda_rot=100
# Update: actually I think THIS should be the main result we now use. Because this seems more principled and got 0.620 max perf instead of 0.456.
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_09_21_17_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_09_21_17_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_09_21_17_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_09_21_17_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_09_21_17_0005',
],
RGB_DIRECT_VECTOR_NOSCALE=[
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_noScaleTarg_2022_06_19_11_17_05_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_noScaleTarg_2022_06_19_11_17_05_0002',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_noScaleTarg_2022_06_19_11_17_05_0003',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_noScaleTarg_2022_06_19_11_17_05_0004',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_noScaleTarg_2022_06_19_11_17_05_0005',
],
# ---------------------------------------- NOISE/REDUCETOOL ----------------------------------------- #
FLOW3D_GAUSSNOISE_005=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_GaussNoise_0.005_scalePCL_noScaleTarg_2022_06_20_09_21_54_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_GaussNoise_0.005_scalePCL_noScaleTarg_2022_06_20_09_21_54_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_GaussNoise_0.005_scalePCL_noScaleTarg_2022_06_20_09_21_54_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_GaussNoise_0.005_scalePCL_noScaleTarg_2022_06_20_09_21_54_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_GaussNoise_0.005_scalePCL_noScaleTarg_2022_06_20_09_21_54_0005',
],
FLOW3D_GAUSSNOISE_010=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_GaussNoise_0.01_scalePCL_noScaleTarg_2022_06_20_11_56_45_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_GaussNoise_0.01_scalePCL_noScaleTarg_2022_06_20_11_56_45_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_GaussNoise_0.01_scalePCL_noScaleTarg_2022_06_20_11_56_45_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_GaussNoise_0.01_scalePCL_noScaleTarg_2022_06_20_11_56_45_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_GaussNoise_0.01_scalePCL_noScaleTarg_2022_06_20_11_56_45_0005',
],
FLOW3D_REDUCETOOL_010=[ # Eddie ran these
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_15_15_30_43_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_15_15_33_08_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_15_18_34_08_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_15_19_22_11_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_15_19_39_34_0001',
],
# --------------------------------------- BASELINES ------------------------------------- #
DIRECT_VECTOR_MSE=[
## This keeps the rotation at a small scale but adds a weight by 100. I think this is less principled. And got 0.456 +/- 0.10 vs the other way.
#'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_11_01_41_34_0001',
#'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_11_01_41_34_0002',
#'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_11_01_41_34_0003',
#'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_11_01_41_34_0004',
#'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_11_01_41_34_0005',
# This multiples rotation by 250 for scaling, and downscales by 250x at inference, and does NOT do lambda_rot=100 but uses 1.
# Update: actually I think THIS should be the main result we now use. Because this seems more principled and got 0.620 +/- 0.07.,
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_09_21_17_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_09_21_17_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_09_21_17_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_09_21_17_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_17_09_21_17_0005',
],
DIRECT_VECTOR_PW=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_classif_6D_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_19_16_33_37_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_classif_6D_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_19_16_33_37_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_classif_6D_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_19_16_33_37_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_classif_6D_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_19_16_33_37_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_classif_6D_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_19_16_33_37_0005',
],
DENSE_TRANSFORMATION_MSE=[ # first 2 runs were separate earlier
## This one is giving 0.278 $\pm$ 0.09.
#'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_12_02_18_11_0001',
#'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_12_04_13_20_0001',
#'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_19_21_44_31_0001',
#'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_19_21_44_31_0002',
#'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_06_19_21_44_31_0003',
# I ran this later and instead of lambda_rot=100, I set it to 1 and scale rotation. This helps this baseline to get 0.582 $\pm$ 0.08.
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_25_16_32_41_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_25_16_32_41_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_25_16_32_41_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_25_16_32_41_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_25_16_32_41_0005',
],
DENSE_TRANSFORMATION_PW=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_19_16_41_34_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_19_16_41_34_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_19_16_41_34_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_19_16_41_34_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_19_16_41_34_0005',
],
RGB_DIRECT_VECTOR_v1=[
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_18_19_02_24_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_18_19_02_24_0002',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_18_19_02_24_0003',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_18_19_02_24_0004',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_18_19_02_24_0005',
],
RGB_DIRECT_VECTOR_v1_AUGM=[
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_18_17_36_02_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_18_17_36_02_0002',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_18_17_36_02_0003',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_18_17_36_02_0004',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_18_17_36_02_0005',
],
RGB_DIRECT_VECTOR=[ # ran on marvin, similar as v1 but with 1/2 as many filters, 2x more encoder dim.
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_20_16_54_43_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_20_18_05_31_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_20_18_05_52_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_20_18_57_02_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_20_18_57_17_0001',
],
RGB_DIRECT_VECTOR_AUGM=[ # ran on marvin, similar as v1 but with 1/2 as many filters, 2x more encoder dim.
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_20_15_42_49_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_20_15_43_08_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_20_16_17_00_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_20_16_17_08_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgb_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_06_20_16_53_50_0001',
],
RGBD_DIRECT_VECTOR = [ # (ran Aug 18) oh this might be v1 but whatever, performance was almost the same
## Wait, these must have done the un-necessary SVD corrections at runtime.
## 0.443 +/- 0.06 and 0.272 +/- 0.02 for the two statistics.
#'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_18_14_37_49_0001',
#'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_18_14_37_49_0002',
#'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_18_14_37_49_0003',
#'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_18_14_37_49_0004',
#'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_18_14_37_49_0005',
## I think we want these.
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_21_10_54_21_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_21_10_54_21_0002',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_21_10_54_21_0003',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_21_10_54_21_0004',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_21_10_54_21_0005',
],
RGBD_DIRECT_VECTOR_AUGM = [ # (ran Aug 18) oh this might be v1 but whatever, performance was almost the same
## Wait, these must have done the un-necessary SVD corrections at runtime.
## 1.038 +/- 0.09 and 0.613 +/- 0.08 for the two statistics.
#'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_18_14_39_53_0001',
#'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_18_14_39_53_0002',
#'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_18_14_39_53_0003',
#'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_18_14_39_53_0004',
#'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_18_14_39_53_0005',
## I think we want these. Interestingly for augmentation it's actually worse (?) compared to the one with the
# un-necessary SVD correction?
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_21_10_57_24_0001',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_21_10_57_24_0002',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_21_10_57_24_0003',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_21_10_57_24_0004',
'BC04_MMOneSphere_v01_ntrain_0100_cam_rgbd_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_21_10_57_24_0005',
],
D_SEGM_DIRECT_VECTOR=[
## Segmented depth --> Image CNN --> Vector
# Running these on cluster 5x 08/24 evening. Does not use lambda_rot=100 but just 1, and scales rotation.
'BC04_MMOneSphere_v01_ntrain_0100_depth_segm_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_24_21_20_12_0001',
'BC04_MMOneSphere_v01_ntrain_0100_depth_segm_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_24_21_20_12_0002',
'BC04_MMOneSphere_v01_ntrain_0100_depth_segm_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_24_21_20_12_0003',
'BC04_MMOneSphere_v01_ntrain_0100_depth_segm_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_24_21_20_12_0004',
'BC04_MMOneSphere_v01_ntrain_0100_depth_segm_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_24_21_20_12_0005',
],
RGB_SEGM_DIRECT_VECTOR=[
# Ran 08/25 on cluster. Use `toolflownet` branch. Scales rotation, lambda_rot=1.
'BC04_MMOneSphere_v01_ntrain_0100_rgb_segm_masks_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_41_22_0001',
'BC04_MMOneSphere_v01_ntrain_0100_rgb_segm_masks_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_41_22_0002',
'BC04_MMOneSphere_v01_ntrain_0100_rgb_segm_masks_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_41_22_0003',
'BC04_MMOneSphere_v01_ntrain_0100_rgb_segm_masks_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_41_22_0004',
'BC04_MMOneSphere_v01_ntrain_0100_rgb_segm_masks_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_41_22_0005',
],
RGBD_SEGM_DIRECT_VECTOR=[
# Ran 08/25 on cluster. Use `toolflownet` branch. Scales rotation, lambda_rot=1.
'BC04_MMOneSphere_v01_ntrain_0100_rgbd_segm_masks_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_44_51_0001',
'BC04_MMOneSphere_v01_ntrain_0100_rgbd_segm_masks_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_44_51_0002',
'BC04_MMOneSphere_v01_ntrain_0100_rgbd_segm_masks_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_44_51_0003',
'BC04_MMOneSphere_v01_ntrain_0100_rgbd_segm_masks_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_44_51_0004',
'BC04_MMOneSphere_v01_ntrain_0100_rgbd_segm_masks_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_25_16_44_51_0005',
],
D_DIRECT_VECTOR=[
# Ran on cluster, 08/26, I ran 08/25 but maybe I pushed with MM v01?? I re-did it 08/26:
'BC04_MMOneSphere_v01_ntrain_0100_depth_img_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_26_01_44_28_0001',
'BC04_MMOneSphere_v01_ntrain_0100_depth_img_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_26_01_44_28_0002',
'BC04_MMOneSphere_v01_ntrain_0100_depth_img_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_26_01_44_28_0003',
'BC04_MMOneSphere_v01_ntrain_0100_depth_img_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_26_01_44_28_0004',
'BC04_MMOneSphere_v01_ntrain_0100_depth_img_pixel_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_26_01_44_28_0005',
],
STATE_GT_DIRECT_VECTOR=[
## This has state info. For 4D and 6D scooping we use (in order): 3d ball center, 3d ladle tip, 4d ladle quaternion.
## The quaternion is computed analytically instead of us storing the data (though we have regenerated such data for later).
## This one gets 0.456 +/- 0.05 normalized performance.
#'BC04_MMOneSphere_v01_ntrain_0100_state_mlp_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_27_01_09_59_0001',
#'BC04_MMOneSphere_v01_ntrain_0100_state_mlp_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_27_01_09_59_0002',
#'BC04_MMOneSphere_v01_ntrain_0100_state_mlp_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_27_01_09_59_0003',
#'BC04_MMOneSphere_v01_ntrain_0100_state_mlp_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_27_01_09_59_0004',
#'BC04_MMOneSphere_v01_ntrain_0100_state_mlp_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_27_01_09_59_0005',
## This has NEW BC data where I now actually save the ladle quaternion in the obs tuple, so we do not have to
## recompute such data after the fact. I think we should use this. Eeek this one got 1.152 +/- 0.04, virtually tied w/TFN!
'BC04_MMOneSphere_v01_ntrain_0100_state_mlp_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_27_12_55_55_0001',
'BC04_MMOneSphere_v01_ntrain_0100_state_mlp_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_27_12_55_55_0002',
'BC04_MMOneSphere_v01_ntrain_0100_state_mlp_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_27_12_55_55_0003',
'BC04_MMOneSphere_v01_ntrain_0100_state_mlp_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_27_12_55_55_0004',
'BC04_MMOneSphere_v01_ntrain_0100_state_mlp_eepose_4DoF_ar_8_hor_100_scaleTarg_2022_08_27_12_55_55_0005',
],
STATE_LEARNED_DIRECT_VECTOR=[
# Uses the data with the actual ladle instead of the tool reducer. This _should_ be lower than the GT version.
'BC04_MMOneSphere_v01_ntrain_0100_PCL_state_predictor_then_mlp_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_27_16_02_01_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_state_predictor_then_mlp_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_27_16_02_01_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_state_predictor_then_mlp_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_27_16_02_01_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_state_predictor_then_mlp_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_27_16_02_01_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_state_predictor_then_mlp_eepose_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_27_16_02_01_0005',
],
# --------------------------------------- NUM_DEMOS ------------------------------------- #
FLOW3D_SVD_PW_CONSIST_010_DEMOS=[
'BC04_MMOneSphere_v01_ntrain_0010_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_23_01_08_52_0001',
'BC04_MMOneSphere_v01_ntrain_0010_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_23_01_08_52_0002',
'BC04_MMOneSphere_v01_ntrain_0010_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_23_01_08_52_0003',
'BC04_MMOneSphere_v01_ntrain_0010_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_23_01_08_52_0004',
'BC04_MMOneSphere_v01_ntrain_0010_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_23_01_08_52_0005',
],
FLOW3D_SVD_PW_CONSIST_050_DEMOS=[
'BC04_MMOneSphere_v01_ntrain_0050_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_22_15_02_07_0001',
'BC04_MMOneSphere_v01_ntrain_0050_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_22_15_02_07_0002',
'BC04_MMOneSphere_v01_ntrain_0050_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_22_15_02_07_0003',
'BC04_MMOneSphere_v01_ntrain_0050_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_22_15_02_07_0004',
'BC04_MMOneSphere_v01_ntrain_0050_PCL_PNet2_svd_pointwise_ee2flow_4DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_06_22_15_02_07_0005',
],
# ======================================== new rot representations ========================================== #
# Also includes repeats of our earlier axis-angle results just in case
PCL_DIRECT_VECTOR_MSE_NEWAPI_AXANG=[
# Cluster 5X, meant to reproduce earlier results.
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_convert_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_28_10_47_14_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_convert_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_28_10_47_14_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_convert_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_28_10_47_14_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_convert_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_28_10_47_14_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_convert_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_28_10_47_14_0005',
],
PCL_DIRECT_VECTOR_MSE_INTRIN_AXANG=[
# 5x on cluster.
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_convert_intrinsic_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_25_15_17_00_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_convert_intrinsic_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_25_15_17_00_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_convert_intrinsic_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_25_15_17_00_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_convert_intrinsic_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_25_15_17_00_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_eepose_convert_intrinsic_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_25_15_17_00_0005',
],
PCL_DENSE_TRANSF_MSE_EXTRIN_AXANG=[
# Ran 5x on cluster.
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_15_20_37_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_15_20_37_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_15_20_37_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_15_20_37_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_15_20_37_0005',
],
PCL_DENSE_TRANSF_MSE_INTRIN_AXANG=[
# Ran 5x on cluster.
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_intrinsic_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_15_28_15_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_intrinsic_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_15_28_15_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_intrinsic_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_15_28_15_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_intrinsic_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_15_28_15_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_convert_intrinsic_axis_angle_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_26_15_28_15_0005',
],
PCL_DIRECT_VECTOR_MSE_FRO_4D_ROTS=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_4D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_13_12_24_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_4D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_13_12_24_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_4D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_13_12_24_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_4D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_13_12_24_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_4D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_13_12_24_0005',
],
PCL_DIRECT_VECTOR_MSE_FRO_6D_ROTS=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_6D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_09_47_22_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_6D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_09_47_22_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_6D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_09_47_22_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_6D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_09_47_22_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_6D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_09_29_09_47_22_0005',
],
PCL_DIRECT_VECTOR_MSE_FRO_9D_ROTS=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_9D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_11_02_10_47_11_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_9D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_11_02_10_47_11_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_9D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_11_02_10_47_11_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_9D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_11_02_10_47_11_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_9D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_11_02_10_47_11_0005',
],
PCL_DIRECT_VECTOR_MSE_FRO_10D_ROTS=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_10D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_02_12_46_45_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_10D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_02_12_46_45_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_10D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_02_12_46_45_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_10D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_02_12_46_45_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_rpmg_eepose_convert_rotation_10D_4DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_10_02_12_46_45_0005',
],
# --------------------------------------------- segless --------------------------------------------- #
SEGLESS_NAIVE=[
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_08_48_55_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_08_48_55_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_08_48_55_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_08_48_55_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_08_48_55_0005',
],
SEGLESS_WEIGHT_CONSIST=[
# Use L1 for segmentation normalization.
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_09_32_54_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_09_32_54_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_09_32_54_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_09_32_54_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_09_32_54_0005',
],
SEGLESS_WEIGHT_CONSIST_SOFTMAX=[
# Use softmax for segmentation normalization, temperature 0.1.
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_14_07_57_0001',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_14_07_57_0002',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_14_07_57_0003',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_14_07_57_0004',
'BC04_MMOneSphere_v01_ntrain_0100_PCL_PNet2_svd_pointwise_segless_ee2flow_segless_4DoF_ar_8_hor_100_keep_0s_scalePCL_noScaleTarg_2022_10_12_14_07_57_0005',
],
)
# ====================================================================================== #
# =================================== 6DoF POURING ===================================== #
# ====================================================================================== #
POUR_WATER_6DOF = dict(
# ================================================= our method ============================================ #
FLOW3D_SVD_PW_CONSIST_0_0=[ # Ran this 08/22 on cluster, has axes conversion
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_22_16_31_38_0001',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_22_16_31_38_0002',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_22_16_31_38_0003',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_22_16_31_38_0004',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_22_16_31_38_0005',
],
FLOW3D_SVD_PW_CONSIST_0_1=[ # Ran this 08/21 on cluster
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_23_21_52_0001',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_23_21_52_0002',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_23_21_52_0003',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_23_21_52_0004',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_23_21_52_0005',
],
FLOW3D_SVD_PW_CONSIST_0_5=[ # Ran this 08/21 on cluster
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_22_58_55_0001',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_22_58_55_0002',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_22_58_55_0003',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_22_58_55_0004',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_21_22_58_55_0005',
],
FLOW3D_SVD_PW_CONSIST_1_0=[ # Ran this 08/24 on cluster
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_09_54_04_0001',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_09_54_04_0002',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_09_54_04_0003',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_09_54_04_0004',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_09_54_04_0005',
],
# ================================================= ablations ============================================ #
FLOW3D_SVD_PW_CONSIST_NOSKIP=[
# ran locally, this _should_ get 0.000 due to no rotations.
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_ee2flow_6DoF_ar_8_hor_100_NOSKIP_scalePCL_noScaleTarg_2022_08_22_20_45_47_0001',
],
FLOW3D_PW_BEFORE_SVD_NOCONSISTENCY=[
# Ran 08/22 on cluster, does axes conversion.
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_22_16_17_05_0001',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_22_16_17_05_0002',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_22_16_17_05_0003',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_22_16_17_05_0004',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_pointwise_PW_bef_SVD_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_22_16_17_05_0005',
],
FLOW3D_MSE_AFTER_SVD_CONSISTENCY=[
# Ran 08/22 on cluster. WAIT this one did not do axes conversion but also we need Eddie's newest fix.
# Though amazingly this one actually looks good, unlike prior runs that used this ablation??
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_22_16_44_54_0001',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_22_16_44_54_0002',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_22_16_44_54_0003',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_22_16_44_54_0004',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_svd_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_22_16_44_54_0005',
],
# ================================================= baselines ============================================ #
# NOTE: these use -0.004, -0.004, -0.004, -0.015, -0.015, -0.015] for scaling bounds to improve training.
# This means for example the translation values are multiplied by 250 for getting values closer to (-1,1) range for prediction.
DIRECT_VECTOR_MSE=[ # Ran this 08/21 on cluster
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_21_23_38_01_0001',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_21_23_38_01_0002',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_21_23_38_01_0003',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_21_23_38_01_0004',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_21_23_38_01_0005',
],
DIRECT_VECTOR_PW=[
# Ran this on the cluster 08/24, WITH the axes conversion at test time (since the PW or PM loss is over the global axes-angle).
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_12_00_0001',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_12_00_0002',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_12_00_0003',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_12_00_0004',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_classif_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_12_00_0005',
],
DENSE_TRANSFORMATION_MSE=[ # Ran this 08/22 on cluster. 1 run failed so I re-ran it.
# This does NOT do the axes conversion at test time.
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_22_11_02_29_0001',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_22_11_02_29_0002',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_22_11_02_29_0003',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_22_11_02_29_0004',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_MSE_eepose_6DoF_ar_8_hor_100_rawPCL_scaleTarg_2022_08_22_12_02_33_0001',
],
DENSE_TRANSFORMATION_PW=[
# Ran this on the cluster 08/24, WITH the axes conversion at test time (since the PW or PM loss is over the global axes-angle).
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_06_05_0001',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_06_05_0002',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_06_05_0003',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_06_05_0004',
'BC04_PourWater6D_v01_ntrain_0100_PCL_PNet2_dense_tf_6D_pointwise_ee2flow_6DoF_ar_8_hor_100_scalePCL_noScaleTarg_2022_08_24_10_06_05_0005',
],
RGB_DIRECT_VECTOR=[ # Run before Aug 21 change in point cloud but this uses RGB and should not matter.
'BC04_PourWater6D_v01_ntrain_0100_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_15_03_15_0001',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_15_03_15_0002',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_15_03_15_0003',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_15_03_15_0004',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_15_03_15_0005',
],
RGB_DIRECT_VECTOR_AUGM=[ # Run before Aug 21 change in point cloud but this uses RGB and should not matter.
'BC04_PourWater6D_v01_ntrain_0100_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_15_19_45_0001',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_15_19_45_0002',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_15_19_45_0003',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_15_19_45_0004',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgb_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_15_19_45_0005',
],
RGBD_DIRECT_VECTOR=[ # Run before Aug 21 change in point cloud, which means depth has info about water.
'BC04_PourWater6D_v01_ntrain_0100_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_14_10_13_0001',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_14_10_13_0002',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_14_10_13_0003',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_14_10_13_0004',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_14_10_13_0005',
],
RGBD_DIRECT_VECTOR_AUGM=[ # Run before Aug 21 change in point cloud, which means depth has info about water.
'BC04_PourWater6D_v01_ntrain_0100_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_14_04_10_0001',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_14_04_10_0002',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_14_04_10_0003',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_14_04_10_0004',
'BC04_PourWater6D_v01_ntrain_0100_cam_rgbd_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_20_14_04_10_0005',
],
D_SEGM_DIRECT_VECTOR=[
## Segmented depth --> Image CNN --> Vector (no SVD at runtime)
# Ran on cluster, 08/25. I might wnat to double check JUST IN CASE ... I thought the results would be better here.
'BC04_PourWater6D_v01_ntrain_0100_depth_segm_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_02_57_40_0001',
'BC04_PourWater6D_v01_ntrain_0100_depth_segm_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_02_57_40_0002',
'BC04_PourWater6D_v01_ntrain_0100_depth_segm_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_02_57_40_0003',
'BC04_PourWater6D_v01_ntrain_0100_depth_segm_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_02_57_40_0004',
'BC04_PourWater6D_v01_ntrain_0100_depth_segm_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_02_57_40_0005',
],
RGB_SEGM_DIRECT_VECTOR=[
# Ran 08/25 on cluster. Must be on SoftGym `toolflownet-pouring-depth-segm` branch.
'BC04_PourWater6D_v01_ntrain_0100_rgb_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_14_40_26_0001',
'BC04_PourWater6D_v01_ntrain_0100_rgb_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_14_40_26_0002',
'BC04_PourWater6D_v01_ntrain_0100_rgb_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_14_40_26_0003',
'BC04_PourWater6D_v01_ntrain_0100_rgb_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_14_40_26_0004',
'BC04_PourWater6D_v01_ntrain_0100_rgb_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_14_40_26_0005',
],
RGBD_SEGM_DIRECT_VECTOR=[
# Ran 08/25 on cluster. Must be on SoftGym `toolflownet-pouring-depth-segm` branch.
'BC04_PourWater6D_v01_ntrain_0100_rgbd_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_14_32_12_0001',
'BC04_PourWater6D_v01_ntrain_0100_rgbd_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_14_32_12_0002',
'BC04_PourWater6D_v01_ntrain_0100_rgbd_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_14_32_12_0003',
'BC04_PourWater6D_v01_ntrain_0100_rgbd_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_14_32_12_0004',
'BC04_PourWater6D_v01_ntrain_0100_rgbd_segm_masks_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_14_32_12_0005',
],
D_DIRECT_VECTOR=[
# We might want to do this again but with the water in the depth, this doesn't have water in it:
#'BC04_PourWater6D_v01_ntrain_0100_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_23_52_55_0001',
#'BC04_PourWater6D_v01_ntrain_0100_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_23_52_55_0002',
#'BC04_PourWater6D_v01_ntrain_0100_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_23_52_55_0003',
#'BC04_PourWater6D_v01_ntrain_0100_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_23_52_55_0004',
#'BC04_PourWater6D_v01_ntrain_0100_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_25_23_52_55_0005',
# Actually this has water in depth (not on a branch, I just used Yufei's earlier data, and made SoftGym output the same thing)
# So I think _this_ is a much fairer comparison. And it's very bad. :)
'BC04_PourWater6D_v01_ntrain_0100_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_26_01_32_12_0001',
'BC04_PourWater6D_v01_ntrain_0100_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_26_01_32_12_0002',
'BC04_PourWater6D_v01_ntrain_0100_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_26_01_32_12_0003',
'BC04_PourWater6D_v01_ntrain_0100_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_26_01_32_12_0004',
'BC04_PourWater6D_v01_ntrain_0100_depth_img_pixel_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_26_01_32_12_0005',
],
STATE_GT_DIRECT_VECTOR=[
## This has state info. For this, I used 72-D state, 35 for tool, 35 for target, 2 for water in either cup.
## 35 for each cup is due to five 3D positions (15) and five 4D quaternions (20).
## We regenerated the data for this experiment. FYI, performance of this is good.
#'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_00_19_36_0001',
#'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_00_19_36_0002',
#'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_00_19_36_0003',
#'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_00_19_36_0004',
#'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_00_19_36_0005',
## 32-D state (no quaternions for the boxes). 15D for each of the two boxes, then 2 for water frac in both.
#'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_02_12_56_0001',
#'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_02_12_56_0002',
#'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_02_12_56_0003',
#'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_02_12_56_0004',
#'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_02_12_56_0005',
# Actually this seems better, 22D (same comments as 3D pouring).
'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_22_59_44_0001',
'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_22_59_44_0002',
'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_22_59_44_0003',
'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_22_59_44_0004',
'BC04_PourWater6D_v01_ntrain_0100_state_mlp_eepose_6DoF_ar_8_hor_100_scaleTarg_2022_08_27_22_59_44_0005',
],