-
Notifications
You must be signed in to change notification settings - Fork 5
/
.tags
executable file
·1012 lines (1012 loc) · 95 KB
/
.tags
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
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
!_TAG_PROGRAM_NAME Exuberant Ctags //
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
!_TAG_PROGRAM_VERSION 5.9~svn20110310 //
AnchorTargetCreator model/utils/creator_tool.py /^class AnchorTargetCreator(object):$/;" c
BASE model/utils/nms/_nms_gpu_post.c 183;" d file:
CUDA_NUM_THREADS model/roi_module.py /^CUDA_NUM_THREADS = 1024$/;" v
CYTHON_ABI model/utils/nms/_nms_gpu_post.c 10;" d file:
CYTHON_ASSUME_SAFE_MACROS model/utils/nms/_nms_gpu_post.c 105;" d file:
CYTHON_ASSUME_SAFE_MACROS model/utils/nms/_nms_gpu_post.c 159;" d file:
CYTHON_ASSUME_SAFE_MACROS model/utils/nms/_nms_gpu_post.c 69;" d file:
CYTHON_ASSUME_SAFE_MACROS model/utils/nms/_nms_gpu_post.c 70;" d file:
CYTHON_AVOID_BORROWED_REFS model/utils/nms/_nms_gpu_post.c 102;" d file:
CYTHON_AVOID_BORROWED_REFS model/utils/nms/_nms_gpu_post.c 156;" d file:
CYTHON_AVOID_BORROWED_REFS model/utils/nms/_nms_gpu_post.c 67;" d file:
CYTHON_AVOID_BORROWED_REFS model/utils/nms/_nms_gpu_post.c 68;" d file:
CYTHON_CCOMPLEX model/utils/nms/_nms_gpu_post.c 732;" d file:
CYTHON_CCOMPLEX model/utils/nms/_nms_gpu_post.c 734;" d file:
CYTHON_CCOMPLEX model/utils/nms/_nms_gpu_post.c 736;" d file:
CYTHON_COMPILING_IN_CPYTHON model/utils/nms/_nms_gpu_post.c 121;" d file:
CYTHON_COMPILING_IN_CPYTHON model/utils/nms/_nms_gpu_post.c 48;" d file:
CYTHON_COMPILING_IN_CPYTHON model/utils/nms/_nms_gpu_post.c 84;" d file:
CYTHON_COMPILING_IN_PYPY model/utils/nms/_nms_gpu_post.c 119;" d file:
CYTHON_COMPILING_IN_PYPY model/utils/nms/_nms_gpu_post.c 46;" d file:
CYTHON_COMPILING_IN_PYPY model/utils/nms/_nms_gpu_post.c 82;" d file:
CYTHON_COMPILING_IN_PYSTON model/utils/nms/_nms_gpu_post.c 120;" d file:
CYTHON_COMPILING_IN_PYSTON model/utils/nms/_nms_gpu_post.c 47;" d file:
CYTHON_COMPILING_IN_PYSTON model/utils/nms/_nms_gpu_post.c 83;" d file:
CYTHON_FALLTHROUGH model/utils/nms/_nms_gpu_post.c 452;" d file:
CYTHON_FALLTHROUGH model/utils/nms/_nms_gpu_post.c 454;" d file:
CYTHON_FALLTHROUGH model/utils/nms/_nms_gpu_post.c 456;" d file:
CYTHON_FALLTHROUGH model/utils/nms/_nms_gpu_post.c 461;" d file:
CYTHON_FALLTHROUGH model/utils/nms/_nms_gpu_post.c 463;" d file:
CYTHON_FALLTHROUGH model/utils/nms/_nms_gpu_post.c 468;" d file:
CYTHON_FALLTHROUGH model/utils/nms/_nms_gpu_post.c 469;" d file:
CYTHON_FAST_PYCALL model/utils/nms/_nms_gpu_post.c 112;" d file:
CYTHON_FAST_PYCALL model/utils/nms/_nms_gpu_post.c 113;" d file:
CYTHON_FAST_PYCALL model/utils/nms/_nms_gpu_post.c 168;" d file:
CYTHON_FAST_PYCALL model/utils/nms/_nms_gpu_post.c 75;" d file:
CYTHON_FAST_PYCALL model/utils/nms/_nms_gpu_post.c 76;" d file:
CYTHON_FAST_PYCCALL model/utils/nms/_nms_gpu_post.c 178;" d file:
CYTHON_FAST_THREAD_STATE model/utils/nms/_nms_gpu_post.c 110;" d file:
CYTHON_FAST_THREAD_STATE model/utils/nms/_nms_gpu_post.c 111;" d file:
CYTHON_FAST_THREAD_STATE model/utils/nms/_nms_gpu_post.c 165;" d file:
CYTHON_FAST_THREAD_STATE model/utils/nms/_nms_gpu_post.c 73;" d file:
CYTHON_FAST_THREAD_STATE model/utils/nms/_nms_gpu_post.c 74;" d file:
CYTHON_FORMAT_SSIZE_T model/utils/nms/_nms_gpu_post.c 190;" d file:
CYTHON_FUTURE_DIVISION model/utils/nms/_nms_gpu_post.c 11;" d file:
CYTHON_INLINE model/utils/nms/_nms_gpu_post.c 476;" d file:
CYTHON_INLINE model/utils/nms/_nms_gpu_post.c 478;" d file:
CYTHON_INLINE model/utils/nms/_nms_gpu_post.c 480;" d file:
CYTHON_INLINE model/utils/nms/_nms_gpu_post.c 482;" d file:
CYTHON_INLINE model/utils/nms/_nms_gpu_post.c 484;" d file:
CYTHON_MAYBE_UNUSED_VAR model/utils/nms/_nms_gpu_post.c /^ template<class T> void CYTHON_MAYBE_UNUSED_VAR( const T& ) { }$/;" f
CYTHON_MAYBE_UNUSED_VAR model/utils/nms/_nms_gpu_post.c 425;" d file:
CYTHON_NCP_UNUSED model/utils/nms/_nms_gpu_post.c 430;" d file:
CYTHON_NCP_UNUSED model/utils/nms/_nms_gpu_post.c 432;" d file:
CYTHON_PEP393_ENABLED model/utils/nms/_nms_gpu_post.c 253;" d file:
CYTHON_PEP393_ENABLED model/utils/nms/_nms_gpu_post.c 265;" d file:
CYTHON_PEP489_MULTI_PHASE_INIT model/utils/nms/_nms_gpu_post.c 114;" d file:
CYTHON_PEP489_MULTI_PHASE_INIT model/utils/nms/_nms_gpu_post.c 115;" d file:
CYTHON_PEP489_MULTI_PHASE_INIT model/utils/nms/_nms_gpu_post.c 171;" d file:
CYTHON_PEP489_MULTI_PHASE_INIT model/utils/nms/_nms_gpu_post.c 77;" d file:
CYTHON_PEP489_MULTI_PHASE_INIT model/utils/nms/_nms_gpu_post.c 78;" d file:
CYTHON_REFNANNY model/utils/nms/_nms_gpu_post.c 1048;" d file:
CYTHON_RESTRICT model/utils/nms/_nms_gpu_post.c 399;" d file:
CYTHON_RESTRICT model/utils/nms/_nms_gpu_post.c 401;" d file:
CYTHON_RESTRICT model/utils/nms/_nms_gpu_post.c 403;" d file:
CYTHON_RESTRICT model/utils/nms/_nms_gpu_post.c 405;" d file:
CYTHON_UNPACK_METHODS model/utils/nms/_nms_gpu_post.c 108;" d file:
CYTHON_UNPACK_METHODS model/utils/nms/_nms_gpu_post.c 162;" d file:
CYTHON_UNPACK_METHODS model/utils/nms/_nms_gpu_post.c 71;" d file:
CYTHON_UNPACK_METHODS model/utils/nms/_nms_gpu_post.c 72;" d file:
CYTHON_UNUSED model/utils/nms/_nms_gpu_post.c 411;" d file:
CYTHON_UNUSED model/utils/nms/_nms_gpu_post.c 413;" d file:
CYTHON_UNUSED model/utils/nms/_nms_gpu_post.c 416;" d file:
CYTHON_UNUSED model/utils/nms/_nms_gpu_post.c 418;" d file:
CYTHON_USE_ASYNC_SLOTS model/utils/nms/_nms_gpu_post.c 132;" d file:
CYTHON_USE_ASYNC_SLOTS model/utils/nms/_nms_gpu_post.c 133;" d file:
CYTHON_USE_ASYNC_SLOTS model/utils/nms/_nms_gpu_post.c 135;" d file:
CYTHON_USE_ASYNC_SLOTS model/utils/nms/_nms_gpu_post.c 54;" d file:
CYTHON_USE_ASYNC_SLOTS model/utils/nms/_nms_gpu_post.c 55;" d file:
CYTHON_USE_ASYNC_SLOTS model/utils/nms/_nms_gpu_post.c 57;" d file:
CYTHON_USE_ASYNC_SLOTS model/utils/nms/_nms_gpu_post.c 90;" d file:
CYTHON_USE_ASYNC_SLOTS model/utils/nms/_nms_gpu_post.c 91;" d file:
CYTHON_USE_PYLIST_INTERNALS model/utils/nms/_nms_gpu_post.c 144;" d file:
CYTHON_USE_PYLIST_INTERNALS model/utils/nms/_nms_gpu_post.c 59;" d file:
CYTHON_USE_PYLIST_INTERNALS model/utils/nms/_nms_gpu_post.c 60;" d file:
CYTHON_USE_PYLIST_INTERNALS model/utils/nms/_nms_gpu_post.c 92;" d file:
CYTHON_USE_PYLIST_INTERNALS model/utils/nms/_nms_gpu_post.c 93;" d file:
CYTHON_USE_PYLONG_INTERNALS model/utils/nms/_nms_gpu_post.c 100;" d file:
CYTHON_USE_PYLONG_INTERNALS model/utils/nms/_nms_gpu_post.c 138;" d file:
CYTHON_USE_PYLONG_INTERNALS model/utils/nms/_nms_gpu_post.c 139;" d file:
CYTHON_USE_PYLONG_INTERNALS model/utils/nms/_nms_gpu_post.c 141;" d file:
CYTHON_USE_PYLONG_INTERNALS model/utils/nms/_nms_gpu_post.c 65;" d file:
CYTHON_USE_PYLONG_INTERNALS model/utils/nms/_nms_gpu_post.c 66;" d file:
CYTHON_USE_PYLONG_INTERNALS model/utils/nms/_nms_gpu_post.c 99;" d file:
CYTHON_USE_PYTYPE_LOOKUP model/utils/nms/_nms_gpu_post.c 126;" d file:
CYTHON_USE_PYTYPE_LOOKUP model/utils/nms/_nms_gpu_post.c 127;" d file:
CYTHON_USE_PYTYPE_LOOKUP model/utils/nms/_nms_gpu_post.c 129;" d file:
CYTHON_USE_PYTYPE_LOOKUP model/utils/nms/_nms_gpu_post.c 51;" d file:
CYTHON_USE_PYTYPE_LOOKUP model/utils/nms/_nms_gpu_post.c 52;" d file:
CYTHON_USE_PYTYPE_LOOKUP model/utils/nms/_nms_gpu_post.c 88;" d file:
CYTHON_USE_PYTYPE_LOOKUP model/utils/nms/_nms_gpu_post.c 89;" d file:
CYTHON_USE_TP_FINALIZE model/utils/nms/_nms_gpu_post.c 116;" d file:
CYTHON_USE_TP_FINALIZE model/utils/nms/_nms_gpu_post.c 117;" d file:
CYTHON_USE_TP_FINALIZE model/utils/nms/_nms_gpu_post.c 174;" d file:
CYTHON_USE_TP_FINALIZE model/utils/nms/_nms_gpu_post.c 79;" d file:
CYTHON_USE_TP_FINALIZE model/utils/nms/_nms_gpu_post.c 80;" d file:
CYTHON_USE_TYPE_SLOTS model/utils/nms/_nms_gpu_post.c 123;" d file:
CYTHON_USE_TYPE_SLOTS model/utils/nms/_nms_gpu_post.c 49;" d file:
CYTHON_USE_TYPE_SLOTS model/utils/nms/_nms_gpu_post.c 50;" d file:
CYTHON_USE_TYPE_SLOTS model/utils/nms/_nms_gpu_post.c 86;" d file:
CYTHON_USE_UNICODE_INTERNALS model/utils/nms/_nms_gpu_post.c 147;" d file:
CYTHON_USE_UNICODE_INTERNALS model/utils/nms/_nms_gpu_post.c 61;" d file:
CYTHON_USE_UNICODE_INTERNALS model/utils/nms/_nms_gpu_post.c 62;" d file:
CYTHON_USE_UNICODE_INTERNALS model/utils/nms/_nms_gpu_post.c 95;" d file:
CYTHON_USE_UNICODE_WRITER model/utils/nms/_nms_gpu_post.c 150;" d file:
CYTHON_USE_UNICODE_WRITER model/utils/nms/_nms_gpu_post.c 151;" d file:
CYTHON_USE_UNICODE_WRITER model/utils/nms/_nms_gpu_post.c 153;" d file:
CYTHON_USE_UNICODE_WRITER model/utils/nms/_nms_gpu_post.c 63;" d file:
CYTHON_USE_UNICODE_WRITER model/utils/nms/_nms_gpu_post.c 64;" d file:
CYTHON_USE_UNICODE_WRITER model/utils/nms/_nms_gpu_post.c 97;" d file:
CYTHON_USE_UNICODE_WRITER model/utils/nms/_nms_gpu_post.c 98;" d file:
CYTHON_WITHOUT_ASSERTIONS model/utils/nms/_nms_gpu_post.c 533;" d file:
Config utils/config.py /^class Config:$/;" c
DECREF model/utils/nms/_nms_gpu_post.c /^ void (*DECREF)(void*, PyObject*, int);$/;" m struct:__anon8 file:
DL_EXPORT model/utils/nms/_nms_gpu_post.c 31;" d file:
DL_IMPORT model/utils/nms/_nms_gpu_post.c 28;" d file:
Dataset data/dataset.py /^class Dataset:$/;" c
FasterRCNN model/faster_rcnn.py /^class FasterRCNN(nn.Module):$/;" c
FasterRCNNTrainer trainer.py /^class FasterRCNNTrainer(nn.Module):$/;" c
FasterRCNNVGG16 model/faster_rcnn_vgg16.py /^class FasterRCNNVGG16(FasterRCNN):$/;" c
FasterRCNNVGG16 model/faster_rcnn_vgg16_backup.py /^class FasterRCNNVGG16(FasterRCNN):$/;" c
FinishContext model/utils/nms/_nms_gpu_post.c /^ void (*FinishContext)(void**);$/;" m struct:__anon8 file:
GET_BLOCKS model/roi_module.py /^def GET_BLOCKS(N, K=CUDA_NUM_THREADS):$/;" f
GIVEREF model/utils/nms/_nms_gpu_post.c /^ void (*GIVEREF)(void*, PyObject*, int);$/;" m struct:__anon8 file:
GOTREF model/utils/nms/_nms_gpu_post.c /^ void (*GOTREF)(void*, PyObject*, int);$/;" m struct:__anon8 file:
HAVE_LONG_LONG model/utils/nms/_nms_gpu_post.c 36;" d file:
INCREF model/utils/nms/_nms_gpu_post.c /^ void (*INCREF)(void*, PyObject*, int);$/;" m struct:__anon8 file:
IS_UNSIGNED model/utils/nms/_nms_gpu_post.c 758;" d file:
LossTuple trainer.py /^LossTuple = namedtuple('LossTuple',$/;" v
MASK model/utils/nms/_nms_gpu_post.c 184;" d file:
METH_FASTCALL model/utils/nms/_nms_gpu_post.c 216;" d file:
PY_LONG_LONG model/utils/nms/_nms_gpu_post.c 40;" d file:
PY_SSIZE_T_CLEAN model/utils/nms/_nms_gpu_post.c 3;" d file:
ProposalCreator model/utils/creator_tool.py /^class ProposalCreator:$/;" c
ProposalTargetCreator model/utils/creator_tool.py /^class ProposalTargetCreator(object):$/;" c
PyBaseString_Type model/utils/nms/_nms_gpu_post.c 319;" d file:
PyBoolObject model/utils/nms/_nms_gpu_post.c 354;" d file:
PyByteArray_Check model/utils/nms/_nms_gpu_post.c 291;" d file:
PyIntObject model/utils/nms/_nms_gpu_post.c 337;" d file:
PyInt_AS_LONG model/utils/nms/_nms_gpu_post.c 347;" d file:
PyInt_AsLong model/utils/nms/_nms_gpu_post.c 346;" d file:
PyInt_AsSsize_t model/utils/nms/_nms_gpu_post.c 348;" d file:
PyInt_AsUnsignedLongLongMask model/utils/nms/_nms_gpu_post.c 350;" d file:
PyInt_AsUnsignedLongMask model/utils/nms/_nms_gpu_post.c 349;" d file:
PyInt_Check model/utils/nms/_nms_gpu_post.c 339;" d file:
PyInt_CheckExact model/utils/nms/_nms_gpu_post.c 340;" d file:
PyInt_FromLong model/utils/nms/_nms_gpu_post.c 343;" d file:
PyInt_FromSize_t model/utils/nms/_nms_gpu_post.c 344;" d file:
PyInt_FromSsize_t model/utils/nms/_nms_gpu_post.c 345;" d file:
PyInt_FromString model/utils/nms/_nms_gpu_post.c 341;" d file:
PyInt_FromUnicode model/utils/nms/_nms_gpu_post.c 342;" d file:
PyInt_Type model/utils/nms/_nms_gpu_post.c 338;" d file:
PyNumber_Int model/utils/nms/_nms_gpu_post.c 351;" d file:
PyObject_ASCII model/utils/nms/_nms_gpu_post.c 316;" d file:
PyObject_Format model/utils/nms/_nms_gpu_post.c 294;" d file:
PyObject_Free model/utils/nms/_nms_gpu_post.c 298;" d file:
PyObject_Malloc model/utils/nms/_nms_gpu_post.c 297;" d file:
PyObject_Realloc model/utils/nms/_nms_gpu_post.c 299;" d file:
PySet_CheckExact model/utils/nms/_nms_gpu_post.c 333;" d file:
PyStringObject model/utils/nms/_nms_gpu_post.c 320;" d file:
PyString_Check model/utils/nms/_nms_gpu_post.c 322;" d file:
PyString_CheckExact model/utils/nms/_nms_gpu_post.c 323;" d file:
PyString_Type model/utils/nms/_nms_gpu_post.c 321;" d file:
PyUnicode_1BYTE_KIND model/utils/nms/_nms_gpu_post.c 266;" d file:
PyUnicode_2BYTE_KIND model/utils/nms/_nms_gpu_post.c 267;" d file:
PyUnicode_4BYTE_KIND model/utils/nms/_nms_gpu_post.c 268;" d file:
PyUnicode_Contains model/utils/nms/_nms_gpu_post.c 288;" d file:
PyUnicode_InternFromString model/utils/nms/_nms_gpu_post.c 358;" d file:
Py_HUGE_VAL model/utils/nms/_nms_gpu_post.c 43;" d file:
Py_OptimizeFlag model/utils/nms/_nms_gpu_post.c 187;" d file:
Py_TPFLAGS_CHECKTYPES model/utils/nms/_nms_gpu_post.c 203;" d file:
Py_TPFLAGS_HAVE_FINALIZE model/utils/nms/_nms_gpu_post.c 212;" d file:
Py_TPFLAGS_HAVE_INDEX model/utils/nms/_nms_gpu_post.c 206;" d file:
Py_TPFLAGS_HAVE_NEWBUFFER model/utils/nms/_nms_gpu_post.c 209;" d file:
Py_hash_t model/utils/nms/_nms_gpu_post.c /^ typedef long Py_hash_t;$/;" t file:
RegionProposalNetwork model/region_proposal_network.py /^class RegionProposalNetwork(nn.Module):$/;" c
RoI model/roi_module.py /^class RoI(Function):$/;" c
RoIPooling2D model/roi_module.py /^class RoIPooling2D(t.nn.Module):$/;" c
SHIFT model/utils/nms/_nms_gpu_post.c 182;" d file:
SetupContext model/utils/nms/_nms_gpu_post.c /^ void* (*SetupContext)(const char*, int, const char*);$/;" m struct:__anon8 file:
Stream model/roi_module.py /^Stream = namedtuple('Stream', ['ptr'])$/;" v
TestDataset data/dataset.py /^class TestDataset:$/;" c
Transform data/dataset.py /^class Transform(object):$/;" c
UNARY_NEG_WOULD_OVERFLOW model/utils/nms/_nms_gpu_post.c 1187;" d file:
VGG16RoIHead model/faster_rcnn_vgg16.py /^class VGG16RoIHead(nn.Module):$/;" c
VGG16RoIHead model/faster_rcnn_vgg16_backup.py /^class VGG16RoIHead(nn.Module):$/;" c
VOCBboxDataset data/voc_dataset.py /^class VOCBboxDataset:$/;" c
VOC_BBOX_LABEL_NAMES data/voc_dataset.py /^VOC_BBOX_LABEL_NAMES = ($/;" v
VOC_BBOX_LABEL_NAMES utils/vis_tool.py /^VOC_BBOX_LABEL_NAMES = ($/;" v
Visualizer utils/vis_tool.py /^class Visualizer(object):$/;" c
_Complex_I model/utils/nms/_nms_gpu_post.c 747;" d file:
_Complex_I model/utils/nms/_nms_gpu_post.c 748;" d file:
_USE_MATH_DEFINES model/utils/nms/_nms_gpu_post.c 489;" d file:
__PYX_BUF_FLAGS_PACKED_STRUCT model/utils/nms/_nms_gpu_post.c 760;" d file:
__PYX_BUILD_PY_SSIZE_T model/utils/nms/_nms_gpu_post.c 189;" d file:
__PYX_COMMA model/utils/nms/_nms_gpu_post.c 33;" d file:
__PYX_DEFAULT_STRING_ENCODING model/utils/nms/_nms_gpu_post.c /^static char* __PYX_DEFAULT_STRING_ENCODING;$/;" v file:
__PYX_DEFAULT_STRING_ENCODING model/utils/nms/_nms_gpu_post.c 541;" d file:
__PYX_DEFAULT_STRING_ENCODING_IS_ASCII model/utils/nms/_nms_gpu_post.c 539;" d file:
__PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT model/utils/nms/_nms_gpu_post.c 540;" d file:
__PYX_ERR model/utils/nms/_nms_gpu_post.c 508;" d file:
__PYX_EXTERN_C model/utils/nms/_nms_gpu_post.c 515;" d file:
__PYX_EXTERN_C model/utils/nms/_nms_gpu_post.c 517;" d file:
__PYX_HAVE_API___nms_gpu_post model/utils/nms/_nms_gpu_post.c 522;" d file:
__PYX_HAVE_RT_ImportModule model/utils/nms/_nms_gpu_post.c 7489;" d file:
__PYX_HAVE_RT_ImportType model/utils/nms/_nms_gpu_post.c 7507;" d file:
__PYX_HAVE___nms_gpu_post model/utils/nms/_nms_gpu_post.c 521;" d file:
__PYX_NAN model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE float __PYX_NAN() {$/;" f file:
__PYX_NAN model/utils/nms/_nms_gpu_post.c 493;" d file:
__PYX_VERIFY_RETURN_INT model/utils/nms/_nms_gpu_post.c 6597;" d file:
__PYX_VERIFY_RETURN_INT_EXC model/utils/nms/_nms_gpu_post.c 6599;" d file:
__PYX__VERIFY_RETURN_INT model/utils/nms/_nms_gpu_post.c 6601;" d file:
__Pyx_AddTraceback model/utils/nms/_nms_gpu_post.c /^static void __Pyx_AddTraceback(const char *funcname, int c_line,$/;" f file:
__Pyx_ArgTypeTest model/utils/nms/_nms_gpu_post.c 1141;" d file:
__Pyx_BUILTIN_MODULE_NAME model/utils/nms/_nms_gpu_post.c 192;" d file:
__Pyx_BUILTIN_MODULE_NAME model/utils/nms/_nms_gpu_post.c 197;" d file:
__Pyx_BufFmt_CheckString model/utils/nms/_nms_gpu_post.c /^static const char* __Pyx_BufFmt_CheckString(__Pyx_BufFmt_Context* ctx, const char* ts) {$/;" f file:
__Pyx_BufFmt_Context model/utils/nms/_nms_gpu_post.c /^} __Pyx_BufFmt_Context;$/;" t typeref:struct:__anon5 file:
__Pyx_BufFmt_DescribeTypeChar model/utils/nms/_nms_gpu_post.c /^static const char* __Pyx_BufFmt_DescribeTypeChar(char ch, int is_complex) {$/;" f file:
__Pyx_BufFmt_ExpectNumber model/utils/nms/_nms_gpu_post.c /^static int __Pyx_BufFmt_ExpectNumber(const char **ts) {$/;" f file:
__Pyx_BufFmt_Init model/utils/nms/_nms_gpu_post.c /^static void __Pyx_BufFmt_Init(__Pyx_BufFmt_Context* ctx,$/;" f file:
__Pyx_BufFmt_ParseNumber model/utils/nms/_nms_gpu_post.c /^static int __Pyx_BufFmt_ParseNumber(const char** ts) {$/;" f file:
__Pyx_BufFmt_ProcessTypeChunk model/utils/nms/_nms_gpu_post.c /^static int __Pyx_BufFmt_ProcessTypeChunk(__Pyx_BufFmt_Context* ctx) {$/;" f file:
__Pyx_BufFmt_RaiseExpected model/utils/nms/_nms_gpu_post.c /^static void __Pyx_BufFmt_RaiseExpected(__Pyx_BufFmt_Context* ctx) {$/;" f file:
__Pyx_BufFmt_RaiseUnexpectedChar model/utils/nms/_nms_gpu_post.c /^static void __Pyx_BufFmt_RaiseUnexpectedChar(char ch) {$/;" f file:
__Pyx_BufFmt_StackElem model/utils/nms/_nms_gpu_post.c /^} __Pyx_BufFmt_StackElem;$/;" t typeref:struct:__anon4 file:
__Pyx_BufFmt_TypeCharToAlignment model/utils/nms/_nms_gpu_post.c /^static size_t __Pyx_BufFmt_TypeCharToAlignment(char ch, CYTHON_UNUSED int is_complex) {$/;" f file:
__Pyx_BufFmt_TypeCharToGroup model/utils/nms/_nms_gpu_post.c /^static char __Pyx_BufFmt_TypeCharToGroup(char ch, int is_complex) {$/;" f file:
__Pyx_BufFmt_TypeCharToNativeSize model/utils/nms/_nms_gpu_post.c /^static size_t __Pyx_BufFmt_TypeCharToNativeSize(char ch, int is_complex) {$/;" f file:
__Pyx_BufFmt_TypeCharToPadding model/utils/nms/_nms_gpu_post.c /^static size_t __Pyx_BufFmt_TypeCharToPadding(char ch, CYTHON_UNUSED int is_complex) {$/;" f file:
__Pyx_BufFmt_TypeCharToStandardSize model/utils/nms/_nms_gpu_post.c /^static size_t __Pyx_BufFmt_TypeCharToStandardSize(char ch, int is_complex) {$/;" f file:
__Pyx_BufPtrStrided1d model/utils/nms/_nms_gpu_post.c 1196;" d file:
__Pyx_Buf_DimInfo model/utils/nms/_nms_gpu_post.c /^} __Pyx_Buf_DimInfo;$/;" t typeref:struct:__anon10 file:
__Pyx_Buffer model/utils/nms/_nms_gpu_post.c /^} __Pyx_Buffer;$/;" t typeref:struct:__anon11 file:
__Pyx_CIMAG model/utils/nms/_nms_gpu_post.c 1352;" d file:
__Pyx_CIMAG model/utils/nms/_nms_gpu_post.c 1355;" d file:
__Pyx_CIMAG model/utils/nms/_nms_gpu_post.c 1359;" d file:
__Pyx_CLEAR model/utils/nms/_nms_gpu_post.c 1106;" d file:
__Pyx_CLineForTraceback model/utils/nms/_nms_gpu_post.c /^static int __Pyx_CLineForTraceback(CYTHON_UNUSED PyThreadState *tstate, int c_line) {$/;" f file:
__Pyx_CLineForTraceback model/utils/nms/_nms_gpu_post.c 1298;" d file:
__Pyx_CREAL model/utils/nms/_nms_gpu_post.c 1351;" d file:
__Pyx_CREAL model/utils/nms/_nms_gpu_post.c 1354;" d file:
__Pyx_CREAL model/utils/nms/_nms_gpu_post.c 1358;" d file:
__Pyx_CodeObjectCache model/utils/nms/_nms_gpu_post.c /^struct __Pyx_CodeObjectCache {$/;" s file:
__Pyx_CodeObjectCacheEntry model/utils/nms/_nms_gpu_post.c /^} __Pyx_CodeObjectCacheEntry;$/;" t typeref:struct:__anon9 file:
__Pyx_CreateCodeObjectForTraceback model/utils/nms/_nms_gpu_post.c /^static PyCodeObject* __Pyx_CreateCodeObjectForTraceback($/;" f file:
__Pyx_DECREF model/utils/nms/_nms_gpu_post.c 1078;" d file:
__Pyx_DECREF model/utils/nms/_nms_gpu_post.c 1090;" d file:
__Pyx_DECREF_SET model/utils/nms/_nms_gpu_post.c 1102;" d file:
__Pyx_DefaultClassType model/utils/nms/_nms_gpu_post.c 195;" d file:
__Pyx_DefaultClassType model/utils/nms/_nms_gpu_post.c 200;" d file:
__Pyx_ErrFetch model/utils/nms/_nms_gpu_post.c 1214;" d file:
__Pyx_ErrFetch model/utils/nms/_nms_gpu_post.c 1230;" d file:
__Pyx_ErrFetchInState model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) {$/;" f file:
__Pyx_ErrFetchInState model/utils/nms/_nms_gpu_post.c 1228;" d file:
__Pyx_ErrFetchWithState model/utils/nms/_nms_gpu_post.c 1212;" d file:
__Pyx_ErrFetchWithState model/utils/nms/_nms_gpu_post.c 1226;" d file:
__Pyx_ErrRestore model/utils/nms/_nms_gpu_post.c 1213;" d file:
__Pyx_ErrRestore model/utils/nms/_nms_gpu_post.c 1229;" d file:
__Pyx_ErrRestoreInState model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) {$/;" f file:
__Pyx_ErrRestoreInState model/utils/nms/_nms_gpu_post.c 1227;" d file:
__Pyx_ErrRestoreWithState model/utils/nms/_nms_gpu_post.c 1211;" d file:
__Pyx_ErrRestoreWithState model/utils/nms/_nms_gpu_post.c 1225;" d file:
__Pyx_ExceptionReset model/utils/nms/_nms_gpu_post.c 1270;" d file:
__Pyx_ExceptionReset model/utils/nms/_nms_gpu_post.c 1274;" d file:
__Pyx_ExceptionSave model/utils/nms/_nms_gpu_post.c 1268;" d file:
__Pyx_ExceptionSave model/utils/nms/_nms_gpu_post.c 1273;" d file:
__Pyx_GIVEREF model/utils/nms/_nms_gpu_post.c 1080;" d file:
__Pyx_GIVEREF model/utils/nms/_nms_gpu_post.c 1092;" d file:
__Pyx_GOTREF model/utils/nms/_nms_gpu_post.c 1079;" d file:
__Pyx_GOTREF model/utils/nms/_nms_gpu_post.c 1091;" d file:
__Pyx_GetBuffer model/utils/nms/_nms_gpu_post.c /^static int __Pyx_GetBuffer(PyObject *obj, Py_buffer *view, int flags) {$/;" f file:
__Pyx_GetBuffer model/utils/nms/_nms_gpu_post.c 1340;" d file:
__Pyx_GetBufferAndValidate model/utils/nms/_nms_gpu_post.c 1156;" d file:
__Pyx_GetBuiltinName model/utils/nms/_nms_gpu_post.c /^static PyObject *__Pyx_GetBuiltinName(PyObject *name) {$/;" f file:
__Pyx_GetException model/utils/nms/_nms_gpu_post.c 1287;" d file:
__Pyx_GetModuleGlobalName model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE PyObject *__Pyx_GetModuleGlobalName(PyObject *name) {$/;" f file:
__Pyx_INCREF model/utils/nms/_nms_gpu_post.c 1077;" d file:
__Pyx_INCREF model/utils/nms/_nms_gpu_post.c 1089;" d file:
__Pyx_Import model/utils/nms/_nms_gpu_post.c /^ static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) {$/;" f file:
__Pyx_ImportModule model/utils/nms/_nms_gpu_post.c /^static PyObject *__Pyx_ImportModule(const char *name) {$/;" f file:
__Pyx_ImportType model/utils/nms/_nms_gpu_post.c /^static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name,$/;" f file:
__Pyx_InBases model/utils/nms/_nms_gpu_post.c /^static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) {$/;" f file:
__Pyx_InitCachedBuiltins model/utils/nms/_nms_gpu_post.c /^static int __Pyx_InitCachedBuiltins(void) {$/;" f file:
__Pyx_InitCachedConstants model/utils/nms/_nms_gpu_post.c /^static int __Pyx_InitCachedConstants(void) {$/;" f file:
__Pyx_InitGlobals model/utils/nms/_nms_gpu_post.c /^static int __Pyx_InitGlobals(void) {$/;" f file:
__Pyx_InitStrings model/utils/nms/_nms_gpu_post.c /^ static int __Pyx_InitStrings(__Pyx_StringTabEntry *t) {$/;" f file:
__Pyx_IsSubtype model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) {$/;" f file:
__Pyx_Is_Little_Endian model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE int __Pyx_Is_Little_Endian(void)$/;" f file:
__Pyx_LocalBuf_ND model/utils/nms/_nms_gpu_post.c /^} __Pyx_LocalBuf_ND;$/;" t typeref:struct:__anon12 file:
__Pyx_MODULE_NAME model/utils/nms/_nms_gpu_post.c 1526;" d file:
__Pyx_NewRef model/utils/nms/_nms_gpu_post.c 610;" d file:
__Pyx_Owned_Py_None model/utils/nms/_nms_gpu_post.c 611;" d file:
__Pyx_ParseOptionalKeywords model/utils/nms/_nms_gpu_post.c /^static int __Pyx_ParseOptionalKeywords($/;" f file:
__Pyx_PyAsyncMethodsStruct model/utils/nms/_nms_gpu_post.c /^ } __Pyx_PyAsyncMethodsStruct;$/;" t typeref:struct:__anon1 file:
__Pyx_PyAsyncMethodsStruct model/utils/nms/_nms_gpu_post.c 382;" d file:
__Pyx_PyBaseString_Check model/utils/nms/_nms_gpu_post.c 326;" d file:
__Pyx_PyBaseString_Check model/utils/nms/_nms_gpu_post.c 329;" d file:
__Pyx_PyBaseString_CheckExact model/utils/nms/_nms_gpu_post.c 327;" d file:
__Pyx_PyBaseString_CheckExact model/utils/nms/_nms_gpu_post.c 330;" d file:
__Pyx_PyBool_FromLong model/utils/nms/_nms_gpu_post.c 612;" d file:
__Pyx_PyByteArray_FromCString model/utils/nms/_nms_gpu_post.c 599;" d file:
__Pyx_PyByteArray_FromString model/utils/nms/_nms_gpu_post.c 574;" d file:
__Pyx_PyByteArray_FromStringAndSize model/utils/nms/_nms_gpu_post.c 575;" d file:
__Pyx_PyBytes_AsSString model/utils/nms/_nms_gpu_post.c 590;" d file:
__Pyx_PyBytes_AsString model/utils/nms/_nms_gpu_post.c 589;" d file:
__Pyx_PyBytes_AsUString model/utils/nms/_nms_gpu_post.c 591;" d file:
__Pyx_PyBytes_AsWritableSString model/utils/nms/_nms_gpu_post.c 587;" d file:
__Pyx_PyBytes_AsWritableString model/utils/nms/_nms_gpu_post.c 586;" d file:
__Pyx_PyBytes_AsWritableUString model/utils/nms/_nms_gpu_post.c 588;" d file:
__Pyx_PyBytes_FromCString model/utils/nms/_nms_gpu_post.c 598;" d file:
__Pyx_PyBytes_FromString model/utils/nms/_nms_gpu_post.c 576;" d file:
__Pyx_PyBytes_FromStringAndSize model/utils/nms/_nms_gpu_post.c 577;" d file:
__Pyx_PyCFunctionFast model/utils/nms/_nms_gpu_post.c /^ typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject **args, Py_ssize_t nargs);$/;" t file:
__Pyx_PyCFunctionFast model/utils/nms/_nms_gpu_post.c 222;" d file:
__Pyx_PyCFunctionFastWithKeywords model/utils/nms/_nms_gpu_post.c /^ typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject **args,$/;" t file:
__Pyx_PyCFunctionFastWithKeywords model/utils/nms/_nms_gpu_post.c 223;" d file:
__Pyx_PyCode_HasFreeVars model/utils/nms/_nms_gpu_post.c 302;" d file:
__Pyx_PyCode_HasFreeVars model/utils/nms/_nms_gpu_post.c 305;" d file:
__Pyx_PyCode_New model/utils/nms/_nms_gpu_post.c 193;" d file:
__Pyx_PyCode_New model/utils/nms/_nms_gpu_post.c 198;" d file:
__Pyx_PyDict_GetItem model/utils/nms/_nms_gpu_post.c /^static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) {$/;" f file:
__Pyx_PyDict_GetItem model/utils/nms/_nms_gpu_post.c 1254;" d file:
__Pyx_PyDict_NewPresized model/utils/nms/_nms_gpu_post.c 241;" d file:
__Pyx_PyDict_NewPresized model/utils/nms/_nms_gpu_post.c 243;" d file:
__Pyx_PyErr_Clear model/utils/nms/_nms_gpu_post.c 1210;" d file:
__Pyx_PyErr_Clear model/utils/nms/_nms_gpu_post.c 1223;" d file:
__Pyx_PyErr_ExceptionMatches model/utils/nms/_nms_gpu_post.c 1279;" d file:
__Pyx_PyErr_ExceptionMatches model/utils/nms/_nms_gpu_post.c 1282;" d file:
__Pyx_PyErr_ExceptionMatchesInState model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err) {$/;" f file:
__Pyx_PyErr_ExceptionMatchesTuple model/utils/nms/_nms_gpu_post.c /^static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) {$/;" f file:
__Pyx_PyErr_GivenExceptionMatches model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject* exc_type) {$/;" f file:
__Pyx_PyErr_GivenExceptionMatches model/utils/nms/_nms_gpu_post.c 1466;" d file:
__Pyx_PyErr_GivenExceptionMatches2 model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *exc_type1, PyObject *exc_type2) {$/;" f file:
__Pyx_PyErr_GivenExceptionMatches2 model/utils/nms/_nms_gpu_post.c 1467;" d file:
__Pyx_PyErr_Occurred model/utils/nms/_nms_gpu_post.c 1201;" d file:
__Pyx_PyErr_Occurred model/utils/nms/_nms_gpu_post.c 1205;" d file:
__Pyx_PyErr_SetNone model/utils/nms/_nms_gpu_post.c 1218;" d file:
__Pyx_PyErr_SetNone model/utils/nms/_nms_gpu_post.c 1220;" d file:
__Pyx_PyErr_SetNone model/utils/nms/_nms_gpu_post.c 1224;" d file:
__Pyx_PyException_Check model/utils/nms/_nms_gpu_post.c 335;" d file:
__Pyx_PyFastCFunction_Check model/utils/nms/_nms_gpu_post.c 226;" d file:
__Pyx_PyFastCFunction_Check model/utils/nms/_nms_gpu_post.c 229;" d file:
__Pyx_PyFrame_SetLineNumber model/utils/nms/_nms_gpu_post.c 303;" d file:
__Pyx_PyFrame_SetLineNumber model/utils/nms/_nms_gpu_post.c 306;" d file:
__Pyx_PyIdentifier_FromString model/utils/nms/_nms_gpu_post.c 1476;" d file:
__Pyx_PyIdentifier_FromString model/utils/nms/_nms_gpu_post.c 1478;" d file:
__Pyx_PyIndex_AsSsize_t model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) {$/;" f file:
__Pyx_PyInt_AsHash_t model/utils/nms/_nms_gpu_post.c 364;" d file:
__Pyx_PyInt_AsHash_t model/utils/nms/_nms_gpu_post.c 367;" d file:
__Pyx_PyInt_As_int model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) {$/;" f file:
__Pyx_PyInt_As_long model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) {$/;" f file:
__Pyx_PyInt_FromHash_t model/utils/nms/_nms_gpu_post.c 363;" d file:
__Pyx_PyInt_FromHash_t model/utils/nms/_nms_gpu_post.c 366;" d file:
__Pyx_PyInt_FromSize_t model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) {$/;" f file:
__Pyx_PyInt_From_enum__NPY_TYPES model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_enum__NPY_TYPES(enum NPY_TYPES value) {$/;" f file:
__Pyx_PyInt_From_int model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value) {$/;" f file:
__Pyx_PyInt_From_long model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) {$/;" f file:
__Pyx_PyMethod_New model/utils/nms/_nms_gpu_post.c 370;" d file:
__Pyx_PyMethod_New model/utils/nms/_nms_gpu_post.c 372;" d file:
__Pyx_PyNumber_Divide model/utils/nms/_nms_gpu_post.c 246;" d file:
__Pyx_PyNumber_Divide model/utils/nms/_nms_gpu_post.c 249;" d file:
__Pyx_PyNumber_Float model/utils/nms/_nms_gpu_post.c 630;" d file:
__Pyx_PyNumber_InPlaceDivide model/utils/nms/_nms_gpu_post.c 247;" d file:
__Pyx_PyNumber_InPlaceDivide model/utils/nms/_nms_gpu_post.c 250;" d file:
__Pyx_PyNumber_Int model/utils/nms/_nms_gpu_post.c 626;" d file:
__Pyx_PyNumber_Int model/utils/nms/_nms_gpu_post.c 628;" d file:
__Pyx_PyNumber_IntOrLong model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) {$/;" f file:
__Pyx_PyNumber_IntOrLongWrongResultType model/utils/nms/_nms_gpu_post.c /^static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) {$/;" f file:
__Pyx_PyObject_AsSString model/utils/nms/_nms_gpu_post.c 595;" d file:
__Pyx_PyObject_AsString model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) {$/;" f file:
__Pyx_PyObject_AsStringAndSize model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) {$/;" f file:
__Pyx_PyObject_AsUString model/utils/nms/_nms_gpu_post.c 596;" d file:
__Pyx_PyObject_AsWritableSString model/utils/nms/_nms_gpu_post.c 593;" d file:
__Pyx_PyObject_AsWritableString model/utils/nms/_nms_gpu_post.c 592;" d file:
__Pyx_PyObject_AsWritableUString model/utils/nms/_nms_gpu_post.c 594;" d file:
__Pyx_PyObject_Call model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) {$/;" f file:
__Pyx_PyObject_Call model/utils/nms/_nms_gpu_post.c 1174;" d file:
__Pyx_PyObject_FromCString model/utils/nms/_nms_gpu_post.c 597;" d file:
__Pyx_PyObject_FromString model/utils/nms/_nms_gpu_post.c 542;" d file:
__Pyx_PyObject_FromStringAndSize model/utils/nms/_nms_gpu_post.c 543;" d file:
__Pyx_PyObject_GetAttrStr model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) {$/;" f file:
__Pyx_PyObject_GetAttrStr model/utils/nms/_nms_gpu_post.c 1122;" d file:
__Pyx_PyObject_IsTrue model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) {$/;" f file:
__Pyx_PySequence_Tuple model/utils/nms/_nms_gpu_post.c 615;" d file:
__Pyx_PyStr_FromCString model/utils/nms/_nms_gpu_post.c 600;" d file:
__Pyx_PyStr_FromString model/utils/nms/_nms_gpu_post.c 580;" d file:
__Pyx_PyStr_FromString model/utils/nms/_nms_gpu_post.c 583;" d file:
__Pyx_PyStr_FromStringAndSize model/utils/nms/_nms_gpu_post.c 581;" d file:
__Pyx_PyStr_FromStringAndSize model/utils/nms/_nms_gpu_post.c 584;" d file:
__Pyx_PyString_Format model/utils/nms/_nms_gpu_post.c 311;" d file:
__Pyx_PyString_Format model/utils/nms/_nms_gpu_post.c 313;" d file:
__Pyx_PyString_FormatSafe model/utils/nms/_nms_gpu_post.c 308;" d file:
__Pyx_PyThreadState_Current model/utils/nms/_nms_gpu_post.c 232;" d file:
__Pyx_PyThreadState_Current model/utils/nms/_nms_gpu_post.c 234;" d file:
__Pyx_PyThreadState_Current model/utils/nms/_nms_gpu_post.c 236;" d file:
__Pyx_PyThreadState_Current model/utils/nms/_nms_gpu_post.c 238;" d file:
__Pyx_PyThreadState_assign model/utils/nms/_nms_gpu_post.c 1200;" d file:
__Pyx_PyThreadState_assign model/utils/nms/_nms_gpu_post.c 1204;" d file:
__Pyx_PyThreadState_declare model/utils/nms/_nms_gpu_post.c 1199;" d file:
__Pyx_PyThreadState_declare model/utils/nms/_nms_gpu_post.c 1203;" d file:
__Pyx_PyType_AsAsync model/utils/nms/_nms_gpu_post.c 383;" d file:
__Pyx_PyType_AsAsync model/utils/nms/_nms_gpu_post.c 385;" d file:
__Pyx_PyType_AsAsync model/utils/nms/_nms_gpu_post.c 388;" d file:
__Pyx_PyUnicode_AsStringAndSize model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) {$/;" f file:
__Pyx_PyUnicode_AsStringAndSize model/utils/nms/_nms_gpu_post.c /^static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) {$/;" f file:
__Pyx_PyUnicode_AsUnicode model/utils/nms/_nms_gpu_post.c 609;" d file:
__Pyx_PyUnicode_Concat model/utils/nms/_nms_gpu_post.c 280;" d file:
__Pyx_PyUnicode_Concat model/utils/nms/_nms_gpu_post.c 283;" d file:
__Pyx_PyUnicode_ConcatSafe model/utils/nms/_nms_gpu_post.c 281;" d file:
__Pyx_PyUnicode_ConcatSafe model/utils/nms/_nms_gpu_post.c 284;" d file:
__Pyx_PyUnicode_DATA model/utils/nms/_nms_gpu_post.c 260;" d file:
__Pyx_PyUnicode_DATA model/utils/nms/_nms_gpu_post.c 274;" d file:
__Pyx_PyUnicode_FormatSafe model/utils/nms/_nms_gpu_post.c 309;" d file:
__Pyx_PyUnicode_FromCString model/utils/nms/_nms_gpu_post.c 601;" d file:
__Pyx_PyUnicode_FromString model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) {$/;" f file:
__Pyx_PyUnicode_FromStringAndSize model/utils/nms/_nms_gpu_post.c 678;" d file:
__Pyx_PyUnicode_FromStringAndSize model/utils/nms/_nms_gpu_post.c 680;" d file:
__Pyx_PyUnicode_FromUnicode model/utils/nms/_nms_gpu_post.c 607;" d file:
__Pyx_PyUnicode_FromUnicodeAndLength model/utils/nms/_nms_gpu_post.c 608;" d file:
__Pyx_PyUnicode_GET_LENGTH model/utils/nms/_nms_gpu_post.c 256;" d file:
__Pyx_PyUnicode_GET_LENGTH model/utils/nms/_nms_gpu_post.c 270;" d file:
__Pyx_PyUnicode_IS_TRUE model/utils/nms/_nms_gpu_post.c 263;" d file:
__Pyx_PyUnicode_IS_TRUE model/utils/nms/_nms_gpu_post.c 277;" d file:
__Pyx_PyUnicode_KIND model/utils/nms/_nms_gpu_post.c 259;" d file:
__Pyx_PyUnicode_KIND model/utils/nms/_nms_gpu_post.c 273;" d file:
__Pyx_PyUnicode_MAX_CHAR_VALUE model/utils/nms/_nms_gpu_post.c 258;" d file:
__Pyx_PyUnicode_MAX_CHAR_VALUE model/utils/nms/_nms_gpu_post.c 272;" d file:
__Pyx_PyUnicode_READ model/utils/nms/_nms_gpu_post.c 261;" d file:
__Pyx_PyUnicode_READ model/utils/nms/_nms_gpu_post.c 275;" d file:
__Pyx_PyUnicode_READY model/utils/nms/_nms_gpu_post.c 254;" d file:
__Pyx_PyUnicode_READY model/utils/nms/_nms_gpu_post.c 269;" d file:
__Pyx_PyUnicode_READ_CHAR model/utils/nms/_nms_gpu_post.c 257;" d file:
__Pyx_PyUnicode_READ_CHAR model/utils/nms/_nms_gpu_post.c 271;" d file:
__Pyx_PyUnicode_WRITE model/utils/nms/_nms_gpu_post.c 262;" d file:
__Pyx_PyUnicode_WRITE model/utils/nms/_nms_gpu_post.c 276;" d file:
__Pyx_Py_UNICODE_strlen model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) {$/;" f file:
__Pyx_Raise model/utils/nms/_nms_gpu_post.c /^static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) {$/;" f file:
__Pyx_Raise model/utils/nms/_nms_gpu_post.c /^static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb,$/;" f file:
__Pyx_RaiseArgtupleInvalid model/utils/nms/_nms_gpu_post.c /^static void __Pyx_RaiseArgtupleInvalid($/;" f file:
__Pyx_RaiseBufferFallbackError model/utils/nms/_nms_gpu_post.c /^ static void __Pyx_RaiseBufferFallbackError(void) {$/;" f file:
__Pyx_RaiseBufferIndexError model/utils/nms/_nms_gpu_post.c /^ static void __Pyx_RaiseBufferIndexError(int axis) {$/;" f file:
__Pyx_RaiseDoubleKeywordsError model/utils/nms/_nms_gpu_post.c /^static void __Pyx_RaiseDoubleKeywordsError($/;" f file:
__Pyx_RaiseNeedMoreValuesError model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) {$/;" f file:
__Pyx_RaiseNoneNotIterableError model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void) {$/;" f file:
__Pyx_RaiseTooManyValuesError model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) {$/;" f file:
__Pyx_RefNanny model/utils/nms/_nms_gpu_post.c /^ static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL;$/;" v file:
__Pyx_RefNannyAPIStruct model/utils/nms/_nms_gpu_post.c /^ } __Pyx_RefNannyAPIStruct;$/;" t typeref:struct:__anon8 file:
__Pyx_RefNannyDeclarations model/utils/nms/_nms_gpu_post.c 1061;" d file:
__Pyx_RefNannyDeclarations model/utils/nms/_nms_gpu_post.c 1086;" d file:
__Pyx_RefNannyFinishContext model/utils/nms/_nms_gpu_post.c 1075;" d file:
__Pyx_RefNannyFinishContext model/utils/nms/_nms_gpu_post.c 1088;" d file:
__Pyx_RefNannyImportAPI model/utils/nms/_nms_gpu_post.c /^static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) {$/;" f file:
__Pyx_RefNannySetupContext model/utils/nms/_nms_gpu_post.c 1063;" d file:
__Pyx_RefNannySetupContext model/utils/nms/_nms_gpu_post.c 1072;" d file:
__Pyx_RefNannySetupContext model/utils/nms/_nms_gpu_post.c 1087;" d file:
__Pyx_ReleaseBuffer model/utils/nms/_nms_gpu_post.c /^static void __Pyx_ReleaseBuffer(Py_buffer *view) {$/;" f file:
__Pyx_ReleaseBuffer model/utils/nms/_nms_gpu_post.c 1341;" d file:
__Pyx_SET_CIMAG model/utils/nms/_nms_gpu_post.c 1364;" d file:
__Pyx_SET_CIMAG model/utils/nms/_nms_gpu_post.c 1367;" d file:
__Pyx_SET_CREAL model/utils/nms/_nms_gpu_post.c 1363;" d file:
__Pyx_SET_CREAL model/utils/nms/_nms_gpu_post.c 1366;" d file:
__Pyx_SafeReleaseBuffer model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE void __Pyx_SafeReleaseBuffer(Py_buffer* info) {$/;" f file:
__Pyx_StringTabEntry model/utils/nms/_nms_gpu_post.c /^ const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry;$/;" t typeref:struct:__anon2 file:
__Pyx_StructField model/utils/nms/_nms_gpu_post.c /^} __Pyx_StructField;$/;" t typeref:struct:__Pyx_StructField_ file:
__Pyx_StructField_ model/utils/nms/_nms_gpu_post.c /^typedef struct __Pyx_StructField_ {$/;" s file:
__Pyx_TypeCheck model/utils/nms/_nms_gpu_post.c 1460;" d file:
__Pyx_TypeCheck model/utils/nms/_nms_gpu_post.c 1465;" d file:
__Pyx_TypeInfo model/utils/nms/_nms_gpu_post.c /^} __Pyx_TypeInfo;$/;" t typeref:struct:__anon3 file:
__Pyx_TypeInfo_nn___pyx_t_5numpy_int32_t model/utils/nms/_nms_gpu_post.c /^static __Pyx_TypeInfo __Pyx_TypeInfo_nn___pyx_t_5numpy_int32_t = { "int32_t", NULL, sizeof(__pyx_t_5numpy_int32_t), { 0 }, 0, IS_UNSIGNED(__pyx_t_5numpy_int32_t) ? 'U' : 'I', IS_UNSIGNED(__pyx_t_5numpy_int32_t), 0 };$/;" v file:
__Pyx_TypeInfo_nn___pyx_t_5numpy_uint64_t model/utils/nms/_nms_gpu_post.c /^static __Pyx_TypeInfo __Pyx_TypeInfo_nn___pyx_t_5numpy_uint64_t = { "uint64_t", NULL, sizeof(__pyx_t_5numpy_uint64_t), { 0 }, 0, IS_UNSIGNED(__pyx_t_5numpy_uint64_t) ? 'U' : 'I', IS_UNSIGNED(__pyx_t_5numpy_uint64_t), 0 };$/;" v file:
__Pyx_TypeTest model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type) {$/;" f file:
__Pyx_XCLEAR model/utils/nms/_nms_gpu_post.c 1107;" d file:
__Pyx_XDECREF model/utils/nms/_nms_gpu_post.c 1082;" d file:
__Pyx_XDECREF model/utils/nms/_nms_gpu_post.c 1094;" d file:
__Pyx_XDECREF_SET model/utils/nms/_nms_gpu_post.c 1098;" d file:
__Pyx_XGIVEREF model/utils/nms/_nms_gpu_post.c 1084;" d file:
__Pyx_XGIVEREF model/utils/nms/_nms_gpu_post.c 1096;" d file:
__Pyx_XGOTREF model/utils/nms/_nms_gpu_post.c 1083;" d file:
__Pyx_XGOTREF model/utils/nms/_nms_gpu_post.c 1095;" d file:
__Pyx_XINCREF model/utils/nms/_nms_gpu_post.c 1081;" d file:
__Pyx_XINCREF model/utils/nms/_nms_gpu_post.c 1093;" d file:
__Pyx_ZeroBuffer model/utils/nms/_nms_gpu_post.c /^static void __Pyx_ZeroBuffer(Py_buffer* buf) {$/;" f file:
__Pyx__ArgTypeTest model/utils/nms/_nms_gpu_post.c /^static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact)$/;" f file:
__Pyx__ExceptionReset model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) {$/;" f file:
__Pyx__ExceptionSave model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) {$/;" f file:
__Pyx__GetBufferAndValidate model/utils/nms/_nms_gpu_post.c /^static int __Pyx__GetBufferAndValidate($/;" f file:
__Pyx__GetException model/utils/nms/_nms_gpu_post.c /^static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) {$/;" f file:
__Pyx_c_abs_double model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE double __Pyx_c_abs_double(__pyx_t_double_complex z) {$/;" f file:
__Pyx_c_abs_double model/utils/nms/_nms_gpu_post.c 1420;" d file:
__Pyx_c_abs_double model/utils/nms/_nms_gpu_post.c 1427;" d file:
__Pyx_c_abs_float model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE float __Pyx_c_abs_float(__pyx_t_float_complex z) {$/;" f file:
__Pyx_c_abs_float model/utils/nms/_nms_gpu_post.c 1382;" d file:
__Pyx_c_abs_float model/utils/nms/_nms_gpu_post.c 1389;" d file:
__Pyx_c_conj_double model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_conj_double(__pyx_t_double_complex a) {$/;" f file:
__Pyx_c_conj_double model/utils/nms/_nms_gpu_post.c 1418;" d file:
__Pyx_c_conj_double model/utils/nms/_nms_gpu_post.c 1425;" d file:
__Pyx_c_conj_float model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_conj_float(__pyx_t_float_complex a) {$/;" f file:
__Pyx_c_conj_float model/utils/nms/_nms_gpu_post.c 1380;" d file:
__Pyx_c_conj_float model/utils/nms/_nms_gpu_post.c 1387;" d file:
__Pyx_c_diff_double model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_diff_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {$/;" f file:
__Pyx_c_diff_double model/utils/nms/_nms_gpu_post.c 1412;" d file:
__Pyx_c_diff_float model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_diff_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {$/;" f file:
__Pyx_c_diff_float model/utils/nms/_nms_gpu_post.c 1374;" d file:
__Pyx_c_eq_double model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE int __Pyx_c_eq_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {$/;" f file:
__Pyx_c_eq_double model/utils/nms/_nms_gpu_post.c 1410;" d file:
__Pyx_c_eq_float model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE int __Pyx_c_eq_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {$/;" f file:
__Pyx_c_eq_float model/utils/nms/_nms_gpu_post.c 1372;" d file:
__Pyx_c_is_zero_double model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE int __Pyx_c_is_zero_double(__pyx_t_double_complex a) {$/;" f file:
__Pyx_c_is_zero_double model/utils/nms/_nms_gpu_post.c 1417;" d file:
__Pyx_c_is_zero_double model/utils/nms/_nms_gpu_post.c 1424;" d file:
__Pyx_c_is_zero_float model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE int __Pyx_c_is_zero_float(__pyx_t_float_complex a) {$/;" f file:
__Pyx_c_is_zero_float model/utils/nms/_nms_gpu_post.c 1379;" d file:
__Pyx_c_is_zero_float model/utils/nms/_nms_gpu_post.c 1386;" d file:
__Pyx_c_neg_double model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_neg_double(__pyx_t_double_complex a) {$/;" f file:
__Pyx_c_neg_double model/utils/nms/_nms_gpu_post.c 1415;" d file:
__Pyx_c_neg_float model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_neg_float(__pyx_t_float_complex a) {$/;" f file:
__Pyx_c_neg_float model/utils/nms/_nms_gpu_post.c 1377;" d file:
__Pyx_c_pow_double model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_pow_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {$/;" f file:
__Pyx_c_pow_double model/utils/nms/_nms_gpu_post.c 1421;" d file:
__Pyx_c_pow_double model/utils/nms/_nms_gpu_post.c 1428;" d file:
__Pyx_c_pow_float model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_pow_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {$/;" f file:
__Pyx_c_pow_float model/utils/nms/_nms_gpu_post.c 1383;" d file:
__Pyx_c_pow_float model/utils/nms/_nms_gpu_post.c 1390;" d file:
__Pyx_c_prod_double model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_prod_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {$/;" f file:
__Pyx_c_prod_double model/utils/nms/_nms_gpu_post.c 1413;" d file:
__Pyx_c_prod_float model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_prod_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {$/;" f file:
__Pyx_c_prod_float model/utils/nms/_nms_gpu_post.c 1375;" d file:
__Pyx_c_quot_double model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {$/;" f file:
__Pyx_c_quot_double model/utils/nms/_nms_gpu_post.c 1414;" d file:
__Pyx_c_quot_float model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {$/;" f file:
__Pyx_c_quot_float model/utils/nms/_nms_gpu_post.c 1376;" d file:
__Pyx_c_sum_double model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_sum_double(__pyx_t_double_complex a, __pyx_t_double_complex b) {$/;" f file:
__Pyx_c_sum_double model/utils/nms/_nms_gpu_post.c 1411;" d file:
__Pyx_c_sum_float model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_sum_float(__pyx_t_float_complex a, __pyx_t_float_complex b) {$/;" f file:
__Pyx_c_sum_float model/utils/nms/_nms_gpu_post.c 1373;" d file:
__Pyx_check_binary_version model/utils/nms/_nms_gpu_post.c /^ static int __Pyx_check_binary_version(void) {$/;" f file:
__Pyx_div_int model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE int __Pyx_div_int(int a, int b) {$/;" f file:
__Pyx_fits_Py_ssize_t model/utils/nms/_nms_gpu_post.c 546;" d file:
__Pyx_init_sys_getdefaultencoding_params model/utils/nms/_nms_gpu_post.c /^static int __Pyx_init_sys_getdefaultencoding_params(void) {$/;" f file:
__Pyx_inner_PyErr_GivenExceptionMatches2 model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) {$/;" f file:
__Pyx_inner_PyErr_GivenExceptionMatches2 model/utils/nms/_nms_gpu_post.c /^static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) {$/;" f file:
__Pyx_long_cast model/utils/nms/_nms_gpu_post.c 545;" d file:
__Pyx_minusones model/utils/nms/_nms_gpu_post.c /^static Py_ssize_t __Pyx_minusones[] = { -1, -1, -1, -1, -1, -1, -1, -1 };$/;" v file:
__Pyx_mod_int model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE int __Pyx_mod_int(int a, int b) {$/;" f file:
__Pyx_pad_double model/utils/nms/_nms_gpu_post.c /^typedef struct { double x; char c; } __Pyx_pad_double;$/;" t typeref:struct:__anon25 file:
__Pyx_pad_float model/utils/nms/_nms_gpu_post.c /^typedef struct { float x; char c; } __Pyx_pad_float;$/;" t typeref:struct:__anon24 file:
__Pyx_pad_int model/utils/nms/_nms_gpu_post.c /^typedef struct { int x; char c; } __Pyx_pad_int;$/;" t typeref:struct:__anon22 file:
__Pyx_pad_long model/utils/nms/_nms_gpu_post.c /^typedef struct { long x; char c; } __Pyx_pad_long;$/;" t typeref:struct:__anon23 file:
__Pyx_pad_longdouble model/utils/nms/_nms_gpu_post.c /^typedef struct { long double x; char c; } __Pyx_pad_longdouble;$/;" t typeref:struct:__anon26 file:
__Pyx_pad_longlong model/utils/nms/_nms_gpu_post.c /^typedef struct { PY_LONG_LONG x; char c; } __Pyx_pad_longlong;$/;" t typeref:struct:__anon28 file:
__Pyx_pad_short model/utils/nms/_nms_gpu_post.c /^typedef struct { short x; char c; } __Pyx_pad_short;$/;" t typeref:struct:__anon21 file:
__Pyx_pad_void_p model/utils/nms/_nms_gpu_post.c /^typedef struct { void *x; char c; } __Pyx_pad_void_p;$/;" t typeref:struct:__anon27 file:
__Pyx_pretend_to_initialize model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; }$/;" f file:
__Pyx_sst_abs model/utils/nms/_nms_gpu_post.c 558;" d file:
__Pyx_sst_abs model/utils/nms/_nms_gpu_post.c 560;" d file:
__Pyx_sst_abs model/utils/nms/_nms_gpu_post.c 562;" d file:
__Pyx_sst_abs model/utils/nms/_nms_gpu_post.c 564;" d file:
__Pyx_sst_abs model/utils/nms/_nms_gpu_post.c 566;" d file:
__Pyx_sst_abs model/utils/nms/_nms_gpu_post.c 568;" d file:
__Pyx_sst_abs model/utils/nms/_nms_gpu_post.c 570;" d file:
__Pyx_st_double model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; double x; } __Pyx_st_double;$/;" t typeref:struct:__anon17 file:
__Pyx_st_float model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; float x; } __Pyx_st_float;$/;" t typeref:struct:__anon16 file:
__Pyx_st_int model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; int x; } __Pyx_st_int;$/;" t typeref:struct:__anon14 file:
__Pyx_st_long model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; long x; } __Pyx_st_long;$/;" t typeref:struct:__anon15 file:
__Pyx_st_longdouble model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; long double x; } __Pyx_st_longdouble;$/;" t typeref:struct:__anon18 file:
__Pyx_st_longlong model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; PY_LONG_LONG x; } __Pyx_st_longlong;$/;" t typeref:struct:__anon20 file:
__Pyx_st_short model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; short x; } __Pyx_st_short;$/;" t typeref:struct:__anon13 file:
__Pyx_st_void_p model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; void *x; } __Pyx_st_void_p;$/;" t typeref:struct:__anon19 file:
__Pyx_sys_getdefaultencoding_not_ascii model/utils/nms/_nms_gpu_post.c /^static int __Pyx_sys_getdefaultencoding_not_ascii;$/;" v file:
__Pyx_truncl model/utils/nms/_nms_gpu_post.c 502;" d file:
__Pyx_truncl model/utils/nms/_nms_gpu_post.c 504;" d file:
__Pyx_uchar_cast model/utils/nms/_nms_gpu_post.c 544;" d file:
__Pyx_void_to_None model/utils/nms/_nms_gpu_post.c 435;" d file:
__Pyx_zeros model/utils/nms/_nms_gpu_post.c /^static Py_ssize_t __Pyx_zeros[] = { 0, 0, 0, 0, 0, 0, 0, 0 };$/;" v file:
__call__ data/dataset.py /^ def __call__(self, in_data):$/;" m class:Transform file:
__call__ model/utils/creator_tool.py /^ def __call__(self, bbox, anchor, img_size):$/;" m class:AnchorTargetCreator file:
__call__ model/utils/creator_tool.py /^ def __call__(self, loc, score,$/;" m class:ProposalCreator file:
__call__ model/utils/creator_tool.py /^ def __call__(self, roi, bbox, label,$/;" m class:ProposalTargetCreator file:
__cdecl model/utils/nms/_nms_gpu_post.c 21;" d file:
__fastcall model/utils/nms/_nms_gpu_post.c 24;" d file:
__getattr__ utils/vis_tool.py /^ def __getattr__(self, name):$/;" m class:Visualizer file:
__getitem__ data/dataset.py /^ def __getitem__(self, idx):$/;" m class:Dataset file:
__getitem__ data/dataset.py /^ def __getitem__(self, idx):$/;" m class:TestDataset file:
__getitem__ data/voc_dataset.py /^ __getitem__ = get_example$/;" v class:VOCBboxDataset
__has_attribute model/utils/nms/_nms_gpu_post.c 375;" d file:
__has_cpp_attribute model/utils/nms/_nms_gpu_post.c 378;" d file:
__init__ data/dataset.py /^ def __init__(self, min_size=600, max_size=1000):$/;" m class:Transform
__init__ data/dataset.py /^ def __init__(self, opt):$/;" m class:Dataset
__init__ data/dataset.py /^ def __init__(self, opt, split='test', use_difficult=True):$/;" m class:TestDataset
__init__ data/voc_dataset.py /^ def __init__(self, data_dir, split='trainval',$/;" m class:VOCBboxDataset
__init__ model/faster_rcnn.py /^ def __init__(self, extractor, rpn, head,$/;" m class:FasterRCNN
__init__ model/faster_rcnn_vgg16.py /^ def __init__(self, n_class, roi_size, spatial_scale,$/;" m class:VGG16RoIHead
__init__ model/faster_rcnn_vgg16.py /^ def __init__(self,$/;" m class:FasterRCNNVGG16
__init__ model/faster_rcnn_vgg16_backup.py /^ def __init__(self, n_class, roi_size, spatial_scale,$/;" m class:VGG16RoIHead
__init__ model/faster_rcnn_vgg16_backup.py /^ def __init__(self,$/;" m class:FasterRCNNVGG16
__init__ model/region_proposal_network.py /^ def __init__($/;" m class:RegionProposalNetwork
__init__ model/roi_module.py /^ def __init__(self, outh, outw, spatial_scale):$/;" m class:RoI
__init__ model/roi_module.py /^ def __init__(self, outh, outw, spatial_scale):$/;" m class:RoIPooling2D
__init__ model/utils/creator_tool.py /^ def __init__(self,$/;" m class:AnchorTargetCreator
__init__ model/utils/creator_tool.py /^ def __init__(self,$/;" m class:ProposalCreator
__init__ model/utils/creator_tool.py /^ def __init__(self,$/;" m class:ProposalTargetCreator
__init__ trainer.py /^ def __init__(self, faster_rcnn):$/;" m class:FasterRCNNTrainer
__init__ utils/vis_tool.py /^ def __init__(self, env='default', **kwargs):$/;" m class:Visualizer
__len__ data/dataset.py /^ def __len__(self):$/;" m class:Dataset file:
__len__ data/dataset.py /^ def __len__(self):$/;" m class:TestDataset file:
__len__ data/voc_dataset.py /^ def __len__(self):$/;" m class:VOCBboxDataset file:
__pyx_PyFloat_AsDouble model/utils/nms/_nms_gpu_post.c 620;" d file:
__pyx_PyFloat_AsDouble model/utils/nms/_nms_gpu_post.c 622;" d file:
__pyx_PyFloat_AsFloat model/utils/nms/_nms_gpu_post.c 624;" d file:
__pyx_b model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_b;$/;" v file:
__pyx_bisect_code_objects model/utils/nms/_nms_gpu_post.c /^ static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) {$/;" f file:
__pyx_buffmt_parse_array model/utils/nms/_nms_gpu_post.c /^__pyx_buffmt_parse_array(__Pyx_BufFmt_Context* ctx, const char** tsp)$/;" f file:
__pyx_builtin_ImportError model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_builtin_ImportError;$/;" v file:
__pyx_builtin_RuntimeError model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_builtin_RuntimeError;$/;" v file:
__pyx_builtin_ValueError model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_builtin_ValueError;$/;" v file:
__pyx_builtin_range model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_builtin_range;$/;" v file:
__pyx_cfilenm model/utils/nms/_nms_gpu_post.c /^static const char * __pyx_cfilenm= __FILE__;$/;" v file:
__pyx_clineno model/utils/nms/_nms_gpu_post.c /^static int __pyx_clineno = 0;$/;" v file:
__pyx_code_cache model/utils/nms/_nms_gpu_post.c /^static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL};$/;" v typeref:struct:__Pyx_CodeObjectCache file:
__pyx_codeobj__11 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_codeobj__11;$/;" v file:
__pyx_cython_runtime model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_cython_runtime;$/;" v file:
__pyx_d model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_d;$/;" v file:
__pyx_empty_bytes model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_empty_bytes;$/;" v file:
__pyx_empty_tuple model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_empty_tuple;$/;" v file:
__pyx_empty_unicode model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_empty_unicode;$/;" v file:
__pyx_f model/utils/nms/_nms_gpu_post.c /^static const char *__pyx_f[] = {$/;" v file:
__pyx_f_5numpy_PyArray_MultiIterNew1 model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__pyx_v_a) {$/;" f file:
__pyx_f_5numpy_PyArray_MultiIterNew2 model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__pyx_v_a, PyObject *__pyx_v_b) {$/;" f file:
__pyx_f_5numpy_PyArray_MultiIterNew3 model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c) {$/;" f file:
__pyx_f_5numpy_PyArray_MultiIterNew4 model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c, PyObject *__pyx_v_d) {$/;" f file:
__pyx_f_5numpy_PyArray_MultiIterNew5 model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c, PyObject *__pyx_v_d, PyObject *__pyx_v_e) {$/;" f file:
__pyx_f_5numpy_PyDataType_SHAPE model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__pyx_v_d) {$/;" f file:
__pyx_f_5numpy__util_dtypestring model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE char *__pyx_f_5numpy__util_dtypestring(PyArray_Descr *__pyx_v_descr, char *__pyx_v_f, char *__pyx_v_end, int *__pyx_v_offset) {$/;" f file:
__pyx_f_5numpy_get_array_base model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__pyx_v_arr) {$/;" f file:
__pyx_f_5numpy_import_array model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {$/;" f file:
__pyx_f_5numpy_import_ufunc model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {$/;" f file:
__pyx_f_5numpy_import_umath model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {$/;" f file:
__pyx_f_5numpy_set_array_base model/utils/nms/_nms_gpu_post.c /^static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {$/;" f file:
__pyx_filename model/utils/nms/_nms_gpu_post.c /^static const char *__pyx_filename;$/;" v file:
__pyx_find_code_object model/utils/nms/_nms_gpu_post.c /^static PyCodeObject *__pyx_find_code_object(int code_line) {$/;" f file:
__pyx_insert_code_object model/utils/nms/_nms_gpu_post.c /^static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) {$/;" f file:
__pyx_k_Format_string_allocated_too_shor model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_Format_string_allocated_too_shor[] = "Format string allocated too short, see comment in numpy.pxd";$/;" v file:
__pyx_k_Format_string_allocated_too_shor_2 model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_Format_string_allocated_too_shor_2[] = "Format string allocated too short.";$/;" v file:
__pyx_k_ImportError model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_ImportError[] = "ImportError";$/;" v file:
__pyx_k_Non_native_byte_order_not_suppor model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_Non_native_byte_order_not_suppor[] = "Non-native byte order not supported";$/;" v file:
__pyx_k_RuntimeError model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_RuntimeError[] = "RuntimeError";$/;" v file:
__pyx_k_ValueError model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_ValueError[] = "ValueError";$/;" v file:
__pyx_k_cline_in_traceback model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback";$/;" v file:
__pyx_k_col_blocks model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_col_blocks[] = "col_blocks";$/;" v file:
__pyx_k_dtype model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_dtype[] = "dtype";$/;" v file:
__pyx_k_i model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_i[] = "i";$/;" v file:
__pyx_k_import model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_import[] = "__import__";$/;" v file:
__pyx_k_inblock model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_inblock[] = "inblock";$/;" v file:
__pyx_k_index model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_index[] = "index";$/;" v file:
__pyx_k_int32 model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_int32[] = "int32";$/;" v file:
__pyx_k_j model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_j[] = "j";$/;" v file:
__pyx_k_main model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_main[] = "__main__";$/;" v file:
__pyx_k_mask model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_mask[] = "mask";$/;" v file:
__pyx_k_n_bbox model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_n_bbox[] = "n_bbox";$/;" v file:
__pyx_k_n_selection model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_n_selection[] = "n_selection";$/;" v file:
__pyx_k_nblock model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_nblock[] = "nblock";$/;" v file:
__pyx_k_ndarray_is_not_C_contiguous model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_ndarray_is_not_C_contiguous[] = "ndarray is not C contiguous";$/;" v file:
__pyx_k_ndarray_is_not_Fortran_contiguou model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_ndarray_is_not_Fortran_contiguou[] = "ndarray is not Fortran contiguous";$/;" v file:
__pyx_k_nms_gpu_post model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_nms_gpu_post[] = "_nms_gpu_post";$/;" v file:
__pyx_k_nms_gpu_post_pyx model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_nms_gpu_post_pyx[] = "_nms_gpu_post.pyx";$/;" v file:
__pyx_k_np model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_np[] = "np";$/;" v file:
__pyx_k_numpy model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_numpy[] = "numpy";$/;" v file:
__pyx_k_numpy_core_multiarray_failed_to model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_numpy_core_multiarray_failed_to[] = "numpy.core.multiarray failed to import";$/;" v file:
__pyx_k_numpy_core_umath_failed_to_impor model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_numpy_core_umath_failed_to_impor[] = "numpy.core.umath failed to import";$/;" v file:
__pyx_k_one_ull model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_one_ull[] = "one_ull";$/;" v file:
__pyx_k_range model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_range[] = "range";$/;" v file:
__pyx_k_remv model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_remv[] = "remv";$/;" v file:
__pyx_k_selection model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_selection[] = "selection";$/;" v file:
__pyx_k_test model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_test[] = "__test__";$/;" v file:
__pyx_k_threads_per_block model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_threads_per_block[] = "threads_per_block";$/;" v file:
__pyx_k_uint64 model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_uint64[] = "uint64";$/;" v file:
__pyx_k_unknown_dtype_code_in_numpy_pxd model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_unknown_dtype_code_in_numpy_pxd[] = "unknown dtype code in numpy.pxd (%d)";$/;" v file:
__pyx_k_zeros model/utils/nms/_nms_gpu_post.c /^static const char __pyx_k_zeros[] = "zeros";$/;" v file:
__pyx_kp_s_nms_gpu_post_pyx model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_kp_s_nms_gpu_post_pyx;$/;" v file:
__pyx_kp_s_numpy_core_multiarray_failed_to model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_kp_s_numpy_core_multiarray_failed_to;$/;" v file:
__pyx_kp_s_numpy_core_umath_failed_to_impor model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_kp_s_numpy_core_umath_failed_to_impor;$/;" v file:
__pyx_kp_u_Format_string_allocated_too_shor model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_kp_u_Format_string_allocated_too_shor;$/;" v file:
__pyx_kp_u_Format_string_allocated_too_shor_2 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_kp_u_Format_string_allocated_too_shor_2;$/;" v file:
__pyx_kp_u_Non_native_byte_order_not_suppor model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_kp_u_Non_native_byte_order_not_suppor;$/;" v file:
__pyx_kp_u_ndarray_is_not_C_contiguous model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_kp_u_ndarray_is_not_C_contiguous;$/;" v file:
__pyx_kp_u_ndarray_is_not_Fortran_contiguou model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_kp_u_ndarray_is_not_Fortran_contiguou;$/;" v file:
__pyx_kp_u_unknown_dtype_code_in_numpy_pxd model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_kp_u_unknown_dtype_code_in_numpy_pxd;$/;" v file:
__pyx_lineno model/utils/nms/_nms_gpu_post.c /^static int __pyx_lineno;$/;" v file:
__pyx_m model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_m = NULL;$/;" v file:
__pyx_mdef_13_nms_gpu_post_1_nms_gpu_post model/utils/nms/_nms_gpu_post.c /^static PyMethodDef __pyx_mdef_13_nms_gpu_post_1_nms_gpu_post = {"_nms_gpu_post", (PyCFunction)__pyx_pw_13_nms_gpu_post_1_nms_gpu_post, METH_VARARGS|METH_KEYWORDS, 0};$/;" v file:
__pyx_methods model/utils/nms/_nms_gpu_post.c /^static PyMethodDef __pyx_methods[] = {$/;" v file:
__pyx_module_is_main__nms_gpu_post model/utils/nms/_nms_gpu_post.c /^int __pyx_module_is_main__nms_gpu_post = 0;$/;" v
__pyx_moduledef model/utils/nms/_nms_gpu_post.c /^static struct PyModuleDef __pyx_moduledef = {$/;" v typeref:struct:PyModuleDef file:
__pyx_moduledef_slots model/utils/nms/_nms_gpu_post.c /^static PyModuleDef_Slot __pyx_moduledef_slots[] = {$/;" v file:
__pyx_n_s_ImportError model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_ImportError;$/;" v file:
__pyx_n_s_RuntimeError model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_RuntimeError;$/;" v file:
__pyx_n_s_ValueError model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_ValueError;$/;" v file:
__pyx_n_s_cline_in_traceback model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_cline_in_traceback;$/;" v file:
__pyx_n_s_col_blocks model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_col_blocks;$/;" v file:
__pyx_n_s_dtype model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_dtype;$/;" v file:
__pyx_n_s_i model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_i;$/;" v file:
__pyx_n_s_import model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_import;$/;" v file:
__pyx_n_s_inblock model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_inblock;$/;" v file:
__pyx_n_s_index model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_index;$/;" v file:
__pyx_n_s_int32 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_int32;$/;" v file:
__pyx_n_s_j model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_j;$/;" v file:
__pyx_n_s_main model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_main;$/;" v file:
__pyx_n_s_mask model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_mask;$/;" v file:
__pyx_n_s_n_bbox model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_n_bbox;$/;" v file:
__pyx_n_s_n_selection model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_n_selection;$/;" v file:
__pyx_n_s_nblock model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_nblock;$/;" v file:
__pyx_n_s_nms_gpu_post model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_nms_gpu_post;$/;" v file:
__pyx_n_s_np model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_np;$/;" v file:
__pyx_n_s_numpy model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_numpy;$/;" v file:
__pyx_n_s_one_ull model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_one_ull;$/;" v file:
__pyx_n_s_range model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_range;$/;" v file:
__pyx_n_s_remv model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_remv;$/;" v file:
__pyx_n_s_selection model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_selection;$/;" v file:
__pyx_n_s_test model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_test;$/;" v file:
__pyx_n_s_threads_per_block model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_threads_per_block;$/;" v file:
__pyx_n_s_uint64 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_uint64;$/;" v file:
__pyx_n_s_zeros model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_n_s_zeros;$/;" v file:
__pyx_pf_13_nms_gpu_post__nms_gpu_post model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_pf_13_nms_gpu_post__nms_gpu_post(CYTHON_UNUSED PyObject *__pyx_self, PyArrayObject *__pyx_v_mask, int __pyx_v_n_bbox, int __pyx_v_threads_per_block, int __pyx_v_col_blocks) {$/;" f file:
__pyx_pf_5numpy_7ndarray_2__releasebuffer__ model/utils/nms/_nms_gpu_post.c /^static void __pyx_pf_5numpy_7ndarray_2__releasebuffer__(PyArrayObject *__pyx_v_self, Py_buffer *__pyx_v_info) {$/;" f file:
__pyx_pf_5numpy_7ndarray___getbuffer__ model/utils/nms/_nms_gpu_post.c /^static int __pyx_pf_5numpy_7ndarray___getbuffer__(PyArrayObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) {$/;" f file:
__pyx_ptype_5numpy_broadcast model/utils/nms/_nms_gpu_post.c /^static PyTypeObject *__pyx_ptype_5numpy_broadcast = 0;$/;" v file:
__pyx_ptype_5numpy_dtype model/utils/nms/_nms_gpu_post.c /^static PyTypeObject *__pyx_ptype_5numpy_dtype = 0;$/;" v file:
__pyx_ptype_5numpy_flatiter model/utils/nms/_nms_gpu_post.c /^static PyTypeObject *__pyx_ptype_5numpy_flatiter = 0;$/;" v file:
__pyx_ptype_5numpy_ndarray model/utils/nms/_nms_gpu_post.c /^static PyTypeObject *__pyx_ptype_5numpy_ndarray = 0;$/;" v file:
__pyx_ptype_5numpy_ufunc model/utils/nms/_nms_gpu_post.c /^static PyTypeObject *__pyx_ptype_5numpy_ufunc = 0;$/;" v file:
__pyx_ptype_7cpython_4type_type model/utils/nms/_nms_gpu_post.c /^static PyTypeObject *__pyx_ptype_7cpython_4type_type = 0;$/;" v file:
__pyx_pw_13_nms_gpu_post_1_nms_gpu_post model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_pw_13_nms_gpu_post_1_nms_gpu_post(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {$/;" f file:
__pyx_pw_5numpy_7ndarray_1__getbuffer__ model/utils/nms/_nms_gpu_post.c /^static CYTHON_UNUSED int __pyx_pw_5numpy_7ndarray_1__getbuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) {$/;" f file:
__pyx_pw_5numpy_7ndarray_3__releasebuffer__ model/utils/nms/_nms_gpu_post.c /^static CYTHON_UNUSED void __pyx_pw_5numpy_7ndarray_3__releasebuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info) {$/;" f file:
__pyx_string_tab model/utils/nms/_nms_gpu_post.c /^static __Pyx_StringTabEntry __pyx_string_tab[] = {$/;" v file:
__pyx_t_5numpy_cdouble_t model/utils/nms/_nms_gpu_post.c /^typedef npy_cdouble __pyx_t_5numpy_cdouble_t;$/;" t file:
__pyx_t_5numpy_cfloat_t model/utils/nms/_nms_gpu_post.c /^typedef npy_cfloat __pyx_t_5numpy_cfloat_t;$/;" t file:
__pyx_t_5numpy_clongdouble_t model/utils/nms/_nms_gpu_post.c /^typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;$/;" t file:
__pyx_t_5numpy_complex_t model/utils/nms/_nms_gpu_post.c /^typedef npy_cdouble __pyx_t_5numpy_complex_t;$/;" t file:
__pyx_t_5numpy_double_t model/utils/nms/_nms_gpu_post.c /^typedef npy_double __pyx_t_5numpy_double_t;$/;" t file:
__pyx_t_5numpy_float32_t model/utils/nms/_nms_gpu_post.c /^typedef npy_float32 __pyx_t_5numpy_float32_t;$/;" t file:
__pyx_t_5numpy_float64_t model/utils/nms/_nms_gpu_post.c /^typedef npy_float64 __pyx_t_5numpy_float64_t;$/;" t file:
__pyx_t_5numpy_float_t model/utils/nms/_nms_gpu_post.c /^typedef npy_double __pyx_t_5numpy_float_t;$/;" t file:
__pyx_t_5numpy_int16_t model/utils/nms/_nms_gpu_post.c /^typedef npy_int16 __pyx_t_5numpy_int16_t;$/;" t file:
__pyx_t_5numpy_int32_t model/utils/nms/_nms_gpu_post.c /^typedef npy_int32 __pyx_t_5numpy_int32_t;$/;" t file:
__pyx_t_5numpy_int64_t model/utils/nms/_nms_gpu_post.c /^typedef npy_int64 __pyx_t_5numpy_int64_t;$/;" t file:
__pyx_t_5numpy_int8_t model/utils/nms/_nms_gpu_post.c /^typedef npy_int8 __pyx_t_5numpy_int8_t;$/;" t file:
__pyx_t_5numpy_int_t model/utils/nms/_nms_gpu_post.c /^typedef npy_long __pyx_t_5numpy_int_t;$/;" t file:
__pyx_t_5numpy_intp_t model/utils/nms/_nms_gpu_post.c /^typedef npy_intp __pyx_t_5numpy_intp_t;$/;" t file:
__pyx_t_5numpy_long_t model/utils/nms/_nms_gpu_post.c /^typedef npy_longlong __pyx_t_5numpy_long_t;$/;" t file:
__pyx_t_5numpy_longdouble_t model/utils/nms/_nms_gpu_post.c /^typedef npy_longdouble __pyx_t_5numpy_longdouble_t;$/;" t file:
__pyx_t_5numpy_longlong_t model/utils/nms/_nms_gpu_post.c /^typedef npy_longlong __pyx_t_5numpy_longlong_t;$/;" t file:
__pyx_t_5numpy_uint16_t model/utils/nms/_nms_gpu_post.c /^typedef npy_uint16 __pyx_t_5numpy_uint16_t;$/;" t file:
__pyx_t_5numpy_uint32_t model/utils/nms/_nms_gpu_post.c /^typedef npy_uint32 __pyx_t_5numpy_uint32_t;$/;" t file:
__pyx_t_5numpy_uint64_t model/utils/nms/_nms_gpu_post.c /^typedef npy_uint64 __pyx_t_5numpy_uint64_t;$/;" t file:
__pyx_t_5numpy_uint8_t model/utils/nms/_nms_gpu_post.c /^typedef npy_uint8 __pyx_t_5numpy_uint8_t;$/;" t file:
__pyx_t_5numpy_uint_t model/utils/nms/_nms_gpu_post.c /^typedef npy_ulong __pyx_t_5numpy_uint_t;$/;" t file:
__pyx_t_5numpy_uintp_t model/utils/nms/_nms_gpu_post.c /^typedef npy_uintp __pyx_t_5numpy_uintp_t;$/;" t file:
__pyx_t_5numpy_ulong_t model/utils/nms/_nms_gpu_post.c /^typedef npy_ulonglong __pyx_t_5numpy_ulong_t;$/;" t file:
__pyx_t_5numpy_ulonglong_t model/utils/nms/_nms_gpu_post.c /^typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;$/;" t file:
__pyx_t_double_complex model/utils/nms/_nms_gpu_post.c /^ typedef ::std::complex< double > __pyx_t_double_complex;$/;" t class:std file:
__pyx_t_double_complex model/utils/nms/_nms_gpu_post.c /^ typedef double _Complex __pyx_t_double_complex;$/;" t file:
__pyx_t_double_complex model/utils/nms/_nms_gpu_post.c /^ typedef struct { double real, imag; } __pyx_t_double_complex;$/;" t typeref:struct:__anon7 file:
__pyx_t_double_complex_from_parts model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) {$/;" f file:
__pyx_t_float_complex model/utils/nms/_nms_gpu_post.c /^ typedef ::std::complex< float > __pyx_t_float_complex;$/;" t class:std file:
__pyx_t_float_complex model/utils/nms/_nms_gpu_post.c /^ typedef float _Complex __pyx_t_float_complex;$/;" t file:
__pyx_t_float_complex model/utils/nms/_nms_gpu_post.c /^ typedef struct { float real, imag; } __pyx_t_float_complex;$/;" t typeref:struct:__anon6 file:
__pyx_t_float_complex_from_parts model/utils/nms/_nms_gpu_post.c /^ static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) {$/;" f file:
__pyx_tuple_ model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_tuple_;$/;" v file:
__pyx_tuple__10 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_tuple__10;$/;" v file:
__pyx_tuple__2 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_tuple__2;$/;" v file:
__pyx_tuple__3 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_tuple__3;$/;" v file:
__pyx_tuple__4 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_tuple__4;$/;" v file:
__pyx_tuple__5 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_tuple__5;$/;" v file:
__pyx_tuple__6 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_tuple__6;$/;" v file:
__pyx_tuple__7 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_tuple__7;$/;" v file:
__pyx_tuple__8 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_tuple__8;$/;" v file:
__pyx_tuple__9 model/utils/nms/_nms_gpu_post.c /^static PyObject *__pyx_tuple__9;$/;" v file:
__stdcall model/utils/nms/_nms_gpu_post.c 18;" d file:
__test model/utils/bbox_tools.py /^def __test():$/;" f file:
_calc_ious model/utils/creator_tool.py /^ def _calc_ious(self, anchor, bbox, inside_index):$/;" m class:AnchorTargetCreator
_call_nms_kernel model/utils/nms/non_maximum_suppression.py /^def _call_nms_kernel(bbox, thresh):$/;" f
_create_label model/utils/creator_tool.py /^ def _create_label(self, inside_index, anchor, bbox):$/;" m class:AnchorTargetCreator
_enumerate_shifted_anchor model/region_proposal_network.py /^def _enumerate_shifted_anchor(anchor_base, feat_stride, height, width):$/;" f
_enumerate_shifted_anchor_torch model/region_proposal_network.py /^def _enumerate_shifted_anchor_torch(anchor_base, feat_stride, height, width):$/;" f
_fast_rcnn_loc_loss trainer.py /^def _fast_rcnn_loc_loss(pred_loc, gt_loc, gt_label, sigma):$/;" f
_get_inside_index model/utils/creator_tool.py /^def _get_inside_index(anchor, H, W):$/;" f
_load_kernel model/utils/nms/non_maximum_suppression.py /^def _load_kernel(kernel_name, code, options=()):$/;" f
_nms_gpu_post model/utils/nms/_nms_gpu_post.pyx /^def _nms_gpu_post(np.ndarray[np.uint64_t, ndim=1] mask,$/;" f
_nms_gpu_post model/utils/nms/_nms_gpu_post_py.py /^def _nms_gpu_post( mask,$/;" f
_non_maximum_suppression_gpu model/utils/nms/non_maximum_suppression.py /^def _non_maximum_suppression_gpu(bbox, thresh, score=None, limit=None):$/;" f
_parse utils/config.py /^ def _parse(self, kwargs):$/;" m class:Config
_slice_to_bounds data/util.py /^def _slice_to_bounds(slice_):$/;" f
_smooth_l1_loss trainer.py /^def _smooth_l1_loss(x, t, in_weight, sigma):$/;" f
_state_dict utils/config.py /^ def _state_dict(self):$/;" m class:Config
_suppress model/faster_rcnn.py /^ def _suppress(self, raw_cls_bbox, raw_prob):$/;" m class:FasterRCNN
_unmap model/utils/creator_tool.py /^def _unmap(data, count, index, fill=0):$/;" f
am_aiter model/utils/nms/_nms_gpu_post.c /^ unaryfunc am_aiter;$/;" m struct:__anon1 file:
am_anext model/utils/nms/_nms_gpu_post.c /^ unaryfunc am_anext;$/;" m struct:__anon1 file:
am_await model/utils/nms/_nms_gpu_post.c /^ unaryfunc am_await;$/;" m struct:__anon1 file:
arraysize model/utils/nms/_nms_gpu_post.c /^ size_t arraysize[8];$/;" m struct:__anon3 file:
backward model/roi_module.py /^ def backward(self, grad_output):$/;" m class:RoI
bbox2loc model/utils/bbox_tools.py /^def bbox2loc(src_bbox, dst_bbox):$/;" f
bbox_iou model/utils/bbox_tools.py /^def bbox_iou(bbox_a, bbox_b):$/;" f
c model/utils/nms/_nms_gpu_post.c /^typedef struct { PY_LONG_LONG x; char c; } __Pyx_pad_longlong;$/;" m struct:__anon28 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; PY_LONG_LONG x; } __Pyx_st_longlong;$/;" m struct:__anon20 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; double x; } __Pyx_st_double;$/;" m struct:__anon17 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; float x; } __Pyx_st_float;$/;" m struct:__anon16 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; int x; } __Pyx_st_int;$/;" m struct:__anon14 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; long double x; } __Pyx_st_longdouble;$/;" m struct:__anon18 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; long x; } __Pyx_st_long;$/;" m struct:__anon15 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; short x; } __Pyx_st_short;$/;" m struct:__anon13 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; void *x; } __Pyx_st_void_p;$/;" m struct:__anon19 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { double x; char c; } __Pyx_pad_double;$/;" m struct:__anon25 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { float x; char c; } __Pyx_pad_float;$/;" m struct:__anon24 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { int x; char c; } __Pyx_pad_int;$/;" m struct:__anon22 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { long double x; char c; } __Pyx_pad_longdouble;$/;" m struct:__anon26 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { long x; char c; } __Pyx_pad_long;$/;" m struct:__anon23 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { short x; char c; } __Pyx_pad_short;$/;" m struct:__anon21 file:
c model/utils/nms/_nms_gpu_post.c /^typedef struct { void *x; char c; } __Pyx_pad_void_p;$/;" m struct:__anon27 file:
caffe_normalize data/dataset.py /^def caffe_normalize(img):$/;" f
caffe_pretrain utils/config.py /^ caffe_pretrain = False # use caffe pretrained model instead of torchvision$/;" v class:Config
caffe_pretrain_path utils/config.py /^ caffe_pretrain_path = '.\/vgg16_caffe.pth'$/;" v class:Config
calc_detection_voc_ap utils/eval_tool.py /^def calc_detection_voc_ap(prec, rec, use_07_metric=False):$/;" f
calc_detection_voc_prec_rec utils/eval_tool.py /^def calc_detection_voc_prec_rec($/;" f
cmdclass model/utils/nms/build.py /^ cmdclass={'build_ext': build_ext},$/;" v
code_line model/utils/nms/_nms_gpu_post.c /^ int code_line;$/;" m struct:__anon9 file:
code_object model/utils/nms/_nms_gpu_post.c /^ PyCodeObject* code_object;$/;" m struct:__anon9 file:
count model/utils/nms/_nms_gpu_post.c /^ int count;$/;" m struct:__Pyx_CodeObjectCache file:
crop_bbox data/util.py /^def crop_bbox($/;" f
data model/utils/nms/_nms_gpu_post.c /^ char *data;$/;" m struct:__anon12 file:
data utils/config.py /^ data = 'voc'$/;" v class:Config
debug_file utils/config.py /^ debug_file = '\/tmp\/debugf'$/;" v class:Config
decom_alexnet model/faster_rcnn_vgg16.py /^def decom_alexnet():$/;" f
decom_vgg16 model/faster_rcnn_vgg16.py /^def decom_vgg16():$/;" f
decom_vgg16 model/faster_rcnn_vgg16_backup.py /^def decom_vgg16():$/;" f
diminfo model/utils/nms/_nms_gpu_post.c /^ __Pyx_Buf_DimInfo diminfo[8];$/;" m struct:__anon12 file:
enc_count model/utils/nms/_nms_gpu_post.c /^ size_t new_count, enc_count;$/;" m struct:__anon5 file:
enc_packmode model/utils/nms/_nms_gpu_post.c /^ char enc_packmode;$/;" m struct:__anon5 file:
enc_type model/utils/nms/_nms_gpu_post.c /^ char enc_type;$/;" m struct:__anon5 file:
encoding model/utils/nms/_nms_gpu_post.c /^typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding;$/;" m struct:__anon2 file:
entries model/utils/nms/_nms_gpu_post.c /^ __Pyx_CodeObjectCacheEntry* entries;$/;" m struct:__Pyx_CodeObjectCache file:
env utils/config.py /^ env = 'faster-rcnn-nyuv2' # visdom env$/;" v class:Config
epoch utils/config.py /^ epoch = 60$/;" v class:Config
eval misc/train_fast.py /^def eval(dataloader, faster_rcnn, test_num=10000):$/;" f
eval train.py /^def eval(dataloader, faster_rcnn, test_num=10000):$/;" f
eval_detection_voc utils/eval_tool.py /^def eval_detection_voc($/;" f
ext_modules model/utils/nms/build.py /^ ext_modules=ext_modules$/;" v
ext_modules model/utils/nms/build.py /^ext_modules = [Extension("_nms_gpu_post", ["_nms_gpu_post.pyx"])]$/;" v
faster_rcnn demo.py /^faster_rcnn = FasterRCNNVGG16()$/;" v
feat_stride model/faster_rcnn_vgg16.py /^ feat_stride = 16 # downsample 16x for output of conv5 in vgg16$/;" v class:FasterRCNNVGG16
feat_stride model/faster_rcnn_vgg16_backup.py /^ feat_stride = 16 # downsample 16x for output of conv5 in vgg16$/;" v class:FasterRCNNVGG16
field model/utils/nms/_nms_gpu_post.c /^ __Pyx_StructField* field;$/;" m struct:__anon4 file:
fields model/utils/nms/_nms_gpu_post.c /^ struct __Pyx_StructField_* fields;$/;" m struct:__anon3 typeref:struct:__anon3::__Pyx_StructField_ file:
fig2data utils/vis_tool.py /^def fig2data(fig):$/;" f
fig4vis utils/vis_tool.py /^def fig4vis(fig):$/;" f
flags model/utils/nms/_nms_gpu_post.c /^ int flags;$/;" m struct:__anon3 file:
flip_bbox data/util.py /^def flip_bbox(bbox, size, y_flip=False, x_flip=False):$/;" f
fmt_offset model/utils/nms/_nms_gpu_post.c /^ size_t fmt_offset;$/;" m struct:__anon5 file:
forward model/faster_rcnn.py /^ def forward(self, x, scale=1.):$/;" m class:FasterRCNN
forward model/faster_rcnn_vgg16.py /^ def forward(self, x, rois, roi_indices):$/;" m class:VGG16RoIHead
forward model/faster_rcnn_vgg16_backup.py /^ def forward(self, x, rois, roi_indices):$/;" m class:VGG16RoIHead
forward model/region_proposal_network.py /^ def forward(self, x, img_size, scale=1.):$/;" m class:RegionProposalNetwork
forward model/roi_module.py /^ def forward(self, x, rois):$/;" m class:RoI
forward model/roi_module.py /^ def forward(self, x, rois):$/;" m class:RoIPooling2D
forward trainer.py /^ def forward(self, imgs, bboxes, labels, scale):$/;" m class:FasterRCNNTrainer
generate_anchor_base model/utils/bbox_tools.py /^def generate_anchor_base(base_size=16, ratios=[0.5, 1, 2],$/;" f
get_example data/voc_dataset.py /^ def get_example(self, i):$/;" m class:VOCBboxDataset
get_meter_data trainer.py /^ def get_meter_data(self):$/;" m class:FasterRCNNTrainer
get_optimizer model/faster_rcnn.py /^ def get_optimizer(self):$/;" m class:FasterRCNN
head model/utils/nms/_nms_gpu_post.c /^ __Pyx_BufFmt_StackElem* head;$/;" m struct:__anon5 file:
imag model/utils/nms/_nms_gpu_post.c /^ typedef struct { double real, imag; } __pyx_t_double_complex;$/;" m struct:__anon7 file:
imag model/utils/nms/_nms_gpu_post.c /^ typedef struct { float real, imag; } __pyx_t_float_complex;$/;" m struct:__anon6 file:
img demo.py /^img = read_image('misc\/demo.jpg')$/;" v
img demo.py /^img = t.from_numpy(img)[None]$/;" v
img utils/vis_tool.py /^ def img(self, name, img_, **kwargs):$/;" m class:Visualizer
img_many utils/vis_tool.py /^ def img_many(self, d):$/;" m class:Visualizer
init_nms_gpu_post model/utils/nms/_nms_gpu_post.c /^PyMODINIT_FUNC init_nms_gpu_post(void)$/;" f
intern model/utils/nms/_nms_gpu_post.c /^ const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry;$/;" m struct:__anon2 file:
inverse_normalize data/dataset.py /^def inverse_normalize(img):$/;" f
is_complex model/utils/nms/_nms_gpu_post.c /^ int is_complex;$/;" m struct:__anon5 file:
is_str model/utils/nms/_nms_gpu_post.c /^ const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry;$/;" m struct:__anon2 file:
is_unicode model/utils/nms/_nms_gpu_post.c /^ const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry;$/;" m struct:__anon2 file:
is_unsigned model/utils/nms/_nms_gpu_post.c /^ char is_unsigned;$/;" m struct:__anon3 file:
is_valid_array model/utils/nms/_nms_gpu_post.c /^ char is_valid_array;$/;" m struct:__anon5 file:
likely model/utils/nms/_nms_gpu_post.c 709;" d file:
likely model/utils/nms/_nms_gpu_post.c 712;" d file:
load trainer.py /^ def load(self, path, load_optimizer=True, parse_opt=False, ):$/;" m class:FasterRCNNTrainer
load_kernel model/roi_module.py /^def load_kernel(kernel_name, code, **kwargs):$/;" f
load_path utils/config.py /^ load_path = None$/;" v class:Config
load_state_dict utils/vis_tool.py /^ def load_state_dict(self, d):$/;" m class:Visualizer
loc2bbox model/utils/bbox_tools.py /^def loc2bbox(src_bbox, loc):$/;" f
log utils/vis_tool.py /^ def log(self, info, win='log_text'):$/;" m class:Visualizer
lr utils/config.py /^ lr = 1e-3$/;" v class:Config
lr_decay utils/config.py /^ lr_decay = 0.1 # 1e-3 -> 1e-4$/;" v class:Config
max_count model/utils/nms/_nms_gpu_post.c /^ int max_count;$/;" m struct:__Pyx_CodeObjectCache file:
max_size utils/config.py /^ max_size = 1000 # image resize$/;" v class:Config
min_size utils/config.py /^ min_size = 600 # image resize$/;" v class:Config
n model/utils/nms/_nms_gpu_post.c /^typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding;$/;" m struct:__anon2 file:
n_class model/faster_rcnn.py /^ def n_class(self):$/;" m class:FasterRCNN
name model/utils/nms/_nms_gpu_post.c /^ const char* name;$/;" m struct:__Pyx_StructField_ file:
name model/utils/nms/_nms_gpu_post.c /^ const char* name;$/;" m struct:__anon3 file:
name model/utils/nms/build.py /^ name="Hello pyx",$/;" v
ndim model/utils/nms/_nms_gpu_post.c /^ int ndim;$/;" m struct:__anon3 file:
new_count model/utils/nms/_nms_gpu_post.c /^ size_t new_count, enc_count;$/;" m struct:__anon5 file:
new_packmode model/utils/nms/_nms_gpu_post.c /^ char new_packmode;$/;" m struct:__anon5 file:
non_maximum_suppression model/utils/nms/non_maximum_suppression.py /^def non_maximum_suppression(bbox, thresh, score=None,$/;" f
normal_init model/faster_rcnn_vgg16.py /^def normal_init(m, mean, stddev, truncated=False):$/;" f
normal_init model/faster_rcnn_vgg16_backup.py /^def normal_init(m, mean, stddev, truncated=False):$/;" f
normal_init model/region_proposal_network.py /^def normal_init(m, mean, stddev, truncated=False):$/;" f
num_workers utils/config.py /^ num_workers = 4$/;" v class:Config
offset model/utils/nms/_nms_gpu_post.c /^ size_t offset;$/;" m struct:__Pyx_StructField_ file:
offsetof model/utils/nms/_nms_gpu_post.c 14;" d file:
opt utils/config.py /^opt = Config()$/;" v
p model/utils/nms/_nms_gpu_post.c /^typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding;$/;" m struct:__anon2 file:
parent_offset model/utils/nms/_nms_gpu_post.c /^ size_t parent_offset;$/;" m struct:__anon4 file:
plot utils/vis_tool.py /^ def plot(self, name, y, **kwargs):$/;" m class:Visualizer
plot_every utils/config.py /^ plot_every = 40 # vis every N iter$/;" v class:Config
plot_many utils/vis_tool.py /^ def plot_many(self, d):$/;" m class:Visualizer
port utils/config.py /^ port = 8097$/;" v class:Config
predict model/faster_rcnn.py /^ def predict(self, imgs,sizes=None,visualize=False):$/;" m class:FasterRCNN
preprocess data/dataset.py /^def preprocess(img, min_size=600, max_size=1000):$/;" f
pretrained_model utils/config.py /^ pretrained_model = 'vgg16'$/;" v class:Config
pybuffer model/utils/nms/_nms_gpu_post.c /^ Py_buffer pybuffer;$/;" m struct:__anon11 file:
pytorch_normalze data/dataset.py /^def pytorch_normalze(img):$/;" f
random_flip data/util.py /^def random_flip(img, y_random=False, x_random=False,$/;" f
rcbuffer model/utils/nms/_nms_gpu_post.c /^ __Pyx_Buffer *rcbuffer;$/;" m struct:__anon12 file:
read_image data/util.py /^def read_image(path, dtype=np.float32, color=True):$/;" f
real model/utils/nms/_nms_gpu_post.c /^ typedef struct { double real, imag; } __pyx_t_double_complex;$/;" m struct:__anon7 file:
real model/utils/nms/_nms_gpu_post.c /^ typedef struct { float real, imag; } __pyx_t_float_complex;$/;" m struct:__anon6 file:
refcount model/utils/nms/_nms_gpu_post.c /^ size_t refcount;$/;" m struct:__anon11 file:
reinit utils/vis_tool.py /^ def reinit(self, env='default', **kwargs):$/;" m class:Visualizer
reset_meters trainer.py /^ def reset_meters(self):$/;" m class:FasterRCNNTrainer
resize_bbox data/util.py /^def resize_bbox(bbox, in_size, out_size):$/;" f
rlimit train.py /^rlimit = resource.getrlimit(resource.RLIMIT_NOFILE)$/;" v
roi_sigma utils/config.py /^ roi_sigma = 1.$/;" v class:Config
root model/utils/nms/_nms_gpu_post.c /^ __Pyx_StructField root;$/;" m struct:__anon5 file:
rpn_sigma utils/config.py /^ rpn_sigma = 3.$/;" v class:Config
s model/utils/nms/_nms_gpu_post.c /^typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding;$/;" m struct:__anon2 file:
save trainer.py /^ def save(self, save_optimizer=False, save_path=None, **kwargs):$/;" m class:FasterRCNNTrainer
scalar utils/array_tool.py /^def scalar(data):$/;" f
scale_lr model/faster_rcnn.py /^ def scale_lr(self, decay=0.1):$/;" m class:FasterRCNN
sd misc/convert_caffe_pretrain.py /^sd = load_url("https:\/\/s3-us-west-2.amazonaws.com\/jcjohns-models\/vgg16-00b39a1b.pth")$/;" v
shape model/utils/nms/_nms_gpu_post.c /^ Py_ssize_t shape, strides, suboffsets;$/;" m struct:__anon10 file:
size model/utils/nms/_nms_gpu_post.c /^ size_t size;$/;" m struct:__anon3 file:
state_dict utils/vis_tool.py /^ def state_dict(self):$/;" m class:Visualizer
strides model/utils/nms/_nms_gpu_post.c /^ Py_ssize_t shape, strides, suboffsets;$/;" m struct:__anon10 file:
struct_alignment model/utils/nms/_nms_gpu_post.c /^ size_t struct_alignment;$/;" m struct:__anon5 file:
suboffsets model/utils/nms/_nms_gpu_post.c /^ Py_ssize_t shape, strides, suboffsets;$/;" m struct:__anon10 file:
t2c model/roi_module.py /^ def t2c(variable):$/;" f function:test_roi_module
test_eq model/roi_module.py /^ def test_eq(variable, array, info):$/;" f function:test_roi_module
test_num utils/config.py /^ test_num = 10000$/;" v class:Config
test_num_workers utils/config.py /^ test_num_workers = 4$/;" v class:Config
test_roi_module model/roi_module.py /^def test_roi_module():$/;" f
tonumpy utils/array_tool.py /^def tonumpy(data):$/;" f
totensor utils/array_tool.py /^def totensor(data, cuda=True):$/;" f
tovariable utils/array_tool.py /^def tovariable(data):$/;" f
train misc/train_fast.py /^def train(**kwargs):$/;" f
train train.py /^def train(**kwargs):$/;" f
train_step trainer.py /^ def train_step(self, imgs, bboxes, labels, scale):$/;" m class:FasterRCNNTrainer
trainer demo.py /^trainer = FasterRCNNTrainer(faster_rcnn).cuda()$/;" v
translate_bbox data/util.py /^def translate_bbox(bbox, y_offset=0, x_offset=0):$/;" f
type model/utils/nms/_nms_gpu_post.c /^ __Pyx_TypeInfo* type;$/;" m struct:__Pyx_StructField_ file:
typegroup model/utils/nms/_nms_gpu_post.c /^ char typegroup;$/;" m struct:__anon3 file:
uint32_t model/utils/nms/_nms_gpu_post.c /^ typedef unsigned __int32 uint32_t;$/;" t file:
uint32_t model/utils/nms/_nms_gpu_post.c /^ typedef unsigned int uint32_t;$/;" t file:
uint8_t model/utils/nms/_nms_gpu_post.c /^ typedef unsigned __int8 uint8_t;$/;" t file:
uint8_t model/utils/nms/_nms_gpu_post.c /^ typedef unsigned char uint8_t;$/;" t file:
unlikely model/utils/nms/_nms_gpu_post.c 710;" d file:
unlikely model/utils/nms/_nms_gpu_post.c 713;" d file:
update_meters trainer.py /^ def update_meters(self, losses):$/;" m class:FasterRCNNTrainer
use_adam utils/config.py /^ use_adam = False # Use Adam optimizer$/;" v class:Config
use_chainer utils/config.py /^ use_chainer = False # try match everything as chainer$/;" v class:Config
use_drop utils/config.py /^ use_drop = False # use dropout in RoIHead$/;" v class:Config
use_preset model/faster_rcnn.py /^ def use_preset(self, preset):$/;" m class:FasterRCNN
vis_bbox utils/vis_tool.py /^def vis_bbox(img, bbox, label=None, score=None, ax=None):$/;" f
vis_image utils/vis_tool.py /^def vis_image(img, ax=None):$/;" f
visdom_bbox utils/vis_tool.py /^def visdom_bbox(*args, **kwargs):$/;" f
voc_data_dir utils/config.py /^ voc_data_dir = '\/usr\/data\/NYUD2\/eccv14-data\/data\/nyuv2\/'$/;" v class:Config
weight_decay utils/config.py /^ weight_decay = 0.0005$/;" v class:Config
x model/utils/nms/_nms_gpu_post.c /^typedef struct { PY_LONG_LONG x; char c; } __Pyx_pad_longlong;$/;" m struct:__anon28 file:
x model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; PY_LONG_LONG x; } __Pyx_st_longlong;$/;" m struct:__anon20 file:
x model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; double x; } __Pyx_st_double;$/;" m struct:__anon17 file:
x model/utils/nms/_nms_gpu_post.c /^typedef struct { char c; float x; } __Pyx_st_float;$/;" m struct:__anon16 file: