-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
sitemap.xml
2502 lines (2498 loc) · 94 KB
/
sitemap.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->
<url>
<loc>https://github.com/layumi/person-reid-3d</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/LICENSE</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/issues</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/pulls</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/actions</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/projects</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/security</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/find/master</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/46004576f9674a53465fe164b30a98c261523fd5</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/4992ca054c36e95b7a758aaae855b6e332839e09</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/6f44155af4c8111eb9d38861c724edc7636bc649</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/54cd6839070058f825f003a7667f506acf7ac4e3</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/DGCNN.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/KNNGraphE.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/d985daad36d35357fbf6e21fcf736d3ed972c82d</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/README.md</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/18fba1ef0e54c715c323c076182a0b6da57435b4</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/evaluate_gpu.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/d050dca8df2ab51d6851393c67f4e05553eea344</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/gated_gcn_layer.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/market3d.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/02d66e312d32ae3164a1f0eac36c94ff82937f95</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/model.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/model_efficient.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/model_efficient2.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/pointnet2_model.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/prepare_MSMT.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/09c180e732e752c143bad1c859b704819c21fd9c</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/prepare_duke.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/9596d9170ad69d34604396c328217d46ec9b52f7</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/prepare_market.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/9eb6b2a962d6df991fb78d68fe4f405373ab9ecc</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/ptflops.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/requirements.txt</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/63b6b3188a79c6d3f98a29576b8fc7eaf2ed5427</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/swa_utils.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/e9183814dc82d7145ea7b2a469114e6e065d44a7</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/test_M.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/test_MSMT.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/test_P.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/test_vip.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/train_M.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/master/utils.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/dgcnn</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/LICENSE</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/labels</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/milestones</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/issues/9</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/issues/8</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/issues/7</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/issues/2</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/compare</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/security/policy</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/security/advisories</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/46004576f9674a53465fe164b30a98c261523fd5?branch=46004576f9674a53465fe164b30a98c261523fd5&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/46004576f9674a53465fe164b30a98c261523fd5?branch=46004576f9674a53465fe164b30a98c261523fd5&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/44ff0f20723b767378344da9c5d88304cf8dce3a</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/4992ca054c36e95b7a758aaae855b6e332839e09?branch=4992ca054c36e95b7a758aaae855b6e332839e09&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/4992ca054c36e95b7a758aaae855b6e332839e09?branch=4992ca054c36e95b7a758aaae855b6e332839e09&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/1389fe8379cc7dcf32dfdb82d6c7f33c95657ba2</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/6f44155af4c8111eb9d38861c724edc7636bc649?branch=6f44155af4c8111eb9d38861c724edc7636bc649&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/6f44155af4c8111eb9d38861c724edc7636bc649?branch=6f44155af4c8111eb9d38861c724edc7636bc649&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/2740ac19e257d6e9b044cc7cd0effbf8c4b672d6</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/54cd6839070058f825f003a7667f506acf7ac4e3?branch=54cd6839070058f825f003a7667f506acf7ac4e3&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/54cd6839070058f825f003a7667f506acf7ac4e3?branch=54cd6839070058f825f003a7667f506acf7ac4e3&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/DGCNN.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/KNNGraphE.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/30a07edfd48ad1262198d08669055de94ca3ec5c</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/d985daad36d35357fbf6e21fcf736d3ed972c82d?branch=d985daad36d35357fbf6e21fcf736d3ed972c82d&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/d985daad36d35357fbf6e21fcf736d3ed972c82d?branch=d985daad36d35357fbf6e21fcf736d3ed972c82d&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/README.md</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/18fba1ef0e54c715c323c076182a0b6da57435b4?branch=18fba1ef0e54c715c323c076182a0b6da57435b4&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/18fba1ef0e54c715c323c076182a0b6da57435b4?branch=18fba1ef0e54c715c323c076182a0b6da57435b4&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/evaluate_gpu.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/38642830b23f93e32784fbab0b2af9875a4b6b5f</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/d050dca8df2ab51d6851393c67f4e05553eea344?branch=d050dca8df2ab51d6851393c67f4e05553eea344&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/d050dca8df2ab51d6851393c67f4e05553eea344?branch=d050dca8df2ab51d6851393c67f4e05553eea344&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/gated_gcn_layer.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/market3d.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/37ec7270ec3c44089a21600d65a4b253025c8873</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/02d66e312d32ae3164a1f0eac36c94ff82937f95?branch=02d66e312d32ae3164a1f0eac36c94ff82937f95&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/02d66e312d32ae3164a1f0eac36c94ff82937f95?branch=02d66e312d32ae3164a1f0eac36c94ff82937f95&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/model.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/model_efficient.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/model_efficient2.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/pointnet2_model.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/prepare_MSMT.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/09c180e732e752c143bad1c859b704819c21fd9c?branch=09c180e732e752c143bad1c859b704819c21fd9c&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/09c180e732e752c143bad1c859b704819c21fd9c?branch=09c180e732e752c143bad1c859b704819c21fd9c&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/prepare_duke.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/a41c79ca0452c75fb99dfc4354f49920d6ed8365</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/9596d9170ad69d34604396c328217d46ec9b52f7?branch=9596d9170ad69d34604396c328217d46ec9b52f7&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/9596d9170ad69d34604396c328217d46ec9b52f7?branch=9596d9170ad69d34604396c328217d46ec9b52f7&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/prepare_market.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/9e3b08cdc53137dc5e09df813ea09192f08a0de3</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/9eb6b2a962d6df991fb78d68fe4f405373ab9ecc?branch=9eb6b2a962d6df991fb78d68fe4f405373ab9ecc&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/9eb6b2a962d6df991fb78d68fe4f405373ab9ecc?branch=9eb6b2a962d6df991fb78d68fe4f405373ab9ecc&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/ptflops.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/e4cbf698886a3189ee73e47d208bf9b68caee367</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/63b6b3188a79c6d3f98a29576b8fc7eaf2ed5427?branch=63b6b3188a79c6d3f98a29576b8fc7eaf2ed5427&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/63b6b3188a79c6d3f98a29576b8fc7eaf2ed5427?branch=63b6b3188a79c6d3f98a29576b8fc7eaf2ed5427&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/swa_utils.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/dadfaf501a47c0911d1dea6f55388c866a58718b</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/e9183814dc82d7145ea7b2a469114e6e065d44a7?branch=e9183814dc82d7145ea7b2a469114e6e065d44a7&diff=unified</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/commit/e9183814dc82d7145ea7b2a469114e6e065d44a7?branch=e9183814dc82d7145ea7b2a469114e6e065d44a7&diff=split</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/test_M.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/test_MSMT.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/test_P.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/test_vip.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/train_M.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/person-reid-3d/blob/46004576f9674a53465fe164b30a98c261523fd5/utils.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/LICENSE</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/pulls</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/actions</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/projects</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/security</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/find/master</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/login?return_to=https%3A%2F%2Fgithub.com%2Flayumi%2Fhmr%2Fpull%2Fnew%2Fmaster</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/akanazawa/hmr/compare/master...layumi:master</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/.gitignore</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/README.md</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/__init__.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/demo.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/demo_bg.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/demo_market.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/do_train.sh</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/generate_3DCUHK_bg.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/generate_3DDuke.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/generate_3DDuke_bg.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/generate_3DMSMT_aligned.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/generate_3DMSMT_bg.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/generate_3DMSMT_bg2.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/generate_3DMarket.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/generate_3DMarket_bg.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/generate_3DVIP_bg.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/prepare_datasets.sh</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/hmr/blob/master/requirements.txt</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/dgcnn/pulls</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/dgcnn/actions</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/dgcnn/projects</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/dgcnn/security</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/dgcnn/find/master</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/login?return_to=https%3A%2F%2Fgithub.com%2Flayumi%2Fdgcnn%2Fpull%2Fnew%2Fmaster</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/WangYueFt/dgcnn/compare/master...layumi:master</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/dgcnn/blob/master/.gitignore</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/dgcnn/blob/master/README.md</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/dgcnn/tree/master/tensorflow</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/dgcnn/tree/master/pytorch</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/LICENSE</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/issues</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/pulls</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/actions</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/projects</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/security</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/find/master</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/2c97228bd396e9b74887eeeca565d5d712b0fc37</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/f02a01f902a0df5de064d440e18e3674f77966fc</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/e4d1b66cf611fc2aae53b398a5f02fa22389916a</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/3065c3a157c852b6b03aaf3193003d37d5d75c00</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/211752580b6fce638baf04f7681e69de6f50001c</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/.gitignore</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/9cfde137ee8061b60084531c859580b7b8bdff15</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/.travis.yml</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/6cbc2e6de7dbea526b23380c691938a9350a6b71</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/93ff4bf73a751e501f04a27955d15d643e38d413</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/README.md</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/2518daf0f6f7e194ee081349c29d02a8a86edece</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/circle_loss.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/e9613bb1f814aafb8702d0ae5f9e16d6c466d52a</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/demo.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/629f1ca9ef22b297f3f1c3f03476d10dbac5f349</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/evaluate.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/7f8c3c1cb94d45e1b3a0014c3bd2bb58e7f6f9b9</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/evaluate_gpu.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/evaluate_rerank.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/a112bd746ced1f9dd43f7ca5b6eb1aaa214808ab</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/model.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/f5aa37f53b4a85fc728bf776114b9807a57efe5f</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/prepare.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/d3d8d84162add989496e208af4a3bb7c8c2faf37</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/prepare_static.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/e9cc9a1eb25690b5582346e8797445d860c9f5ba</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/prepare_viper.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/394db7b4ef0a2801be7b7c5bb6df022498461296</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/random_erasing.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/re_ranking.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/63bff64ef182f5737b58c7fa165641a22cd22ef8</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/abac99ce450faca6966c065a934f861990291566</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/test.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/10c515887abc84b1ece01f8227c4b7ef8b5b96c4</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/train.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/commit/a17698464d255d9c451bf70fa52a990fa402ffda</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/blob/dev/visual_heatmap.py</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_matconvnet</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/Person_reID_baseline_pytorch/tree/master/GPU-Re-Ranking</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/layumi/AICIty-reID-2020</loc>
<lastmod>2021-03-21T05:44:18+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>