-
Notifications
You must be signed in to change notification settings - Fork 33
/
.tags
5568 lines (5568 loc) · 537 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.8 //
ABCMeta .\mmseg\core\seg\sampler\base_pixel_sampler.py /^from abc import ABCMeta, abstractmethod$/;" i
ABCMeta .\mmseg\models\decode_heads\cascade_decode_head.py /^from abc import ABCMeta, abstractmethod$/;" i
ABCMeta .\mmseg\models\decode_heads\decode_head.py /^from abc import ABCMeta, abstractmethod$/;" i
ABCMeta .\mmseg\models\segmentors\base.py /^from abc import ABCMeta, abstractmethod$/;" i
ACCESS_KEY_ID .\.dev\upload_modelzoo.py /^ACCESS_KEY_ID = os.getenv('OSS_ACCESS_KEY_ID', None)$/;" v
ACCESS_KEY_SECRET .\.dev\upload_modelzoo.py /^ACCESS_KEY_SECRET = os.getenv('OSS_ACCESS_KEY_SECRET', None)$/;" v
ACM .\mmseg\models\decode_heads\apc_head.py /^class ACM(nn.Module):$/;" c
ADE20KDataset .\mmseg\datasets\__init__.py /^from .ade import ADE20KDataset$/;" i
ADE20KDataset .\mmseg\datasets\ade.py /^class ADE20KDataset(CustomDataset):$/;" c
ADE20KDataset .\tests\test_data\test_dataset.py /^from mmseg.datasets import (DATASETS, ADE20KDataset, CityscapesDataset,$/;" i
AFNB .\mmseg\models\decode_heads\ann_head.py /^class AFNB(nn.Module):$/;" c
ANNHead .\mmseg\models\decode_heads\__init__.py /^from .ann_head import ANNHead$/;" i
ANNHead .\mmseg\models\decode_heads\ann_head.py /^class ANNHead(BaseDecodeHead):$/;" c
ANNHead .\tests\test_models\test_heads.py /^from mmseg.models.decode_heads import (ANNHead, APCHead, ASPPHead, CCHead,$/;" i
APCHead .\mmseg\models\decode_heads\__init__.py /^from .apc_head import APCHead$/;" i
APCHead .\mmseg\models\decode_heads\apc_head.py /^class APCHead(BaseDecodeHead):$/;" c
APCHead .\tests\test_models\test_heads.py /^from mmseg.models.decode_heads import (ANNHead, APCHead, ASPPHead, CCHead,$/;" i
APNB .\mmseg\models\decode_heads\ann_head.py /^class APNB(nn.Module):$/;" c
ASPPHead .\mmseg\models\decode_heads\__init__.py /^from .aspp_head import ASPPHead$/;" i
ASPPHead .\mmseg\models\decode_heads\aspp_head.py /^class ASPPHead(BaseDecodeHead):$/;" c
ASPPHead .\mmseg\models\decode_heads\sep_aspp_head.py /^from .aspp_head import ASPPHead, ASPPModule$/;" i
ASPPHead .\tests\test_models\test_heads.py /^from mmseg.models.decode_heads import (ANNHead, APCHead, ASPPHead, CCHead,$/;" i
ASPPModule .\mmseg\models\decode_heads\aspp_head.py /^class ASPPModule(nn.ModuleList):$/;" c
ASPPModule .\mmseg\models\decode_heads\sep_aspp_head.py /^from .aspp_head import ASPPHead, ASPPModule$/;" i
AUG_LEN .\tools\convert_datasets\voc_aug.py /^AUG_LEN = 10582$/;" v
Accuracy .\mmseg\models\losses\__init__.py /^from .accuracy import Accuracy, accuracy$/;" i
Accuracy .\mmseg\models\losses\accuracy.py /^class Accuracy(nn.Module):$/;" c
Accuracy .\tests\test_models\test_losses.py /^from mmseg.models.losses import Accuracy, reduce_loss, weight_reduce_loss$/;" i
AdjustGamma .\mmseg\datasets\pipelines\__init__.py /^from .transforms import (CLAHE, AdjustGamma, Normalize, Pad,$/;" i
AdjustGamma .\mmseg\datasets\pipelines\transforms.py /^class AdjustGamma(object):$/;" c
ArgumentParser .\demo\image_demo.py /^from argparse import ArgumentParser$/;" i
AsciiTable .\mmseg\datasets\custom.py /^from terminaltables import AsciiTable$/;" i
Attention .\mmseg\models\backbones\pvt.py /^class Attention(nn.Module):$/;" c
Attention .\mmseg\models\backbones\pvt_dia.py /^class Attention(nn.Module):$/;" c
Attention .\mmseg\models\backbones\vit.py /^class Attention(nn.Module):$/;" c
Attention .\mmseg\models\backbones\vit_mla.py /^class Attention(nn.Module):$/;" c
AvgPool2d .\tests\test_models\test_backbone.py /^from torch.nn.modules import AvgPool2d, GroupNorm$/;" i
BACKBONES .\mmseg\models\__init__.py /^from .builder import (BACKBONES, HEADS, LOSSES, SEGMENTORS, build_backbone,$/;" i
BACKBONES .\mmseg\models\backbones\cgnet.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\fast_scnn.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\hrnet.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\mobilenet_v2.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\mobilenet_v3.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\pvt.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\pvt_dia.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\resnest.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\resnet.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\resnext.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\unet.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\vit.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\backbones\vit_mla.py /^from ..builder import BACKBONES$/;" i
BACKBONES .\mmseg\models\builder.py /^BACKBONES = Registry('backbone')$/;" v
BACKBONES .\tests\test_models\test_segmentor.py /^from mmseg.models import BACKBONES, HEADS, build_segmentor$/;" i
BUCKET_NAME .\.dev\upload_modelzoo.py /^BUCKET_NAME = 'openmmlab'$/;" v
BUILDDIR .\docs\make.bat /^set BUILDDIR=_build$/;" v
BaseCascadeDecodeHead .\mmseg\models\decode_heads\cascade_decode_head.py /^class BaseCascadeDecodeHead(BaseDecodeHead, metaclass=ABCMeta):$/;" c
BaseCascadeDecodeHead .\mmseg\models\decode_heads\ocr_head.py /^from .cascade_decode_head import BaseCascadeDecodeHead$/;" i
BaseCascadeDecodeHead .\mmseg\models\decode_heads\point_head.py /^from .cascade_decode_head import BaseCascadeDecodeHead$/;" i
BaseCascadeDecodeHead .\tests\test_models\test_segmentor.py /^from mmseg.models.decode_heads.cascade_decode_head import BaseCascadeDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\ann_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\apc_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\aspp_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\cascade_decode_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\da_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\decode_head.py /^class BaseDecodeHead(nn.Module, metaclass=ABCMeta):$/;" c
BaseDecodeHead .\mmseg\models\decode_heads\dm_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\ema_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\enc_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\fcn_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\fpn_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\lraspp_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\psa_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\psp_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\uper_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\vit_mla_auxi_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\vit_mla_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\mmseg\models\decode_heads\vit_up_head.py /^from .decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\tests\test_models\test_heads.py /^from mmseg.models.decode_heads.decode_head import BaseDecodeHead$/;" i
BaseDecodeHead .\tests\test_models\test_segmentor.py /^from mmseg.models.decode_heads.decode_head import BaseDecodeHead$/;" i
BasePixelSampler .\mmseg\core\seg\__init__.py /^from .sampler import BasePixelSampler, OHEMPixelSampler$/;" i
BasePixelSampler .\mmseg\core\seg\sampler\__init__.py /^from .base_pixel_sampler import BasePixelSampler$/;" i
BasePixelSampler .\mmseg\core\seg\sampler\base_pixel_sampler.py /^class BasePixelSampler(metaclass=ABCMeta):$/;" c
BasePixelSampler .\mmseg\core\seg\sampler\ohem_pixel_sampler.py /^from .base_pixel_sampler import BasePixelSampler$/;" i
BaseSegmentor .\mmseg\models\segmentors\base.py /^class BaseSegmentor(nn.Module):$/;" c
BaseSegmentor .\mmseg\models\segmentors\encoder_decoder.py /^from .base import BaseSegmentor$/;" i
BasicBlock .\mmseg\models\backbones\hrnet.py /^from .resnet import BasicBlock, Bottleneck$/;" i
BasicBlock .\mmseg\models\backbones\resnet.py /^class BasicBlock(nn.Module):$/;" c
BasicBlock .\tests\test_models\test_backbone.py /^from mmseg.models.backbones.resnet import BasicBlock, Bottleneck$/;" i
BasicConvBlock .\mmseg\models\backbones\unet.py /^class BasicConvBlock(nn.Module):$/;" c
BasicConvBlock .\tests\test_models\test_unet.py /^from mmseg.models.backbones.unet import (BasicConvBlock, DeconvModule,$/;" i
Block .\mmseg\models\backbones\pvt.py /^class Block(nn.Module):$/;" c
Block .\mmseg\models\backbones\pvt_dia.py /^class Block(nn.Module):$/;" c
Block .\mmseg\models\backbones\vit.py /^class Block(nn.Module):$/;" c
Block .\mmseg\models\backbones\vit_mla.py /^class Block(nn.Module):$/;" c
Block .\mmseg\models\decode_heads\vit_mla_auxi_head.py /^from ..backbones.vit import Block$/;" i
Block .\mmseg\models\decode_heads\vit_mla_head.py /^from ..backbones.vit import Block$/;" i
Block .\mmseg\models\decode_heads\vit_up_head.py /^from ..backbones.vit import Block$/;" i
Bottleneck .\mmseg\models\backbones\hrnet.py /^from .resnet import BasicBlock, Bottleneck$/;" i
Bottleneck .\mmseg\models\backbones\resnest.py /^class Bottleneck(_Bottleneck):$/;" c
Bottleneck .\mmseg\models\backbones\resnet.py /^class Bottleneck(nn.Module):$/;" c
Bottleneck .\mmseg\models\backbones\resnext.py /^class Bottleneck(_Bottleneck):$/;" c
Bottleneck .\tests\test_models\test_backbone.py /^from mmseg.models.backbones.resnet import BasicBlock, Bottleneck$/;" i
BottleneckS .\tests\test_models\test_backbone.py /^from mmseg.models.backbones.resnest import Bottleneck as BottleneckS$/;" i
BottleneckX .\tests\test_models\test_backbone.py /^from mmseg.models.backbones.resnext import Bottleneck as BottleneckX$/;" i
CAM .\mmseg\models\decode_heads\da_head.py /^class CAM(nn.Module):$/;" c
CCHead .\mmseg\models\decode_heads\__init__.py /^from .cc_head import CCHead$/;" i
CCHead .\mmseg\models\decode_heads\cc_head.py /^class CCHead(FCNHead):$/;" c
CCHead .\tests\test_models\test_heads.py /^from mmseg.models.decode_heads import (ANNHead, APCHead, ASPPHead, CCHead,$/;" i
CGNet .\mmseg\models\backbones\__init__.py /^from .cgnet import CGNet$/;" i
CGNet .\mmseg\models\backbones\cgnet.py /^class CGNet(nn.Module):$/;" c
CGNet .\tests\test_models\test_backbone.py /^from mmseg.models.backbones import (CGNet, FastSCNN, MobileNetV3, ResNeSt,$/;" i
CHASE_DB1_LEN .\tools\convert_datasets\chase_db1.py /^CHASE_DB1_LEN = 28 * 3$/;" v
CLAHE .\mmseg\datasets\pipelines\__init__.py /^from .transforms import (CLAHE, AdjustGamma, Normalize, Pad,$/;" i
CLAHE .\mmseg\datasets\pipelines\transforms.py /^class CLAHE(object):$/;" c
CLASSES .\mmseg\datasets\ade.py /^ CLASSES = ($/;" v class:ADE20KDataset
CLASSES .\mmseg\datasets\chase_db1.py /^ CLASSES = ('background', 'vessel')$/;" v class:ChaseDB1Dataset
CLASSES .\mmseg\datasets\cityscapes.py /^ CLASSES = ('road', 'sidewalk', 'building', 'wall', 'fence', 'pole',$/;" v class:CityscapesDataset
CLASSES .\mmseg\datasets\custom.py /^ CLASSES = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,$/;" v class:CustomDataset
CLASSES .\mmseg\datasets\drive.py /^ CLASSES = ('background', 'vessel')$/;" v class:DRIVEDataset
CLASSES .\mmseg\datasets\hrf.py /^ CLASSES = ('background', 'vessel')$/;" v class:HRFDataset
CLASSES .\mmseg\datasets\pascal_context.py /^ CLASSES = ('background', 'aeroplane', 'bicycle', 'bird', 'boat', 'bottle',$/;" v class:PascalContextDataset
CLASSES .\mmseg\datasets\stare.py /^ CLASSES = ('background', 'vessel')$/;" v class:STAREDataset
CLASSES .\mmseg\datasets\voc.py /^ CLASSES = ('background', 'aeroplane', 'bicycle', 'bird', 'boat', 'bottle',$/;" v class:PascalVOCDataset
CSEval .\mmseg\datasets\cityscapes.py /^ import cityscapesscripts.evaluation.evalPixelLevelSemanticLabeling as CSEval # noqa$/;" i
CSLabels .\mmseg\datasets\cityscapes.py /^ import cityscapesscripts.helpers.labels as CSLabels$/;" i
CSLabels .\mmseg\datasets\cityscapes.py /^ import cityscapesscripts.helpers.labels as CSLabels$/;" i
CascadeEncoderDecoder .\mmseg\models\segmentors\__init__.py /^from .cascade_encoder_decoder import CascadeEncoderDecoder$/;" i
CascadeEncoderDecoder .\mmseg\models\segmentors\cascade_encoder_decoder.py /^class CascadeEncoderDecoder(EncoderDecoder):$/;" c
ChaseDB1Dataset .\mmseg\datasets\__init__.py /^from .chase_db1 import ChaseDB1Dataset$/;" i
ChaseDB1Dataset .\mmseg\datasets\chase_db1.py /^class ChaseDB1Dataset(CustomDataset):$/;" c
CityscapesDataset .\mmseg\datasets\__init__.py /^from .cityscapes import CityscapesDataset$/;" i
CityscapesDataset .\mmseg\datasets\cityscapes.py /^class CityscapesDataset(CustomDataset):$/;" c
CityscapesDataset .\tests\test_data\test_dataset.py /^from mmseg.datasets import (DATASETS, ADE20KDataset, CityscapesDataset,$/;" i
Collect .\mmseg\datasets\pipelines\__init__.py /^from .formating import (Collect, ImageToTensor, ToDataContainer, ToTensor,$/;" i
Collect .\mmseg\datasets\pipelines\formating.py /^class Collect(object):$/;" c
Compose .\mmseg\apis\inference.py /^from mmseg.datasets.pipelines import Compose$/;" i
Compose .\mmseg\datasets\custom.py /^from .pipelines import Compose$/;" i
Compose .\mmseg\datasets\pipelines\__init__.py /^from .compose import Compose$/;" i
Compose .\mmseg\datasets\pipelines\compose.py /^class Compose(object):$/;" c
Compose .\mmseg\datasets\pipelines\test_time_aug.py /^from .compose import Compose$/;" i
Compose .\tests\test_config.py /^ from mmseg.datasets.pipelines import Compose$/;" i
ConcatDataset .\mmseg\datasets\__init__.py /^from .dataset_wrappers import ConcatDataset, RepeatDataset$/;" i
ConcatDataset .\mmseg\datasets\builder.py /^ from .dataset_wrappers import ConcatDataset$/;" i
ConcatDataset .\mmseg\datasets\builder.py /^ from .dataset_wrappers import ConcatDataset, RepeatDataset$/;" i
ConcatDataset .\mmseg\datasets\dataset_wrappers.py /^class ConcatDataset(_ConcatDataset):$/;" c
ConcatDataset .\tests\test_data\test_dataset_builder.py /^from mmseg.datasets import (DATASETS, ConcatDataset, build_dataloader,$/;" i
Config .\tests\test_config.py /^ from mmcv import Config$/;" i
Config .\tests\test_config.py /^from mmcv import Config$/;" i
Config .\tests\test_models\test_forward.py /^ from mmcv import Config$/;" i
Config .\tools\benchmark.py /^from mmcv import Config$/;" i
Config .\tools\get_flops.py /^from mmcv import Config$/;" i
Config .\tools\print_config.py /^from mmcv import Config, DictAction$/;" i
Config .\tools\train.py /^from mmcv.utils import Config, DictAction, get_git_hash$/;" i
ConfigDict .\tests\test_models\test_heads.py /^from mmcv.utils import ConfigDict$/;" i
ConfigDict .\tests\test_models\test_segmentor.py /^from mmcv import ConfigDict$/;" i
ContextBlock .\mmseg\models\decode_heads\gc_head.py /^from mmcv.cnn import ContextBlock$/;" i
ContextGuidedBlock .\mmseg\models\backbones\cgnet.py /^class ContextGuidedBlock(nn.Module):$/;" c
ContextGuidedBlock .\tests\test_models\test_backbone.py /^from mmseg.models.backbones.cgnet import (ContextGuidedBlock,$/;" i
Conv2dAdaptivePadding .\mmseg\models\backbones\mobilenet_v3.py /^from mmcv.cnn.bricks import Conv2dAdaptivePadding$/;" i
ConvModule .\mmseg\models\backbones\cgnet.py /^from mmcv.cnn import (ConvModule, build_conv_layer, build_norm_layer,$/;" i
ConvModule .\mmseg\models\backbones\fast_scnn.py /^from mmcv.cnn import (ConvModule, DepthwiseSeparableConvModule, constant_init,$/;" i
ConvModule .\mmseg\models\backbones\mobilenet_v2.py /^from mmcv.cnn import ConvModule, constant_init, kaiming_init$/;" i
ConvModule .\mmseg\models\backbones\mobilenet_v3.py /^from mmcv.cnn import ConvModule, constant_init, kaiming_init$/;" i
ConvModule .\mmseg\models\backbones\unet.py /^from mmcv.cnn import (UPSAMPLE_LAYERS, ConvModule, build_activation_layer,$/;" i
ConvModule .\mmseg\models\decode_heads\ann_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\apc_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\aspp_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\da_head.py /^from mmcv.cnn import ConvModule, Scale$/;" i
ConvModule .\mmseg\models\decode_heads\dm_head.py /^from mmcv.cnn import ConvModule, build_activation_layer, build_norm_layer$/;" i
ConvModule .\mmseg\models\decode_heads\ema_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\enc_head.py /^from mmcv.cnn import ConvModule, build_norm_layer$/;" i
ConvModule .\mmseg\models\decode_heads\fcn_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\fpn_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\lraspp_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\ocr_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\point_head.py /^from mmcv.cnn import ConvModule, normal_init$/;" i
ConvModule .\mmseg\models\decode_heads\psa_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\psp_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\sep_aspp_head.py /^from mmcv.cnn import ConvModule, DepthwiseSeparableConvModule$/;" i
ConvModule .\mmseg\models\decode_heads\uper_head.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\necks\fpn.py /^from mmcv.cnn import ConvModule, xavier_init$/;" i
ConvModule .\mmseg\models\utils\inverted_residual.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\utils\se_layer.py /^from mmcv.cnn import ConvModule$/;" i
ConvModule .\mmseg\models\utils\self_attention_block.py /^from mmcv.cnn import ConvModule, constant_init$/;" i
ConvModule .\mmseg\models\utils\up_conv_block.py /^from mmcv.cnn import ConvModule, build_upsample_layer$/;" i
ConvModule .\tests\test_models\test_heads.py /^from mmcv.cnn import ConvModule, DepthwiseSeparableConvModule$/;" i
ConvModule .\tests\test_models\test_unet.py /^from mmcv.cnn import ConvModule$/;" i
Conv_MLA .\mmseg\models\backbones\vit_mla.py /^class Conv_MLA(nn.Module):$/;" c
CrissCrossAttention .\mmseg\models\decode_heads\cc_head.py /^ CrissCrossAttention = None$/;" v
CrissCrossAttention .\mmseg\models\decode_heads\cc_head.py /^ from mmcv.ops import CrissCrossAttention$/;" i
CrossEntropyLoss .\mmseg\models\losses\__init__.py /^from .cross_entropy_loss import (CrossEntropyLoss, binary_cross_entropy,$/;" i
CrossEntropyLoss .\mmseg\models\losses\cross_entropy_loss.py /^class CrossEntropyLoss(nn.Module):$/;" c
CustomDataset .\mmseg\datasets\__init__.py /^from .custom import CustomDataset$/;" i
CustomDataset .\mmseg\datasets\ade.py /^from .custom import CustomDataset$/;" i
CustomDataset .\mmseg\datasets\chase_db1.py /^from .custom import CustomDataset$/;" i
CustomDataset .\mmseg\datasets\cityscapes.py /^from .custom import CustomDataset$/;" i
CustomDataset .\mmseg\datasets\custom.py /^class CustomDataset(Dataset):$/;" c
CustomDataset .\mmseg\datasets\drive.py /^from .custom import CustomDataset$/;" i
CustomDataset .\mmseg\datasets\hrf.py /^from .custom import CustomDataset$/;" i
CustomDataset .\mmseg\datasets\pascal_context.py /^from .custom import CustomDataset$/;" i
CustomDataset .\mmseg\datasets\stare.py /^from .custom import CustomDataset$/;" i
CustomDataset .\mmseg\datasets\voc.py /^from .custom import CustomDataset$/;" i
DAHead .\mmseg\models\decode_heads\__init__.py /^from .da_head import DAHead$/;" i
DAHead .\mmseg\models\decode_heads\da_head.py /^class DAHead(BaseDecodeHead):$/;" c
DATASETS .\mmseg\datasets\__init__.py /^from .builder import DATASETS, PIPELINES, build_dataloader, build_dataset$/;" i
DATASETS .\mmseg\datasets\ade.py /^from .builder import DATASETS$/;" i
DATASETS .\mmseg\datasets\builder.py /^DATASETS = Registry('dataset')$/;" v
DATASETS .\mmseg\datasets\chase_db1.py /^from .builder import DATASETS$/;" i
DATASETS .\mmseg\datasets\cityscapes.py /^from .builder import DATASETS$/;" i
DATASETS .\mmseg\datasets\custom.py /^from .builder import DATASETS$/;" i
DATASETS .\mmseg\datasets\dataset_wrappers.py /^from .builder import DATASETS$/;" i
DATASETS .\mmseg\datasets\drive.py /^from .builder import DATASETS$/;" i
DATASETS .\mmseg\datasets\hrf.py /^from .builder import DATASETS$/;" i
DATASETS .\mmseg\datasets\pascal_context.py /^from .builder import DATASETS$/;" i
DATASETS .\mmseg\datasets\stare.py /^from .builder import DATASETS$/;" i
DATASETS .\mmseg\datasets\voc.py /^from .builder import DATASETS$/;" i
DATASETS .\tests\test_data\test_dataset.py /^from mmseg.datasets import (DATASETS, ADE20KDataset, CityscapesDataset,$/;" i
DATASETS .\tests\test_data\test_dataset_builder.py /^from mmseg.datasets import (DATASETS, ConcatDataset, build_dataloader,$/;" i
DC .\mmseg\datasets\pipelines\formating.py /^from mmcv.parallel import DataContainer as DC$/;" i
DCM .\mmseg\models\decode_heads\dm_head.py /^class DCM(nn.Module):$/;" c
DMHead .\mmseg\models\decode_heads\__init__.py /^from .dm_head import DMHead$/;" i
DMHead .\mmseg\models\decode_heads\dm_head.py /^class DMHead(BaseDecodeHead):$/;" c
DNLHead .\mmseg\models\decode_heads\__init__.py /^from .dnl_head import DNLHead$/;" i
DNLHead .\mmseg\models\decode_heads\dnl_head.py /^class DNLHead(FCNHead):$/;" c
DRIVEDataset .\mmseg\datasets\__init__.py /^from .drive import DRIVEDataset$/;" i
DRIVEDataset .\mmseg\datasets\drive.py /^class DRIVEDataset(CustomDataset):$/;" c
DataLoader .\mmseg\core\evaluation\eval_hooks.py /^from torch.utils.data import DataLoader$/;" i
DataLoader .\mmseg\datasets\builder.py /^from mmcv.utils.parrots_wrapper import DataLoader, PoolDataLoader$/;" i
DataLoader .\tests\test_eval_hook.py /^from torch.utils.data import DataLoader, Dataset$/;" i
Dataset .\mmseg\datasets\custom.py /^from torch.utils.data import Dataset$/;" i
Dataset .\tests\test_eval_hook.py /^from torch.utils.data import DataLoader, Dataset$/;" i
DeconvModule .\mmseg\models\backbones\unet.py /^class DeconvModule(nn.Module):$/;" c
DeconvModule .\tests\test_models\test_unet.py /^from mmseg.models.backbones.unet import (BasicConvBlock, DeconvModule,$/;" i
DefaultFormatBundle .\mmseg\datasets\pipelines\formating.py /^class DefaultFormatBundle(object):$/;" c
DeformConv2dPack .\tests\test_models\test_backbone.py /^from mmcv.ops import DeformConv2dPack$/;" i
DepthwiseSeparableASPPHead .\mmseg\models\decode_heads\__init__.py /^from .sep_aspp_head import DepthwiseSeparableASPPHead$/;" i
DepthwiseSeparableASPPHead .\mmseg\models\decode_heads\sep_aspp_head.py /^class DepthwiseSeparableASPPHead(ASPPHead):$/;" c
DepthwiseSeparableASPPModule .\mmseg\models\decode_heads\sep_aspp_head.py /^class DepthwiseSeparableASPPModule(ASPPModule):$/;" c
DepthwiseSeparableConvModule .\mmseg\models\backbones\fast_scnn.py /^from mmcv.cnn import (ConvModule, DepthwiseSeparableConvModule, constant_init,$/;" i
DepthwiseSeparableConvModule .\mmseg\models\decode_heads\sep_aspp_head.py /^from mmcv.cnn import ConvModule, DepthwiseSeparableConvModule$/;" i
DepthwiseSeparableConvModule .\mmseg\models\decode_heads\sep_fcn_head.py /^from mmcv.cnn import DepthwiseSeparableConvModule$/;" i
DepthwiseSeparableConvModule .\tests\test_models\test_heads.py /^from mmcv.cnn import ConvModule, DepthwiseSeparableConvModule$/;" i
DepthwiseSeparableFCNHead .\mmseg\models\decode_heads\__init__.py /^from .sep_fcn_head import DepthwiseSeparableFCNHead$/;" i
DepthwiseSeparableFCNHead .\mmseg\models\decode_heads\sep_fcn_head.py /^class DepthwiseSeparableFCNHead(FCNHead):$/;" c
Detail .\tools\convert_datasets\pascal_context.py /^from detail import Detail$/;" i
DictAction .\tools\print_config.py /^from mmcv import Config, DictAction$/;" i
DictAction .\tools\test.py /^from mmcv.utils import DictAction$/;" i
DictAction .\tools\train.py /^from mmcv.utils import Config, DictAction, get_git_hash$/;" i
DisentangledNonLocal2d .\mmseg\models\decode_heads\dnl_head.py /^class DisentangledNonLocal2d(NonLocal2d):$/;" c
DistEvalHook .\mmseg\apis\train.py /^from mmseg.core import DistEvalHook, EvalHook$/;" i
DistEvalHook .\mmseg\core\evaluation\__init__.py /^from .eval_hooks import DistEvalHook, EvalHook$/;" i
DistEvalHook .\mmseg\core\evaluation\eval_hooks.py /^class DistEvalHook(EvalHook):$/;" c
DistEvalHook .\tests\test_eval_hook.py /^from mmseg.core import DistEvalHook, EvalHook$/;" i
DistributedSampler .\mmseg\datasets\builder.py /^from torch.utils.data import DistributedSampler$/;" i
DistributedSampler .\tests\test_data\test_dataset_builder.py /^from torch.utils.data import (DistributedSampler, RandomSampler,$/;" i
DropBlock2d .\mmseg\models\backbones\layers\__init__.py /^from .drop import DropBlock2d, DropPath, drop_block_2d, drop_path$/;" i
DropBlock2d .\mmseg\models\backbones\layers\drop.py /^class DropBlock2d(nn.Module):$/;" c
DropBlock2d .\mmseg\models\decode_heads\layers\__init__.py /^from .drop import DropBlock2d, DropPath, drop_block_2d, drop_path$/;" i
DropBlock2d .\mmseg\models\decode_heads\layers\drop.py /^class DropBlock2d(nn.Module):$/;" c
DropPath .\mmseg\models\backbones\layers\__init__.py /^from .drop import DropBlock2d, DropPath, drop_block_2d, drop_path$/;" i
DropPath .\mmseg\models\backbones\layers\drop.py /^class DropPath(nn.Module):$/;" c
DropPath .\mmseg\models\backbones\pvt.py /^from timm.models.layers import DropPath, to_2tuple, trunc_normal_$/;" i
DropPath .\mmseg\models\backbones\pvt_dia.py /^from timm.models.layers import DropPath, to_2tuple, trunc_normal_$/;" i
DropPath .\mmseg\models\backbones\vit.py /^from .layers import DropPath, to_2tuple, trunc_normal_$/;" i
DropPath .\mmseg\models\backbones\vit_mla.py /^from .layers import DropPath, to_2tuple, trunc_normal_$/;" i
DropPath .\mmseg\models\decode_heads\layers\__init__.py /^from .drop import DropBlock2d, DropPath, drop_block_2d, drop_path$/;" i
DropPath .\mmseg\models\decode_heads\layers\drop.py /^class DropPath(nn.Module):$/;" c
DropPath .\mmseg\models\decode_heads\vit_mla_auxi_head.py /^from .layers import DropPath, to_2tuple, trunc_normal_$/;" i
DropPath .\mmseg\models\decode_heads\vit_mla_head.py /^from .layers import DropPath, to_2tuple, trunc_normal_$/;" i
DropPath .\mmseg\models\decode_heads\vit_up_head.py /^from .layers import DropPath, to_2tuple, trunc_normal_$/;" i
EMAHead .\mmseg\models\decode_heads\__init__.py /^from .ema_head import EMAHead$/;" i
EMAHead .\mmseg\models\decode_heads\ema_head.py /^class EMAHead(BaseDecodeHead):$/;" c
EMAModule .\mmseg\models\decode_heads\ema_head.py /^class EMAModule(nn.Module):$/;" c
ENDPOINT .\.dev\upload_modelzoo.py /^ENDPOINT = 'https:\/\/oss-accelerate.aliyuncs.com'$/;" v
EncHead .\mmseg\models\decode_heads\__init__.py /^from .enc_head import EncHead$/;" i
EncHead .\mmseg\models\decode_heads\enc_head.py /^class EncHead(BaseDecodeHead):$/;" c
EncModule .\mmseg\models\decode_heads\enc_head.py /^class EncModule(nn.Module):$/;" c
EncoderDecoder .\mmseg\models\segmentors\__init__.py /^from .encoder_decoder import EncoderDecoder$/;" i
EncoderDecoder .\mmseg\models\segmentors\cascade_encoder_decoder.py /^from .encoder_decoder import EncoderDecoder$/;" i
EncoderDecoder .\mmseg\models\segmentors\encoder_decoder.py /^class EncoderDecoder(BaseSegmentor):$/;" c
Encoding .\mmseg\models\decode_heads\enc_head.py /^from mmseg.ops import Encoding, resize$/;" i
Encoding .\mmseg\ops\__init__.py /^from .encoding import Encoding$/;" i
Encoding .\mmseg\ops\encoding.py /^class Encoding(nn.Module):$/;" c
EvalHook .\mmseg\apis\train.py /^from mmseg.core import DistEvalHook, EvalHook$/;" i
EvalHook .\mmseg\core\evaluation\__init__.py /^from .eval_hooks import DistEvalHook, EvalHook$/;" i
EvalHook .\mmseg\core\evaluation\eval_hooks.py /^class EvalHook(Hook):$/;" c
EvalHook .\tests\test_eval_hook.py /^from mmseg.core import DistEvalHook, EvalHook$/;" i
ExampleBackbone .\tests\test_models\test_segmentor.py /^class ExampleBackbone(nn.Module):$/;" c
ExampleCascadeDecodeHead .\tests\test_models\test_segmentor.py /^class ExampleCascadeDecodeHead(BaseCascadeDecodeHead):$/;" c
ExampleDataset .\tests\test_eval_hook.py /^class ExampleDataset(Dataset):$/;" c
ExampleDecodeHead .\tests\test_models\test_segmentor.py /^class ExampleDecodeHead(BaseDecodeHead):$/;" c
ExampleModel .\tests\test_eval_hook.py /^class ExampleModel(nn.Module):$/;" c
F .\mmseg\core\seg\sampler\ohem_pixel_sampler.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\backbones\helpers.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\backbones\layers\drop.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\backbones\pvt.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\backbones\pvt_dia.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\backbones\resnest.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\backbones\vit.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\backbones\vit_mla.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\apc_head.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\da_head.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\dm_head.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\ema_head.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\enc_head.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\helpers.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\layers\drop.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\ocr_head.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\psa_head.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\vit_mla_auxi_head.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\vit_mla_head.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\decode_heads\vit_up_head.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\losses\cross_entropy_loss.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\losses\lovasz_loss.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\losses\utils.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\necks\fpn.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\segmentors\encoder_decoder.py /^import torch.nn.functional as F$/;" i
F .\mmseg\models\utils\self_attention_block.py /^from torch.nn import functional as F$/;" i
F .\mmseg\ops\encoding.py /^from torch.nn import functional as F$/;" i
F .\mmseg\ops\wrappers.py /^import torch.nn.functional as F$/;" i
F401 .\mmseg\core\__init__.py /^from .evaluation import * # noqa: F401, F403$/;" i
F401 .\mmseg\core\__init__.py /^from .seg import * # noqa: F401, F403$/;" i
F401 .\mmseg\core\__init__.py /^from .utils import * # noqa: F401, F403$/;" i
F401 .\mmseg\models\__init__.py /^from .backbones import * # noqa: F401,F403$/;" i
F401 .\mmseg\models\__init__.py /^from .decode_heads import * # noqa: F401,F403$/;" i
F401 .\mmseg\models\__init__.py /^from .losses import * # noqa: F401,F403$/;" i
F401 .\mmseg\models\__init__.py /^from .necks import * # noqa: F401,F403$/;" i
F401 .\mmseg\models\__init__.py /^from .segmentors import * # noqa: F401,F403$/;" i
F401 .\mmseg\models\backbones\helpers.py /^from urllib.parse import urlparse # noqa: F401$/;" i
F403 .\mmseg\core\__init__.py /^from .evaluation import * # noqa: F401, F403$/;" i
F403 .\mmseg\core\__init__.py /^from .seg import * # noqa: F401, F403$/;" i
F403 .\mmseg\core\__init__.py /^from .utils import * # noqa: F401, F403$/;" i
F403 .\mmseg\models\__init__.py /^from .backbones import * # noqa: F401,F403$/;" i
F403 .\mmseg\models\__init__.py /^from .decode_heads import * # noqa: F401,F403$/;" i
F403 .\mmseg\models\__init__.py /^from .losses import * # noqa: F401,F403$/;" i
F403 .\mmseg\models\__init__.py /^from .necks import * # noqa: F401,F403$/;" i
F403 .\mmseg\models\__init__.py /^from .segmentors import * # noqa: F401,F403$/;" i
FCNHead .\mmseg\models\decode_heads\__init__.py /^from .fcn_head import FCNHead$/;" i
FCNHead .\mmseg\models\decode_heads\cc_head.py /^from .fcn_head import FCNHead$/;" i
FCNHead .\mmseg\models\decode_heads\dnl_head.py /^from .fcn_head import FCNHead$/;" i
FCNHead .\mmseg\models\decode_heads\fcn_head.py /^class FCNHead(BaseDecodeHead):$/;" c
FCNHead .\mmseg\models\decode_heads\gc_head.py /^from .fcn_head import FCNHead$/;" i
FCNHead .\mmseg\models\decode_heads\nl_head.py /^from .fcn_head import FCNHead$/;" i
FCNHead .\mmseg\models\decode_heads\sep_fcn_head.py /^from .fcn_head import FCNHead$/;" i
FCNHead .\tests\test_sampler.py /^from mmseg.models.decode_heads import FCNHead$/;" i
FPN .\mmseg\models\necks\__init__.py /^from .fpn import FPN$/;" i
FPN .\mmseg\models\necks\fpn.py /^class FPN(nn.Module):$/;" c
FPN .\tests\test_models\test_necks.py /^from mmseg.models import FPN$/;" i
FPNHead .\mmseg\models\decode_heads\__init__.py /^from .fpn_head import FPNHead$/;" i
FPNHead .\mmseg\models\decode_heads\fpn_head.py /^class FPNHead(BaseDecodeHead):$/;" c
FastSCNN .\mmseg\models\backbones\__init__.py /^from .fast_scnn import FastSCNN$/;" i
FastSCNN .\mmseg\models\backbones\fast_scnn.py /^class FastSCNN(nn.Module):$/;" c
FastSCNN .\tests\test_models\test_backbone.py /^from mmseg.models.backbones import (CGNet, FastSCNN, MobileNetV3, ResNeSt,$/;" i
FeatureFusionModule .\mmseg\models\backbones\fast_scnn.py /^class FeatureFusionModule(nn.Module):$/;" c
GCHead .\mmseg\models\decode_heads\__init__.py /^from .gc_head import GCHead$/;" i
GCHead .\mmseg\models\decode_heads\gc_head.py /^class GCHead(FCNHead):$/;" c
GlobalContextExtractor .\mmseg\models\backbones\cgnet.py /^class GlobalContextExtractor(nn.Module):$/;" c
GlobalFeatureExtractor .\mmseg\models\backbones\fast_scnn.py /^class GlobalFeatureExtractor(nn.Module):$/;" c
GroupNorm .\tests\test_models\test_backbone.py /^from torch.nn.modules import AvgPool2d, GroupNorm$/;" i
HASH_REGEX .\mmseg\models\backbones\helpers.py /^HASH_REGEX = re.compile(r'-([a-f0-9]*)\\.')$/;" v
HEADS .\mmseg\models\__init__.py /^from .builder import (BACKBONES, HEADS, LOSSES, SEGMENTORS, build_backbone,$/;" i
HEADS .\mmseg\models\builder.py /^HEADS = Registry('head')$/;" v
HEADS .\mmseg\models\decode_heads\ann_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\apc_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\aspp_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\cc_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\da_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\dm_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\dnl_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\ema_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\enc_head.py /^from ..builder import HEADS, build_loss$/;" i
HEADS .\mmseg\models\decode_heads\fcn_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\fpn_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\gc_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\lraspp_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\nl_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\ocr_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\point_head.py /^from mmseg.models.builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\psa_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\psp_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\sep_aspp_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\sep_fcn_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\uper_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\vit_mla_auxi_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\vit_mla_head.py /^from ..builder import HEADS$/;" i
HEADS .\mmseg\models\decode_heads\vit_up_head.py /^from ..builder import HEADS$/;" i
HEADS .\tests\test_models\test_segmentor.py /^from mmseg.models import BACKBONES, HEADS, build_segmentor$/;" i
HRFDataset .\mmseg\datasets\__init__.py /^from .hrf import HRFDataset$/;" i
HRFDataset .\mmseg\datasets\hrf.py /^class HRFDataset(CustomDataset):$/;" c
HRF_LEN .\tools\convert_datasets\hrf.py /^HRF_LEN = 15$/;" v
HRModule .\mmseg\models\backbones\hrnet.py /^class HRModule(nn.Module):$/;" c
HRNet .\mmseg\models\backbones\__init__.py /^from .hrnet import HRNet$/;" i
HRNet .\mmseg\models\backbones\hrnet.py /^class HRNet(nn.Module):$/;" c
Hook .\mmseg\core\evaluation\eval_hooks.py /^from mmcv.runner import Hook$/;" i
HybridEmbed .\mmseg\models\backbones\vit.py /^class HybridEmbed(nn.Module):$/;" c
HybridEmbed .\mmseg\models\backbones\vit_mla.py /^class HybridEmbed(nn.Module):$/;" c
Image .\mmseg\datasets\cityscapes.py /^from PIL import Image$/;" i
Image .\tests\test_data\test_transform.py /^from PIL import Image$/;" i
Image .\tools\convert_datasets\pascal_context.py /^from PIL import Image$/;" i
Image .\tools\convert_datasets\voc_aug.py /^from PIL import Image$/;" i
ImageToTensor .\mmseg\datasets\pipelines\__init__.py /^from .formating import (Collect, ImageToTensor, ToDataContainer, ToTensor,$/;" i
ImageToTensor .\mmseg\datasets\pipelines\formating.py /^class ImageToTensor(object):$/;" c
InputInjection .\mmseg\models\backbones\cgnet.py /^class InputInjection(nn.Module):$/;" c
InterpConv .\mmseg\models\backbones\unet.py /^class InterpConv(nn.Module):$/;" c
InvertedResidual .\mmseg\models\backbones\fast_scnn.py /^from ..utils.inverted_residual import InvertedResidual$/;" i
InvertedResidual .\mmseg\models\backbones\mobilenet_v2.py /^from ..utils import InvertedResidual, make_divisible$/;" i
InvertedResidual .\mmseg\models\backbones\mobilenet_v3.py /^from ..utils import InvertedResidualV3 as InvertedResidual$/;" i
InvertedResidual .\mmseg\models\utils\__init__.py /^from .inverted_residual import InvertedResidual, InvertedResidualV3$/;" i
InvertedResidual .\mmseg\models\utils\inverted_residual.py /^class InvertedResidual(nn.Module):$/;" c
InvertedResidual .\tests\test_utils\test_inverted_residual_module.py /^from mmseg.models.utils import InvertedResidual, InvertedResidualV3$/;" i
InvertedResidualV3 .\mmseg\models\utils\__init__.py /^from .inverted_residual import InvertedResidual, InvertedResidualV3$/;" i
InvertedResidualV3 .\mmseg\models\utils\inverted_residual.py /^class InvertedResidualV3(nn.Module):$/;" c
InvertedResidualV3 .\tests\test_utils\test_inverted_residual_module.py /^from mmseg.models.utils import InvertedResidual, InvertedResidualV3$/;" i
LOSSES .\mmseg\models\__init__.py /^from .builder import (BACKBONES, HEADS, LOSSES, SEGMENTORS, build_backbone,$/;" i
LOSSES .\mmseg\models\builder.py /^LOSSES = Registry('loss')$/;" v
LOSSES .\mmseg\models\losses\cross_entropy_loss.py /^from ..builder import LOSSES$/;" i
LOSSES .\mmseg\models\losses\lovasz_loss.py /^from ..builder import LOSSES$/;" i
LRASPPHead .\mmseg\models\decode_heads\__init__.py /^from .lraspp_head import LRASPPHead$/;" i
LRASPPHead .\mmseg\models\decode_heads\lraspp_head.py /^class LRASPPHead(BaseDecodeHead):$/;" c
LearningToDownsample .\mmseg\models\backbones\fast_scnn.py /^class LearningToDownsample(nn.Module):$/;" c
LoadAnnotations .\mmseg\datasets\pipelines\__init__.py /^from .loading import LoadAnnotations, LoadImageFromFile$/;" i
LoadAnnotations .\mmseg\datasets\pipelines\loading.py /^class LoadAnnotations(object):$/;" c
LoadAnnotations .\tests\test_data\test_loading.py /^from mmseg.datasets.pipelines import LoadAnnotations, LoadImageFromFile$/;" i
LoadImage .\mmseg\apis\inference.py /^class LoadImage:$/;" c
LoadImageFromFile .\mmseg\datasets\pipelines\__init__.py /^from .loading import LoadAnnotations, LoadImageFromFile$/;" i
LoadImageFromFile .\mmseg\datasets\pipelines\loading.py /^class LoadImageFromFile(object):$/;" c
LoadImageFromFile .\tests\test_data\test_loading.py /^from mmseg.datasets.pipelines import LoadAnnotations, LoadImageFromFile$/;" i
LovaszLoss .\mmseg\models\losses\__init__.py /^from .lovasz_loss import LovaszLoss$/;" i
LovaszLoss .\mmseg\models\losses\lovasz_loss.py /^class LovaszLoss(nn.Module):$/;" c
MLAHead .\mmseg\models\decode_heads\vit_mla_head.py /^class MLAHead(nn.Module):$/;" c
MMCV_MAX .\mmseg\__init__.py /^MMCV_MAX = '1.3.0'$/;" v
MMCV_MIN .\mmseg\__init__.py /^MMCV_MIN = '1.1.4'$/;" v
MMDataParallel .\mmseg\apis\train.py /^from mmcv.parallel import MMDataParallel, MMDistributedDataParallel$/;" i
MMDataParallel .\tools\benchmark.py /^from mmcv.parallel import MMDataParallel$/;" i
MMDataParallel .\tools\test.py /^from mmcv.parallel import MMDataParallel, MMDistributedDataParallel$/;" i
MMDistributedDataParallel .\mmseg\apis\train.py /^from mmcv.parallel import MMDataParallel, MMDistributedDataParallel$/;" i
MMDistributedDataParallel .\tools\test.py /^from mmcv.parallel import MMDataParallel, MMDistributedDataParallel$/;" i
MagicMock .\tests\test_data\test_dataset.py /^from unittest.mock import MagicMock, patch$/;" i
MagicMock .\tests\test_eval_hook.py /^from unittest.mock import MagicMock, patch$/;" i
Mlp .\mmseg\models\backbones\pvt.py /^class Mlp(nn.Module):$/;" c
Mlp .\mmseg\models\backbones\pvt_dia.py /^class Mlp(nn.Module):$/;" c
Mlp .\mmseg\models\backbones\vit.py /^class Mlp(nn.Module):$/;" c
Mlp .\mmseg\models\backbones\vit_mla.py /^class Mlp(nn.Module):$/;" c
MobileNetV2 .\mmseg\models\backbones\__init__.py /^from .mobilenet_v2 import MobileNetV2$/;" i
MobileNetV2 .\mmseg\models\backbones\mobilenet_v2.py /^class MobileNetV2(nn.Module):$/;" c
MobileNetV3 .\mmseg\models\backbones\__init__.py /^from .mobilenet_v3 import MobileNetV3$/;" i
MobileNetV3 .\mmseg\models\backbones\mobilenet_v3.py /^class MobileNetV3(nn.Module):$/;" c
MobileNetV3 .\tests\test_models\test_backbone.py /^from mmseg.models.backbones import (CGNet, FastSCNN, MobileNetV3, ResNeSt,$/;" i
MultiScaleFlipAug .\mmseg\datasets\pipelines\__init__.py /^from .test_time_aug import MultiScaleFlipAug$/;" i
MultiScaleFlipAug .\mmseg\datasets\pipelines\test_time_aug.py /^class MultiScaleFlipAug(object):$/;" c
NECKS .\mmseg\models\builder.py /^NECKS = Registry('neck')$/;" v
NECKS .\mmseg\models\necks\fpn.py /^from ..builder import NECKS$/;" i
NLHead .\mmseg\models\decode_heads\__init__.py /^from .nl_head import NLHead$/;" i
NLHead .\mmseg\models\decode_heads\nl_head.py /^class NLHead(FCNHead):$/;" c
NonLocal2d .\mmseg\models\decode_heads\dnl_head.py /^from mmcv.cnn import NonLocal2d$/;" i
NonLocal2d .\mmseg\models\decode_heads\nl_head.py /^from mmcv.cnn import NonLocal2d$/;" i
Normalize .\mmseg\datasets\pipelines\__init__.py /^from .transforms import (CLAHE, AdjustGamma, Normalize, Pad,$/;" i
Normalize .\mmseg\datasets\pipelines\transforms.py /^class Normalize(object):$/;" c
OCRHead .\mmseg\models\decode_heads\__init__.py /^from .ocr_head import OCRHead$/;" i
OCRHead .\mmseg\models\decode_heads\ocr_head.py /^class OCRHead(BaseCascadeDecodeHead):$/;" c
OHEMPixelSampler .\mmseg\core\seg\__init__.py /^from .sampler import BasePixelSampler, OHEMPixelSampler$/;" i
OHEMPixelSampler .\mmseg\core\seg\sampler\__init__.py /^from .ohem_pixel_sampler import OHEMPixelSampler$/;" i
OHEMPixelSampler .\mmseg\core\seg\sampler\ohem_pixel_sampler.py /^class OHEMPixelSampler(BasePixelSampler):$/;" c
OHEMPixelSampler .\tests\test_sampler.py /^from mmseg.core import OHEMPixelSampler$/;" i
ObjectAttentionBlock .\mmseg\models\decode_heads\ocr_head.py /^class ObjectAttentionBlock(_SelfAttentionBlock):$/;" c
OrderedDict .\mmseg\models\segmentors\base.py /^from collections import OrderedDict$/;" i
PALETTE .\mmseg\datasets\ade.py /^ PALETTE = [[120, 120, 120], [180, 120, 120], [6, 230, 230], [80, 50, 50],$/;" v class:ADE20KDataset
PALETTE .\mmseg\datasets\chase_db1.py /^ PALETTE = [[120, 120, 120], [6, 230, 230]]$/;" v class:ChaseDB1Dataset
PALETTE .\mmseg\datasets\cityscapes.py /^ PALETTE = [[128, 64, 128], [244, 35, 232], [70, 70, 70], [102, 102, 156],$/;" v class:CityscapesDataset
PALETTE .\mmseg\datasets\custom.py /^ PALETTE = [[0, 0, 0], [40, 100, 150], [80, 150, 200], [120, 200, 10], [160, 10, 60],$/;" v class:CustomDataset
PALETTE .\mmseg\datasets\drive.py /^ PALETTE = [[120, 120, 120], [6, 230, 230]]$/;" v class:DRIVEDataset
PALETTE .\mmseg\datasets\hrf.py /^ PALETTE = [[120, 120, 120], [6, 230, 230]]$/;" v class:HRFDataset
PALETTE .\mmseg\datasets\pascal_context.py /^ PALETTE = [[120, 120, 120], [180, 120, 120], [6, 230, 230], [80, 50, 50],$/;" v class:PascalContextDataset
PALETTE .\mmseg\datasets\stare.py /^ PALETTE = [[120, 120, 120], [6, 230, 230]]$/;" v class:STAREDataset
PALETTE .\mmseg\datasets\voc.py /^ PALETTE = [[0, 0, 0], [128, 0, 0], [0, 128, 0], [128, 128, 0], [0, 0, 128],$/;" v class:PascalVOCDataset
PAM .\mmseg\models\decode_heads\da_head.py /^class PAM(_SelfAttentionBlock):$/;" c
PIPELINES .\mmseg\datasets\__init__.py /^from .builder import DATASETS, PIPELINES, build_dataloader, build_dataset$/;" i
PIPELINES .\mmseg\datasets\builder.py /^PIPELINES = Registry('pipeline')$/;" v
PIPELINES .\mmseg\datasets\pipelines\compose.py /^from ..builder import PIPELINES$/;" i
PIPELINES .\mmseg\datasets\pipelines\formating.py /^from ..builder import PIPELINES$/;" i
PIPELINES .\mmseg\datasets\pipelines\loading.py /^from ..builder import PIPELINES$/;" i
PIPELINES .\mmseg\datasets\pipelines\test_time_aug.py /^from ..builder import PIPELINES$/;" i
PIPELINES .\mmseg\datasets\pipelines\transforms.py /^from ..builder import PIPELINES$/;" i
PIPELINES .\tests\test_data\test_transform.py /^from mmseg.datasets.builder import PIPELINES$/;" i
PIPELINES .\tests\test_data\test_tta.py /^from mmseg.datasets.builder import PIPELINES$/;" i
PIXEL_SAMPLERS .\mmseg\core\seg\builder.py /^PIXEL_SAMPLERS = Registry('pixel sampler')$/;" v
PIXEL_SAMPLERS .\mmseg\core\seg\sampler\ohem_pixel_sampler.py /^from ..builder import PIXEL_SAMPLERS$/;" i
PPM .\mmseg\models\backbones\fast_scnn.py /^from mmseg.models.decode_heads.psp_head import PPM$/;" i
PPM .\mmseg\models\decode_heads\psp_head.py /^class PPM(nn.ModuleList):$/;" c
PPM .\mmseg\models\decode_heads\uper_head.py /^from .psp_head import PPM$/;" i
PPMConcat .\mmseg\models\decode_heads\ann_head.py /^class PPMConcat(nn.ModuleList):$/;" c
PSAHead .\mmseg\models\decode_heads\__init__.py /^from .psa_head import PSAHead$/;" i
PSAHead .\mmseg\models\decode_heads\psa_head.py /^class PSAHead(BaseDecodeHead):$/;" c
PSAMask .\mmseg\models\decode_heads\psa_head.py /^ PSAMask = None$/;" v
PSAMask .\mmseg\models\decode_heads\psa_head.py /^ from mmcv.ops import PSAMask$/;" i
PSPHead .\mmseg\models\decode_heads\__init__.py /^from .psp_head import PSPHead$/;" i
PSPHead .\mmseg\models\decode_heads\psp_head.py /^class PSPHead(BaseDecodeHead):$/;" c
Pad .\mmseg\datasets\pipelines\__init__.py /^from .transforms import (CLAHE, AdjustGamma, Normalize, Pad,$/;" i
Pad .\mmseg\datasets\pipelines\transforms.py /^class Pad(object):$/;" c
PascalContextDataset .\mmseg\datasets\__init__.py /^from .pascal_context import PascalContextDataset$/;" i
PascalContextDataset .\mmseg\datasets\pascal_context.py /^class PascalContextDataset(CustomDataset):$/;" c
PascalVOCDataset .\mmseg\datasets\__init__.py /^from .voc import PascalVOCDataset$/;" i
PascalVOCDataset .\mmseg\datasets\voc.py /^class PascalVOCDataset(CustomDataset):$/;" c
PatchEmbed .\mmseg\models\backbones\pvt.py /^class PatchEmbed(nn.Module):$/;" c
PatchEmbed .\mmseg\models\backbones\pvt_dia.py /^class PatchEmbed(nn.Module):$/;" c
PatchEmbed .\mmseg\models\backbones\vit.py /^class PatchEmbed(nn.Module):$/;" c
PatchEmbed .\mmseg\models\backbones\vit_mla.py /^class PatchEmbed(nn.Module):$/;" c
PhotoMetricDistortion .\mmseg\datasets\pipelines\transforms.py /^class PhotoMetricDistortion(object):$/;" c
PointHead .\mmseg\models\decode_heads\__init__.py /^from .point_head import PointHead$/;" i
PointHead .\mmseg\models\decode_heads\point_head.py /^class PointHead(BaseCascadeDecodeHead):$/;" c
PoolDataLoader .\mmseg\datasets\builder.py /^from mmcv.utils.parrots_wrapper import DataLoader, PoolDataLoader$/;" i
PyramidVisionTransformer .\mmseg\models\backbones\pvt.py /^class PyramidVisionTransformer(nn.Module):$/;" c
PyramidVisionTransformer .\mmseg\models\backbones\pvt_dia.py /^class PyramidVisionTransformer(nn.Module):$/;" c
RESULTS_LUT .\.dev\gather_models.py /^RESULTS_LUT = ['mIoU', 'mAcc', 'aAcc']$/;" v
RGB2Gray .\mmseg\datasets\pipelines\transforms.py /^class RGB2Gray(object):$/;" c
RSoftmax .\mmseg\models\backbones\resnest.py /^class RSoftmax(nn.Module):$/;" c
RandomCrop .\mmseg\datasets\pipelines\transforms.py /^class RandomCrop(object):$/;" c
RandomFlip .\mmseg\datasets\pipelines\transforms.py /^class RandomFlip(object):$/;" c
RandomRotate .\mmseg\datasets\pipelines\transforms.py /^class RandomRotate(object):$/;" c
RandomSampler .\tests\test_data\test_dataset_builder.py /^from torch.utils.data import (DistributedSampler, RandomSampler,$/;" i
Registry .\mmseg\core\seg\builder.py /^from mmcv.utils import Registry, build_from_cfg$/;" i
Registry .\mmseg\datasets\builder.py /^from mmcv.utils import Registry, build_from_cfg$/;" i
Registry .\mmseg\models\builder.py /^from mmcv.utils import Registry, build_from_cfg$/;" i
RepeatDataset .\mmseg\datasets\__init__.py /^from .dataset_wrappers import ConcatDataset, RepeatDataset$/;" i
RepeatDataset .\mmseg\datasets\builder.py /^ from .dataset_wrappers import ConcatDataset, RepeatDataset$/;" i
RepeatDataset .\mmseg\datasets\dataset_wrappers.py /^class RepeatDataset(object):$/;" c
Rerange .\mmseg\datasets\pipelines\transforms.py /^class Rerange(object):$/;" c
ResLayer .\mmseg\models\backbones\resnest.py /^from ..utils import ResLayer$/;" i
ResLayer .\mmseg\models\backbones\resnet.py /^from ..utils import ResLayer$/;" i
ResLayer .\mmseg\models\backbones\resnext.py /^from ..utils import ResLayer$/;" i
ResLayer .\mmseg\models\utils\__init__.py /^from .res_layer import ResLayer$/;" i
ResLayer .\mmseg\models\utils\res_layer.py /^class ResLayer(nn.Sequential):$/;" c
ResLayer .\tests\test_models\test_backbone.py /^from mmseg.models.utils import ResLayer$/;" i
ResNeSt .\mmseg\models\backbones\__init__.py /^from .resnest import ResNeSt$/;" i
ResNeSt .\mmseg\models\backbones\resnest.py /^class ResNeSt(ResNetV1d):$/;" c
ResNeSt .\tests\test_models\test_backbone.py /^from mmseg.models.backbones import (CGNet, FastSCNN, MobileNetV3, ResNeSt,$/;" i
ResNeXt .\mmseg\models\backbones\__init__.py /^from .resnext import ResNeXt$/;" i
ResNeXt .\mmseg\models\backbones\resnext.py /^class ResNeXt(ResNet):$/;" c
ResNet .\mmseg\models\backbones\__init__.py /^from .resnet import ResNet, ResNetV1c, ResNetV1d$/;" i
ResNet .\mmseg\models\backbones\resnet.py /^class ResNet(nn.Module):$/;" c
ResNet .\mmseg\models\backbones\resnext.py /^from .resnet import ResNet$/;" i
ResNetV1c .\mmseg\models\backbones\__init__.py /^from .resnet import ResNet, ResNetV1c, ResNetV1d$/;" i
ResNetV1c .\mmseg\models\backbones\resnet.py /^class ResNetV1c(ResNet):$/;" c
ResNetV1d .\mmseg\models\backbones\__init__.py /^from .resnet import ResNet, ResNetV1c, ResNetV1d$/;" i
ResNetV1d .\mmseg\models\backbones\resnest.py /^from .resnet import ResNetV1d$/;" i
ResNetV1d .\mmseg\models\backbones\resnet.py /^class ResNetV1d(ResNet):$/;" c
Resize .\mmseg\datasets\pipelines\transforms.py /^class Resize(object):$/;" c
SEGMENTORS .\mmseg\models\__init__.py /^from .builder import (BACKBONES, HEADS, LOSSES, SEGMENTORS, build_backbone,$/;" i
SEGMENTORS .\mmseg\models\builder.py /^SEGMENTORS = Registry('segmentor')$/;" v
SEGMENTORS .\mmseg\models\segmentors\cascade_encoder_decoder.py /^from ..builder import SEGMENTORS$/;" i
SEGMENTORS .\mmseg\models\segmentors\encoder_decoder.py /^from ..builder import SEGMENTORS$/;" i
SELayer .\mmseg\models\utils\inverted_residual.py /^from .se_layer import SELayer$/;" i
SELayer .\mmseg\models\utils\se_layer.py /^class SELayer(nn.Module):$/;" c
SELayer .\tests\test_utils\test_se_layer.py /^from mmseg.models.utils.se_layer import SELayer$/;" i
SOURCEDIR .\docs\make.bat /^set SOURCEDIR=.$/;" v
SPHINXBUILD .\docs\make.bat /^ set SPHINXBUILD=sphinx-build$/;" v
STAREDataset .\mmseg\datasets\__init__.py /^from .stare import STAREDataset$/;" i
STAREDataset .\mmseg\datasets\stare.py /^class STAREDataset(CustomDataset):$/;" c
STARE_LEN .\tools\convert_datasets\stare.py /^STARE_LEN = 20$/;" v
Scale .\mmseg\models\decode_heads\da_head.py /^from mmcv.cnn import ConvModule, Scale$/;" i
SegRescale .\mmseg\datasets\pipelines\transforms.py /^class SegRescale(object):$/;" c
SelfAttentionBlock .\mmseg\models\decode_heads\ann_head.py /^class SelfAttentionBlock(_SelfAttentionBlock):$/;" c
SelfAttentionBlock .\mmseg\models\utils\__init__.py /^from .self_attention_block import SelfAttentionBlock$/;" i
SelfAttentionBlock .\mmseg\models\utils\self_attention_block.py /^class SelfAttentionBlock(nn.Module):$/;" c
Sequence .\mmseg\datasets\pipelines\formating.py /^from collections.abc import Sequence$/;" i
SpatialGatherModule .\mmseg\models\decode_heads\ocr_head.py /^class SpatialGatherModule(nn.Module):$/;" c
SplitAttentionConv2d .\mmseg\models\backbones\resnest.py /^class SplitAttentionConv2d(nn.Module):$/;" c
SyncBatchNorm .\tests\test_models\test_forward.py /^from mmcv.utils.parrots_wrapper import SyncBatchNorm, _BatchNorm$/;" i
SyncBatchNorm .\tests\test_models\test_heads.py /^from mmcv.utils.parrots_wrapper import SyncBatchNorm$/;" i
TRAINING_LEN .\tools\convert_datasets\chase_db1.py /^TRAINING_LEN = 60$/;" v
TRAINING_LEN .\tools\convert_datasets\hrf.py /^TRAINING_LEN = 5$/;" v
TRAINING_LEN .\tools\convert_datasets\stare.py /^TRAINING_LEN = 10$/;" v
TestLoading .\tests\test_data\test_loading.py /^class TestLoading(object):$/;" c
ToDataContainer .\mmseg\datasets\pipelines\__init__.py /^from .formating import (Collect, ImageToTensor, ToDataContainer, ToTensor,$/;" i
ToDataContainer .\mmseg\datasets\pipelines\formating.py /^class ToDataContainer(object):$/;" c
ToTensor .\mmseg\datasets\pipelines\__init__.py /^from .formating import (Collect, ImageToTensor, ToDataContainer, ToTensor,$/;" i
ToTensor .\mmseg\datasets\pipelines\formating.py /^class ToTensor(object):$/;" c
ToyDataset .\tests\test_data\test_dataset_builder.py /^class ToyDataset(object):$/;" c
Transpose .\mmseg\datasets\pipelines\formating.py /^class Transpose(object):$/;" c
UNet .\mmseg\models\backbones\__init__.py /^from .unet import UNet$/;" i
UNet .\mmseg\models\backbones\unet.py /^class UNet(nn.Module):$/;" c
UPSAMPLE_LAYERS .\mmseg\models\backbones\unet.py /^from mmcv.cnn import (UPSAMPLE_LAYERS, ConvModule, build_activation_layer,$/;" i
UPerHead .\mmseg\models\decode_heads\__init__.py /^from .uper_head import UPerHead$/;" i
UPerHead .\mmseg\models\decode_heads\uper_head.py /^class UPerHead(BaseDecodeHead):$/;" c
UpConvBlock .\mmseg\models\backbones\unet.py /^from ..utils import UpConvBlock$/;" i
UpConvBlock .\mmseg\models\utils\__init__.py /^from .up_conv_block import UpConvBlock$/;" i
UpConvBlock .\mmseg\models\utils\up_conv_block.py /^class UpConvBlock(nn.Module):$/;" c
Upsample .\mmseg\models\backbones\hrnet.py /^from mmseg.ops import Upsample, resize$/;" i
Upsample .\mmseg\ops\__init__.py /^from .wrappers import Upsample, resize$/;" i
Upsample .\mmseg\ops\wrappers.py /^class Upsample(nn.Module):$/;" c
VIT_MLA .\mmseg\models\backbones\__init__.py /^from .vit_mla import VIT_MLA$/;" i
VIT_MLA .\mmseg\models\backbones\vit_mla.py /^class VIT_MLA(nn.Module):$/;" c
VIT_MLAHead .\mmseg\models\decode_heads\__init__.py /^from .vit_mla_head import VIT_MLAHead$/;" i
VIT_MLAHead .\mmseg\models\decode_heads\vit_mla_head.py /^class VIT_MLAHead(BaseDecodeHead):$/;" c
VIT_MLA_AUXIHead .\mmseg\models\decode_heads\__init__.py /^from .vit_mla_auxi_head import VIT_MLA_AUXIHead$/;" i
VIT_MLA_AUXIHead .\mmseg\models\decode_heads\vit_mla_auxi_head.py /^class VIT_MLA_AUXIHead(BaseDecodeHead):$/;" c
VisionTransformer .\mmseg\models\backbones\__init__.py /^from .vit import VisionTransformer$/;" i
VisionTransformer .\mmseg\models\backbones\vit.py /^class VisionTransformer(nn.Module):$/;" c
VisionTransformerUpHead .\mmseg\models\decode_heads\__init__.py /^from .vit_up_head import VisionTransformerUpHead$/;" i
VisionTransformerUpHead .\mmseg\models\decode_heads\vit_up_head.py /^class VisionTransformerUpHead(BaseDecodeHead):$/;" c
_BatchNorm .\mmseg\models\backbones\cgnet.py /^from mmcv.utils.parrots_wrapper import _BatchNorm$/;" i
_BatchNorm .\mmseg\models\backbones\fast_scnn.py /^from torch.nn.modules.batchnorm import _BatchNorm$/;" i
_BatchNorm .\mmseg\models\backbones\hrnet.py /^from mmcv.utils.parrots_wrapper import _BatchNorm$/;" i
_BatchNorm .\mmseg\models\backbones\mobilenet_v2.py /^from torch.nn.modules.batchnorm import _BatchNorm$/;" i
_BatchNorm .\mmseg\models\backbones\mobilenet_v3.py /^from torch.nn.modules.batchnorm import _BatchNorm$/;" i
_BatchNorm .\mmseg\models\backbones\resnet.py /^from mmcv.utils.parrots_wrapper import _BatchNorm$/;" i
_BatchNorm .\mmseg\models\backbones\unet.py /^from mmcv.utils.parrots_wrapper import _BatchNorm$/;" i
_BatchNorm .\tests\test_models\test_backbone.py /^from mmcv.utils.parrots_wrapper import _BatchNorm$/;" i
_BatchNorm .\tests\test_models\test_forward.py /^from mmcv.utils.parrots_wrapper import SyncBatchNorm, _BatchNorm$/;" i
_BatchNorm .\tests\test_models\test_unet.py /^from mmcv.utils.parrots_wrapper import _BatchNorm$/;" i
_Bottleneck .\mmseg\models\backbones\resnest.py /^from .resnet import Bottleneck as _Bottleneck$/;" i
_Bottleneck .\mmseg\models\backbones\resnext.py /^from .resnet import Bottleneck as _Bottleneck$/;" i
_C .\tools\pytorch2onnx.py /^import torch._C$/;" i
_ConcatDataset .\mmseg\datasets\dataset_wrappers.py /^from torch.utils.data.dataset import ConcatDataset as _ConcatDataset$/;" i
_SelfAttentionBlock .\mmseg\models\decode_heads\ann_head.py /^from ..utils import SelfAttentionBlock as _SelfAttentionBlock$/;" i
_SelfAttentionBlock .\mmseg\models\decode_heads\da_head.py /^from ..utils import SelfAttentionBlock as _SelfAttentionBlock$/;" i
_SelfAttentionBlock .\mmseg\models\decode_heads\ocr_head.py /^from ..utils import SelfAttentionBlock as _SelfAttentionBlock$/;" i
__all__ .\mmseg\__init__.py /^__all__ = ['__version__', 'version_info']$/;" v
__all__ .\mmseg\apis\__init__.py /^__all__ = [$/;" v
__all__ .\mmseg\core\evaluation\__init__.py /^__all__ = [$/;" v
__all__ .\mmseg\core\seg\__init__.py /^__all__ = ['build_pixel_sampler', 'BasePixelSampler', 'OHEMPixelSampler']$/;" v
__all__ .\mmseg\core\seg\sampler\__init__.py /^__all__ = ['BasePixelSampler', 'OHEMPixelSampler']$/;" v
__all__ .\mmseg\core\utils\__init__.py /^__all__ = ['add_prefix']$/;" v
__all__ .\mmseg\datasets\__init__.py /^__all__ = [$/;" v
__all__ .\mmseg\datasets\pipelines\__init__.py /^__all__ = [$/;" v
__all__ .\mmseg\models\__init__.py /^__all__ = [$/;" v
__all__ .\mmseg\models\backbones\__init__.py /^__all__ = [$/;" v
__all__ .\mmseg\models\decode_heads\__init__.py /^__all__ = [$/;" v
__all__ .\mmseg\models\losses\__init__.py /^__all__ = [$/;" v
__all__ .\mmseg\models\necks\__init__.py /^__all__ = ['FPN']$/;" v
__all__ .\mmseg\models\segmentors\__init__.py /^__all__ = ['EncoderDecoder', 'CascadeEncoderDecoder']$/;" v
__all__ .\mmseg\models\utils\__init__.py /^__all__ = [$/;" v
__all__ .\mmseg\ops\__init__.py /^__all__ = ['Upsample', 'resize', 'Encoding']$/;" v
__all__ .\mmseg\utils\__init__.py /^__all__ = ['get_root_logger', 'collect_env']$/;" v
__call__ .\mmseg\apis\inference.py /^ def __call__(self, results):$/;" m class:LoadImage file:
__call__ .\mmseg\datasets\pipelines\compose.py /^ def __call__(self, data):$/;" m class:Compose file:
__call__ .\mmseg\datasets\pipelines\formating.py /^ def __call__(self, results):$/;" m class:Collect file:
__call__ .\mmseg\datasets\pipelines\formating.py /^ def __call__(self, results):$/;" m class:DefaultFormatBundle file:
__call__ .\mmseg\datasets\pipelines\formating.py /^ def __call__(self, results):$/;" m class:ImageToTensor file:
__call__ .\mmseg\datasets\pipelines\formating.py /^ def __call__(self, results):$/;" m class:ToDataContainer file:
__call__ .\mmseg\datasets\pipelines\formating.py /^ def __call__(self, results):$/;" m class:ToTensor file:
__call__ .\mmseg\datasets\pipelines\formating.py /^ def __call__(self, results):$/;" m class:Transpose file:
__call__ .\mmseg\datasets\pipelines\loading.py /^ def __call__(self, results):$/;" m class:LoadAnnotations file:
__call__ .\mmseg\datasets\pipelines\loading.py /^ def __call__(self, results):$/;" m class:LoadImageFromFile file:
__call__ .\mmseg\datasets\pipelines\test_time_aug.py /^ def __call__(self, results):$/;" m class:MultiScaleFlipAug file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:AdjustGamma file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:CLAHE file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:Normalize file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:Pad file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:PhotoMetricDistortion file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:RGB2Gray file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:RandomCrop file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:RandomFlip file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:RandomRotate file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:Rerange file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:Resize file:
__call__ .\mmseg\datasets\pipelines\transforms.py /^ def __call__(self, results):$/;" m class:SegRescale file:
__getitem__ .\mmseg\datasets\custom.py /^ def __getitem__(self, idx):$/;" m class:CustomDataset file:
__getitem__ .\mmseg\datasets\dataset_wrappers.py /^ def __getitem__(self, idx):$/;" m class:RepeatDataset file:
__getitem__ .\tests\test_eval_hook.py /^ def __getitem__(self, idx):$/;" m class:ExampleDataset file:
__init__ .\mmseg\core\evaluation\eval_hooks.py /^ def __init__(self, dataloader, interval=1, by_epoch=False, **eval_kwargs):$/;" m class:EvalHook
__init__ .\mmseg\core\evaluation\eval_hooks.py /^ def __init__(self,$/;" m class:DistEvalHook
__init__ .\mmseg\core\seg\sampler\base_pixel_sampler.py /^ def __init__(self, **kwargs):$/;" m class:BasePixelSampler
__init__ .\mmseg\core\seg\sampler\ohem_pixel_sampler.py /^ def __init__(self, context, thresh=None, min_kept=100000):$/;" m class:OHEMPixelSampler
__init__ .\mmseg\datasets\ade.py /^ def __init__(self, **kwargs):$/;" m class:ADE20KDataset
__init__ .\mmseg\datasets\chase_db1.py /^ def __init__(self, **kwargs):$/;" m class:ChaseDB1Dataset
__init__ .\mmseg\datasets\cityscapes.py /^ def __init__(self, **kwargs):$/;" m class:CityscapesDataset
__init__ .\mmseg\datasets\custom.py /^ def __init__(self,$/;" m class:CustomDataset
__init__ .\mmseg\datasets\dataset_wrappers.py /^ def __init__(self, dataset, times):$/;" m class:RepeatDataset
__init__ .\mmseg\datasets\dataset_wrappers.py /^ def __init__(self, datasets):$/;" m class:ConcatDataset
__init__ .\mmseg\datasets\drive.py /^ def __init__(self, **kwargs):$/;" m class:DRIVEDataset
__init__ .\mmseg\datasets\hrf.py /^ def __init__(self, **kwargs):$/;" m class:HRFDataset
__init__ .\mmseg\datasets\pascal_context.py /^ def __init__(self, split, **kwargs):$/;" m class:PascalContextDataset
__init__ .\mmseg\datasets\pipelines\compose.py /^ def __init__(self, transforms):$/;" m class:Compose
__init__ .\mmseg\datasets\pipelines\formating.py /^ def __init__(self, keys):$/;" m class:ImageToTensor
__init__ .\mmseg\datasets\pipelines\formating.py /^ def __init__(self, keys):$/;" m class:ToTensor
__init__ .\mmseg\datasets\pipelines\formating.py /^ def __init__(self, keys, order):$/;" m class:Transpose
__init__ .\mmseg\datasets\pipelines\formating.py /^ def __init__(self,$/;" m class:Collect
__init__ .\mmseg\datasets\pipelines\formating.py /^ def __init__(self,$/;" m class:ToDataContainer
__init__ .\mmseg\datasets\pipelines\loading.py /^ def __init__(self,$/;" m class:LoadAnnotations
__init__ .\mmseg\datasets\pipelines\loading.py /^ def __init__(self,$/;" m class:LoadImageFromFile
__init__ .\mmseg\datasets\pipelines\test_time_aug.py /^ def __init__(self,$/;" m class:MultiScaleFlipAug
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self, clip_limit=40.0, tile_grid_size=(8, 8)):$/;" m class:CLAHE
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self, crop_size, cat_max_ratio=1., ignore_index=255):$/;" m class:RandomCrop
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self, gamma=1.0):$/;" m class:AdjustGamma
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self, mean, std, to_rgb=True):$/;" m class:Normalize
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self, min_value=0, max_value=255):$/;" m class:Rerange
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self, out_channels=None, weights=(0.299, 0.587, 0.114)):$/;" m class:RGB2Gray
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self, prob=None, direction='horizontal'):$/;" m class:RandomFlip
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self, scale_factor=1):$/;" m class:SegRescale
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self,$/;" m class:Pad
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self,$/;" m class:PhotoMetricDistortion
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self,$/;" m class:RandomRotate
__init__ .\mmseg\datasets\pipelines\transforms.py /^ def __init__(self,$/;" m class:Resize
__init__ .\mmseg\datasets\stare.py /^ def __init__(self, **kwargs):$/;" m class:STAREDataset
__init__ .\mmseg\datasets\voc.py /^ def __init__(self, split, **kwargs):$/;" m class:PascalVOCDataset
__init__ .\mmseg\models\backbones\cgnet.py /^ def __init__(self, channel, reduction=16, with_cp=False):$/;" m class:GlobalContextExtractor
__init__ .\mmseg\models\backbones\cgnet.py /^ def __init__(self, num_downsampling):$/;" m class:InputInjection
__init__ .\mmseg\models\backbones\cgnet.py /^ def __init__(self,$/;" m class:CGNet
__init__ .\mmseg\models\backbones\cgnet.py /^ def __init__(self,$/;" m class:ContextGuidedBlock
__init__ .\mmseg\models\backbones\fast_scnn.py /^ def __init__(self,$/;" m class:FastSCNN
__init__ .\mmseg\models\backbones\fast_scnn.py /^ def __init__(self,$/;" m class:FeatureFusionModule
__init__ .\mmseg\models\backbones\fast_scnn.py /^ def __init__(self,$/;" m class:GlobalFeatureExtractor
__init__ .\mmseg\models\backbones\fast_scnn.py /^ def __init__(self,$/;" m class:LearningToDownsample
__init__ .\mmseg\models\backbones\hrnet.py /^ def __init__(self,$/;" m class:HRModule
__init__ .\mmseg\models\backbones\hrnet.py /^ def __init__(self,$/;" m class:HRNet
__init__ .\mmseg\models\backbones\layers\drop.py /^ def __init__(self, drop_prob=None):$/;" m class:DropPath
__init__ .\mmseg\models\backbones\layers\drop.py /^ def __init__(self,$/;" m class:DropBlock2d
__init__ .\mmseg\models\backbones\mobilenet_v2.py /^ def __init__(self,$/;" m class:MobileNetV2
__init__ .\mmseg\models\backbones\mobilenet_v3.py /^ def __init__(self,$/;" m class:MobileNetV3
__init__ .\mmseg\models\backbones\pvt.py /^ def __init__(self, **kwargs):$/;" m class:pvt_large
__init__ .\mmseg\models\backbones\pvt.py /^ def __init__(self, **kwargs):$/;" m class:pvt_small
__init__ .\mmseg\models\backbones\pvt.py /^ def __init__(self, **kwargs):$/;" m class:pvt_small_f4
__init__ .\mmseg\models\backbones\pvt.py /^ def __init__(self, **kwargs):$/;" m class:pvt_tiny
__init__ .\mmseg\models\backbones\pvt.py /^ def __init__(self, dim, num_heads, mlp_ratio=4., qkv_bias=False, qk_scale=None, drop=0., attn_drop=0.,$/;" m class:Block
__init__ .\mmseg\models\backbones\pvt.py /^ def __init__(self, dim, num_heads=8, qkv_bias=False, qk_scale=None, attn_drop=0., proj_drop=0., sr_ratio=1):$/;" m class:Attention
__init__ .\mmseg\models\backbones\pvt.py /^ def __init__(self, img_size=224, patch_size=16, in_chans=3, embed_dim=768):$/;" m class:PatchEmbed
__init__ .\mmseg\models\backbones\pvt.py /^ def __init__(self, img_size=224, patch_size=16, in_chans=3, num_classes=1000, embed_dims=[64, 128, 256, 512],$/;" m class:PyramidVisionTransformer
__init__ .\mmseg\models\backbones\pvt.py /^ def __init__(self, in_features, hidden_features=None, out_features=None, act_layer=nn.GELU, drop=0.):$/;" m class:Mlp
__init__ .\mmseg\models\backbones\pvt_dia.py /^ def __init__(self, **kwargs):$/;" m class:pvt_small_dia
__init__ .\mmseg\models\backbones\pvt_dia.py /^ def __init__(self, **kwargs):$/;" m class:pvt_tiny_dia
__init__ .\mmseg\models\backbones\pvt_dia.py /^ def __init__(self, dim, num_heads, mlp_ratio=4., qkv_bias=False, qk_scale=None, drop=0., attn_drop=0.,$/;" m class:Block
__init__ .\mmseg\models\backbones\pvt_dia.py /^ def __init__(self, dim, num_heads=8, qkv_bias=False, qk_scale=None, attn_drop=0., proj_drop=0., sr_ratio=1):$/;" m class:Attention
__init__ .\mmseg\models\backbones\pvt_dia.py /^ def __init__(self, img_size=224, patch_size=16, in_chans=3, embed_dim=768, dilation=1):$/;" m class:PatchEmbed
__init__ .\mmseg\models\backbones\pvt_dia.py /^ def __init__(self, img_size=224, patch_size=16, in_chans=3, num_classes=1000, embed_dims=[64, 128, 256, 512],$/;" m class:PyramidVisionTransformer
__init__ .\mmseg\models\backbones\pvt_dia.py /^ def __init__(self, in_features, hidden_features=None, out_features=None, act_layer=nn.GELU, drop=0.):$/;" m class:Mlp
__init__ .\mmseg\models\backbones\resnest.py /^ def __init__(self, radix, groups):$/;" m class:RSoftmax
__init__ .\mmseg\models\backbones\resnest.py /^ def __init__(self,$/;" m class:Bottleneck
__init__ .\mmseg\models\backbones\resnest.py /^ def __init__(self,$/;" m class:ResNeSt
__init__ .\mmseg\models\backbones\resnest.py /^ def __init__(self,$/;" m class:SplitAttentionConv2d
__init__ .\mmseg\models\backbones\resnet.py /^ def __init__(self, **kwargs):$/;" m class:ResNetV1c
__init__ .\mmseg\models\backbones\resnet.py /^ def __init__(self, **kwargs):$/;" m class:ResNetV1d
__init__ .\mmseg\models\backbones\resnet.py /^ def __init__(self,$/;" m class:BasicBlock
__init__ .\mmseg\models\backbones\resnet.py /^ def __init__(self,$/;" m class:Bottleneck
__init__ .\mmseg\models\backbones\resnet.py /^ def __init__(self,$/;" m class:ResNet
__init__ .\mmseg\models\backbones\resnext.py /^ def __init__(self, groups=1, base_width=4, **kwargs):$/;" m class:ResNeXt
__init__ .\mmseg\models\backbones\resnext.py /^ def __init__(self,$/;" m class:Bottleneck
__init__ .\mmseg\models\backbones\unet.py /^ def __init__(self,$/;" m class:BasicConvBlock
__init__ .\mmseg\models\backbones\unet.py /^ def __init__(self,$/;" m class:DeconvModule
__init__ .\mmseg\models\backbones\unet.py /^ def __init__(self,$/;" m class:InterpConv
__init__ .\mmseg\models\backbones\unet.py /^ def __init__(self,$/;" m class:UNet
__init__ .\mmseg\models\backbones\vit.py /^ def __init__(self, backbone, img_size=224, feature_size=None, in_chans=3, embed_dim=768):$/;" m class:HybridEmbed
__init__ .\mmseg\models\backbones\vit.py /^ def __init__(self, dim, num_heads, mlp_ratio=4., qkv_bias=False, qk_scale=None, drop=0., attn_drop=0.,$/;" m class:Block
__init__ .\mmseg\models\backbones\vit.py /^ def __init__(self, dim, num_heads=8, qkv_bias=False, qk_scale=None, attn_drop=0., proj_drop=0.):$/;" m class:Attention
__init__ .\mmseg\models\backbones\vit.py /^ def __init__(self, img_size=224, patch_size=16, in_chans=3, embed_dim=768):$/;" m class:PatchEmbed
__init__ .\mmseg\models\backbones\vit.py /^ def __init__(self, in_features, hidden_features=None, out_features=None, act_layer=nn.GELU, drop=0.):$/;" m class:Mlp
__init__ .\mmseg\models\backbones\vit.py /^ def __init__(self, model_name='vit_large_patch16_384', img_size=384, patch_size=16, in_chans=3, embed_dim=1024, depth=24,$/;" m class:VisionTransformer
__init__ .\mmseg\models\backbones\vit_mla.py /^ def __init__(self, backbone, img_size=224, feature_size=None, in_chans=3, embed_dim=768):$/;" m class:HybridEmbed
__init__ .\mmseg\models\backbones\vit_mla.py /^ def __init__(self, dim, num_heads, mlp_ratio=4., qkv_bias=False, qk_scale=None, drop=0., attn_drop=0.,$/;" m class:Block
__init__ .\mmseg\models\backbones\vit_mla.py /^ def __init__(self, dim, num_heads=8, qkv_bias=False, qk_scale=None, attn_drop=0., proj_drop=0.):$/;" m class:Attention
__init__ .\mmseg\models\backbones\vit_mla.py /^ def __init__(self, img_size=224, patch_size=16, in_chans=3, embed_dim=768):$/;" m class:PatchEmbed
__init__ .\mmseg\models\backbones\vit_mla.py /^ def __init__(self, in_channels=1024, mla_channels=256, norm_cfg=None):$/;" m class:Conv_MLA
__init__ .\mmseg\models\backbones\vit_mla.py /^ def __init__(self, in_features, hidden_features=None, out_features=None, act_layer=nn.GELU, drop=0.):$/;" m class:Mlp
__init__ .\mmseg\models\backbones\vit_mla.py /^ def __init__(self, model_name='vit_large_patch16_384', img_size=384, patch_size=16, in_chans=3, embed_dim=1024, depth=24,$/;" m class:VIT_MLA
__init__ .\mmseg\models\decode_heads\ann_head.py /^ def __init__(self, in_channels, channels, out_channels, query_scales,$/;" m class:APNB
__init__ .\mmseg\models\decode_heads\ann_head.py /^ def __init__(self, low_in_channels, high_in_channels, channels,$/;" m class:AFNB
__init__ .\mmseg\models\decode_heads\ann_head.py /^ def __init__(self, low_in_channels, high_in_channels, channels,$/;" m class:SelfAttentionBlock
__init__ .\mmseg\models\decode_heads\ann_head.py /^ def __init__(self, pool_scales=(1, 3, 6, 8)):$/;" m class:PPMConcat
__init__ .\mmseg\models\decode_heads\ann_head.py /^ def __init__(self,$/;" m class:ANNHead
__init__ .\mmseg\models\decode_heads\apc_head.py /^ def __init__(self, pool_scale, fusion, in_channels, channels, conv_cfg,$/;" m class:ACM
__init__ .\mmseg\models\decode_heads\apc_head.py /^ def __init__(self, pool_scales=(1, 2, 3, 6), fusion=True, **kwargs):$/;" m class:APCHead
__init__ .\mmseg\models\decode_heads\aspp_head.py /^ def __init__(self, dilations, in_channels, channels, conv_cfg, norm_cfg,$/;" m class:ASPPModule
__init__ .\mmseg\models\decode_heads\aspp_head.py /^ def __init__(self, dilations=(1, 6, 12, 18), **kwargs):$/;" m class:ASPPHead
__init__ .\mmseg\models\decode_heads\cascade_decode_head.py /^ def __init__(self, *args, **kwargs):$/;" m class:BaseCascadeDecodeHead
__init__ .\mmseg\models\decode_heads\cc_head.py /^ def __init__(self, recurrence=2, **kwargs):$/;" m class:CCHead
__init__ .\mmseg\models\decode_heads\da_head.py /^ def __init__(self):$/;" m class:CAM
__init__ .\mmseg\models\decode_heads\da_head.py /^ def __init__(self, in_channels, channels):$/;" m class:PAM
__init__ .\mmseg\models\decode_heads\da_head.py /^ def __init__(self, pam_channels, **kwargs):$/;" m class:DAHead
__init__ .\mmseg\models\decode_heads\decode_head.py /^ def __init__(self,$/;" m class:BaseDecodeHead
__init__ .\mmseg\models\decode_heads\dm_head.py /^ def __init__(self, filter_size, fusion, in_channels, channels, conv_cfg,$/;" m class:DCM
__init__ .\mmseg\models\decode_heads\dm_head.py /^ def __init__(self, filter_sizes=(1, 3, 5, 7), fusion=False, **kwargs):$/;" m class:DMHead
__init__ .\mmseg\models\decode_heads\dnl_head.py /^ def __init__(self, *arg, temperature, **kwargs):$/;" m class:DisentangledNonLocal2d
__init__ .\mmseg\models\decode_heads\dnl_head.py /^ def __init__(self,$/;" m class:DNLHead
__init__ .\mmseg\models\decode_heads\ema_head.py /^ def __init__(self, channels, num_bases, num_stages, momentum):$/;" m class:EMAModule
__init__ .\mmseg\models\decode_heads\ema_head.py /^ def __init__(self,$/;" m class:EMAHead
__init__ .\mmseg\models\decode_heads\enc_head.py /^ def __init__(self, in_channels, num_codes, conv_cfg, norm_cfg, act_cfg):$/;" m class:EncModule
__init__ .\mmseg\models\decode_heads\enc_head.py /^ def __init__(self,$/;" m class:EncHead
__init__ .\mmseg\models\decode_heads\fcn_head.py /^ def __init__(self,$/;" m class:FCNHead
__init__ .\mmseg\models\decode_heads\fpn_head.py /^ def __init__(self, feature_strides, **kwargs):$/;" m class:FPNHead
__init__ .\mmseg\models\decode_heads\gc_head.py /^ def __init__(self,$/;" m class:GCHead
__init__ .\mmseg\models\decode_heads\layers\drop.py /^ def __init__(self, drop_prob=None):$/;" m class:DropPath
__init__ .\mmseg\models\decode_heads\layers\drop.py /^ def __init__(self,$/;" m class:DropBlock2d
__init__ .\mmseg\models\decode_heads\lraspp_head.py /^ def __init__(self, branch_channels=(32, 64), **kwargs):$/;" m class:LRASPPHead
__init__ .\mmseg\models\decode_heads\nl_head.py /^ def __init__(self,$/;" m class:NLHead
__init__ .\mmseg\models\decode_heads\ocr_head.py /^ def __init__(self, in_channels, channels, scale, conv_cfg, norm_cfg,$/;" m class:ObjectAttentionBlock
__init__ .\mmseg\models\decode_heads\ocr_head.py /^ def __init__(self, ocr_channels, scale=1, **kwargs):$/;" m class:OCRHead
__init__ .\mmseg\models\decode_heads\ocr_head.py /^ def __init__(self, scale):$/;" m class:SpatialGatherModule
__init__ .\mmseg\models\decode_heads\point_head.py /^ def __init__(self,$/;" m class:PointHead
__init__ .\mmseg\models\decode_heads\psa_head.py /^ def __init__(self,$/;" m class:PSAHead
__init__ .\mmseg\models\decode_heads\psp_head.py /^ def __init__(self, pool_scales, in_channels, channels, conv_cfg, norm_cfg,$/;" m class:PPM
__init__ .\mmseg\models\decode_heads\psp_head.py /^ def __init__(self, pool_scales=(1, 2, 3, 6), **kwargs):$/;" m class:PSPHead
__init__ .\mmseg\models\decode_heads\sep_aspp_head.py /^ def __init__(self, **kwargs):$/;" m class:DepthwiseSeparableASPPModule
__init__ .\mmseg\models\decode_heads\sep_aspp_head.py /^ def __init__(self, c1_in_channels, c1_channels, **kwargs):$/;" m class:DepthwiseSeparableASPPHead
__init__ .\mmseg\models\decode_heads\sep_fcn_head.py /^ def __init__(self, **kwargs):$/;" m class:DepthwiseSeparableFCNHead
__init__ .\mmseg\models\decode_heads\uper_head.py /^ def __init__(self, pool_scales=(1, 2, 3, 6), **kwargs):$/;" m class:UPerHead
__init__ .\mmseg\models\decode_heads\vit_mla_auxi_head.py /^ def __init__(self, img_size=768, **kwargs):$/;" m class:VIT_MLA_AUXIHead
__init__ .\mmseg\models\decode_heads\vit_mla_head.py /^ def __init__(self, img_size=768, mla_channels=256, mlahead_channels=128, $/;" m class:VIT_MLAHead
__init__ .\mmseg\models\decode_heads\vit_mla_head.py /^ def __init__(self, mla_channels=256, mlahead_channels=128, norm_cfg=None):$/;" m class:MLAHead
__init__ .\mmseg\models\decode_heads\vit_up_head.py /^ def __init__(self, img_size=768, embed_dim=1024, $/;" m class:VisionTransformerUpHead
__init__ .\mmseg\models\losses\accuracy.py /^ def __init__(self, topk=(1, ), thresh=None):$/;" m class:Accuracy
__init__ .\mmseg\models\losses\cross_entropy_loss.py /^ def __init__(self,$/;" m class:CrossEntropyLoss
__init__ .\mmseg\models\losses\lovasz_loss.py /^ def __init__(self,$/;" m class:LovaszLoss
__init__ .\mmseg\models\necks\fpn.py /^ def __init__(self,$/;" m class:FPN
__init__ .\mmseg\models\segmentors\base.py /^ def __init__(self):$/;" m class:BaseSegmentor
__init__ .\mmseg\models\segmentors\cascade_encoder_decoder.py /^ def __init__(self,$/;" m class:CascadeEncoderDecoder
__init__ .\mmseg\models\segmentors\encoder_decoder.py /^ def __init__(self,$/;" m class:EncoderDecoder
__init__ .\mmseg\models\utils\inverted_residual.py /^ def __init__(self,$/;" m class:InvertedResidual
__init__ .\mmseg\models\utils\inverted_residual.py /^ def __init__(self,$/;" m class:InvertedResidualV3
__init__ .\mmseg\models\utils\res_layer.py /^ def __init__(self,$/;" m class:ResLayer
__init__ .\mmseg\models\utils\se_layer.py /^ def __init__(self,$/;" m class:SELayer
__init__ .\mmseg\models\utils\self_attention_block.py /^ def __init__(self, key_in_channels, query_in_channels, channels,$/;" m class:SelfAttentionBlock
__init__ .\mmseg\models\utils\up_conv_block.py /^ def __init__(self,$/;" m class:UpConvBlock
__init__ .\mmseg\ops\encoding.py /^ def __init__(self, channels, num_codes):$/;" m class:Encoding
__init__ .\mmseg\ops\wrappers.py /^ def __init__(self,$/;" m class:Upsample
__init__ .\tests\test_data\test_dataset_builder.py /^ def __init__(self, cnt=0):$/;" m class:ToyDataset
__init__ .\tests\test_eval_hook.py /^ def __init__(self):$/;" m class:ExampleModel
__init__ .\tests\test_models\test_segmentor.py /^ def __init__(self):$/;" m class:ExampleBackbone
__init__ .\tests\test_models\test_segmentor.py /^ def __init__(self):$/;" m class:ExampleCascadeDecodeHead
__init__ .\tests\test_models\test_segmentor.py /^ def __init__(self):$/;" m class:ExampleDecodeHead
__item__ .\tests\test_data\test_dataset_builder.py /^ def __item__(self, idx):$/;" m class:ToyDataset file:
__len__ .\mmseg\datasets\custom.py /^ def __len__(self):$/;" m class:CustomDataset file:
__len__ .\mmseg\datasets\dataset_wrappers.py /^ def __len__(self):$/;" m class:RepeatDataset file:
__len__ .\tests\test_data\test_dataset_builder.py /^ def __len__(self):$/;" m class:ToyDataset file:
__len__ .\tests\test_eval_hook.py /^ def __len__(self):$/;" m class:ExampleDataset file:
__metaclass__ .\mmseg\models\segmentors\base.py /^ __metaclass__ = ABCMeta$/;" v class:BaseSegmentor
__repr__ .\mmseg\datasets\pipelines\compose.py /^ def __repr__(self):$/;" m class:Compose file:
__repr__ .\mmseg\datasets\pipelines\formating.py /^ def __repr__(self):$/;" m class:Collect file:
__repr__ .\mmseg\datasets\pipelines\formating.py /^ def __repr__(self):$/;" m class:DefaultFormatBundle file:
__repr__ .\mmseg\datasets\pipelines\formating.py /^ def __repr__(self):$/;" m class:ImageToTensor file:
__repr__ .\mmseg\datasets\pipelines\formating.py /^ def __repr__(self):$/;" m class:ToDataContainer file:
__repr__ .\mmseg\datasets\pipelines\formating.py /^ def __repr__(self):$/;" m class:ToTensor file:
__repr__ .\mmseg\datasets\pipelines\formating.py /^ def __repr__(self):$/;" m class:Transpose file:
__repr__ .\mmseg\datasets\pipelines\loading.py /^ def __repr__(self):$/;" m class:LoadAnnotations file:
__repr__ .\mmseg\datasets\pipelines\loading.py /^ def __repr__(self):$/;" m class:LoadImageFromFile file:
__repr__ .\mmseg\datasets\pipelines\test_time_aug.py /^ def __repr__(self):$/;" m class:MultiScaleFlipAug file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:AdjustGamma file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:CLAHE file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:Normalize file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:Pad file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:PhotoMetricDistortion file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:RGB2Gray file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:RandomCrop file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:RandomFlip file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:RandomRotate file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:Rerange file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:Resize file:
__repr__ .\mmseg\datasets\pipelines\transforms.py /^ def __repr__(self):$/;" m class:SegRescale file:
__repr__ .\mmseg\ops\encoding.py /^ def __repr__(self):$/;" m class:Encoding file:
__version__ .\mmseg\__init__.py /^from .version import __version__, version_info$/;" i
__version__ .\mmseg\version.py /^__version__ = '0.11.0'$/;" v
__version__ .\tools\train.py /^from mmseg import __version__$/;" i
_auxiliary_head_forward_train .\mmseg\models\segmentors\encoder_decoder.py /^ def _auxiliary_head_forward_train(self, x, img_metas, gt_semantic_seg):$/;" m class:EncoderDecoder
_base_ .\configs\_base_\datasets\Recipe1M_768x768.py /^_base_ = '.\/Recipe1M.py'$/;" v
_base_ .\configs\_base_\datasets\cityscapes_769x769.py /^_base_ = '.\/cityscapes.py'$/;" v
_base_ .\configs\_base_\datasets\pascal_voc12_aug.py /^_base_ = '.\/pascal_voc12.py'$/;" v
_base_ .\configs\ann\ann_r101-d8_512x1024_40k_cityscapes.py /^_base_ = '.\/ann_r50-d8_512x1024_40k_cityscapes.py'$/;" v
_base_ .\configs\ann\ann_r101-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/ann_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\ann\ann_r101-d8_512x512_160k_ade20k.py /^_base_ = '.\/ann_r50-d8_512x512_160k_ade20k.py'$/;" v
_base_ .\configs\ann\ann_r101-d8_512x512_20k_voc12aug.py /^_base_ = '.\/ann_r50-d8_512x512_20k_voc12aug.py'$/;" v
_base_ .\configs\ann\ann_r101-d8_512x512_40k_voc12aug.py /^_base_ = '.\/ann_r50-d8_512x512_40k_voc12aug.py'$/;" v
_base_ .\configs\ann\ann_r101-d8_512x512_80k_ade20k.py /^_base_ = '.\/ann_r50-d8_512x512_80k_ade20k.py'$/;" v
_base_ .\configs\ann\ann_r101-d8_769x769_40k_cityscapes.py /^_base_ = '.\/ann_r50-d8_769x769_40k_cityscapes.py'$/;" v
_base_ .\configs\ann\ann_r101-d8_769x769_80k_cityscapes.py /^_base_ = '.\/ann_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\ann\ann_r50-d8_512x1024_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\ann\ann_r50-d8_512x1024_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\ann\ann_r50-d8_512x512_160k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\ann\ann_r50-d8_512x512_20k_voc12aug.py /^_base_ = [$/;" v
_base_ .\configs\ann\ann_r50-d8_512x512_40k_voc12aug.py /^_base_ = [$/;" v
_base_ .\configs\ann\ann_r50-d8_512x512_80k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\ann\ann_r50-d8_769x769_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\ann\ann_r50-d8_769x769_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\apcnet\apcnet_r101-d8_512x1024_40k_cityscapes.py /^_base_ = '.\/apcnet_r50-d8_512x1024_40k_cityscapes.py'$/;" v
_base_ .\configs\apcnet\apcnet_r101-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/apcnet_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\apcnet\apcnet_r101-d8_512x512_160k_ade20k.py /^_base_ = '.\/apcnet_r50-d8_512x512_160k_ade20k.py'$/;" v
_base_ .\configs\apcnet\apcnet_r101-d8_512x512_80k_ade20k.py /^_base_ = '.\/apcnet_r50-d8_512x512_80k_ade20k.py'$/;" v
_base_ .\configs\apcnet\apcnet_r101-d8_769x769_40k_cityscapes.py /^_base_ = '.\/apcnet_r50-d8_769x769_40k_cityscapes.py'$/;" v
_base_ .\configs\apcnet\apcnet_r101-d8_769x769_80k_cityscapes.py /^_base_ = '.\/apcnet_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\apcnet\apcnet_r50-d8_512x1024_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\apcnet\apcnet_r50-d8_512x1024_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\apcnet\apcnet_r50-d8_512x512_160k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\apcnet\apcnet_r50-d8_512x512_80k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\apcnet\apcnet_r50-d8_769x769_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\apcnet\apcnet_r50-d8_769x769_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\ccnet\ccnet_r101-d8_512x1024_40k_Recipe1M.py /^_base_ = ['..\/_base_\/datasets\/Recipe1M.py',$/;" v
_base_ .\configs\ccnet\ccnet_r101-d8_512x1024_40k_cityscapes.py /^_base_ = '.\/ccnet_r50-d8_512x1024_40k_cityscapes.py'$/;" v
_base_ .\configs\ccnet\ccnet_r101-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/ccnet_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\ccnet\ccnet_r101-d8_512x512_160k_ade20k.py /^_base_ = '.\/ccnet_r50-d8_512x512_160k_ade20k.py'$/;" v
_base_ .\configs\ccnet\ccnet_r101-d8_512x512_20k_voc12aug.py /^_base_ = '.\/ccnet_r50-d8_512x512_20k_voc12aug.py'$/;" v
_base_ .\configs\ccnet\ccnet_r101-d8_512x512_40k_voc12aug.py /^_base_ = '.\/ccnet_r50-d8_512x512_40k_voc12aug.py'$/;" v
_base_ .\configs\ccnet\ccnet_r101-d8_512x512_80k_ade20k.py /^_base_ = '.\/ccnet_r50-d8_512x512_80k_ade20k.py'$/;" v
_base_ .\configs\ccnet\ccnet_r101-d8_769x769_40k_cityscapes.py /^_base_ = '.\/ccnet_r50-d8_769x769_40k_cityscapes.py'$/;" v
_base_ .\configs\ccnet\ccnet_r101-d8_769x769_80k_cityscapes.py /^_base_ = '.\/ccnet_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\ccnet\ccnet_r50-d8_512x1024_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\ccnet\ccnet_r50-d8_512x1024_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\ccnet\ccnet_r50-d8_512x512_160k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\ccnet\ccnet_r50-d8_512x512_20k_voc12aug.py /^_base_ = [$/;" v
_base_ .\configs\ccnet\ccnet_r50-d8_512x512_40k_voc12aug.py /^_base_ = [$/;" v
_base_ .\configs\ccnet\ccnet_r50-d8_512x512_80k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\ccnet\ccnet_r50-d8_769x769_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\ccnet\ccnet_r50-d8_769x769_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\cgnet\cgnet_512x1024_60k_cityscapes.py /^_base_ = ['..\/_base_\/models\/cgnet.py', '..\/_base_\/default_runtime.py']$/;" v
_base_ .\configs\cgnet\cgnet_680x680_60k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\danet\danet_r101-d8_512x1024_40k_cityscapes.py /^_base_ = '.\/danet_r50-d8_512x1024_40k_cityscapes.py'$/;" v
_base_ .\configs\danet\danet_r101-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/danet_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\danet\danet_r101-d8_512x512_160k_ade20k.py /^_base_ = '.\/danet_r50-d8_512x512_160k_ade20k.py'$/;" v
_base_ .\configs\danet\danet_r101-d8_512x512_20k_voc12aug.py /^_base_ = '.\/danet_r50-d8_512x512_20k_voc12aug.py'$/;" v
_base_ .\configs\danet\danet_r101-d8_512x512_40k_voc12aug.py /^_base_ = '.\/danet_r50-d8_512x512_40k_voc12aug.py'$/;" v
_base_ .\configs\danet\danet_r101-d8_512x512_80k_ade20k.py /^_base_ = '.\/danet_r50-d8_512x512_80k_ade20k.py'$/;" v
_base_ .\configs\danet\danet_r101-d8_769x769_40k_cityscapes.py /^_base_ = '.\/danet_r50-d8_769x769_40k_cityscapes.py'$/;" v
_base_ .\configs\danet\danet_r101-d8_769x769_80k_cityscapes.py /^_base_ = '.\/danet_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\danet\danet_r50-d8_512x1024_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\danet\danet_r50-d8_512x1024_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\danet\danet_r50-d8_512x512_160k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\danet\danet_r50-d8_512x512_20k_voc12aug.py /^_base_ = [$/;" v
_base_ .\configs\danet\danet_r50-d8_512x512_40k_voc12aug.py /^_base_ = [$/;" v
_base_ .\configs\danet\danet_r50-d8_512x512_80k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\danet\danet_r50-d8_769x769_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\danet\danet_r50-d8_769x769_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d16-mg124_512x1024_40k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_512x1024_40k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d16-mg124_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d8_480x480_40k_pascal_context.py /^_base_ = '.\/deeplabv3_r50-d8_480x480_40k_pascal_context.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d8_480x480_80k_pascal_context.py /^_base_ = '.\/deeplabv3_r50-d8_480x480_80k_pascal_context.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d8_512x1024_40k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_512x1024_40k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d8_512x512_160k_ade20k.py /^_base_ = '.\/deeplabv3_r50-d8_512x512_160k_ade20k.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d8_512x512_20k_voc12aug.py /^_base_ = '.\/deeplabv3_r50-d8_512x512_20k_voc12aug.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d8_512x512_40k_voc12aug.py /^_base_ = '.\/deeplabv3_r50-d8_512x512_40k_voc12aug.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d8_512x512_80k_ade20k.py /^_base_ = '.\/deeplabv3_r50-d8_512x512_80k_ade20k.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d8_769x769_40k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_769x769_40k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101-d8_769x769_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101b-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r101b-d8_769x769_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r18-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r18-d8_769x769_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r18b-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r18b-d8_769x769_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50-d8_480x480_40k_pascal_context.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50-d8_480x480_80k_pascal_context.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50-d8_512x1024_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50-d8_512x1024_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50-d8_512x512_160k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50-d8_512x512_20k_voc12aug.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50-d8_512x512_40k_voc12aug.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50-d8_512x512_80k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50-d8_769x769_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50-d8_769x769_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50b-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3\deeplabv3_r50b-d8_769x769_80k_cityscapes.py /^_base_ = '.\/deeplabv3_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d16-mg124_512x1024_40k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x1024_40k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d16-mg124_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d8_480x480_40k_pascal_context.py /^_base_ = '.\/deeplabv3plus_r50-d8_480x480_40k_pascal_context.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d8_480x480_80k_pascal_context.py /^_base_ = '.\/deeplabv3plus_r50-d8_480x480_80k_pascal_context.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d8_512x1024_40k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x1024_40k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d8_512x512_160k_ade20k.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x512_160k_ade20k.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d8_512x512_20k_voc12aug.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x512_20k_voc12aug.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d8_512x512_40k_voc12aug.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x512_40k_voc12aug.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d8_512x512_80k_ade20k.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x512_80k_ade20k.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d8_769x769_40k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_769x769_40k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101-d8_769x769_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101b-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r101b-d8_769x769_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r18-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r18-d8_769x769_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r18b-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r18b-d8_769x769_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50-d8_480x480_40k_pascal_context.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50-d8_480x480_80k_pascal_context.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50-d8_512x1024_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50-d8_512x1024_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50-d8_512x512_160k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50-d8_512x512_20k_voc12aug.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50-d8_512x512_40k_voc12aug.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50-d8_512x512_80k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50-d8_769x769_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50-d8_769x769_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50b-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\deeplabv3plus\deeplabv3plus_r50b-d8_769x769_80k_cityscapes.py /^_base_ = '.\/deeplabv3plus_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\dmnet\dmnet_r101-d8_512x1024_40k_cityscapes.py /^_base_ = '.\/dmnet_r50-d8_512x1024_40k_cityscapes.py'$/;" v
_base_ .\configs\dmnet\dmnet_r101-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/dmnet_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\dmnet\dmnet_r101-d8_512x512_160k_ade20k.py /^_base_ = '.\/dmnet_r50-d8_512x512_160k_ade20k.py'$/;" v
_base_ .\configs\dmnet\dmnet_r101-d8_512x512_80k_ade20k.py /^_base_ = '.\/dmnet_r50-d8_512x512_80k_ade20k.py'$/;" v
_base_ .\configs\dmnet\dmnet_r101-d8_769x769_40k_cityscapes.py /^_base_ = '.\/dmnet_r50-d8_769x769_40k_cityscapes.py'$/;" v
_base_ .\configs\dmnet\dmnet_r101-d8_769x769_80k_cityscapes.py /^_base_ = '.\/dmnet_r50-d8_769x769_80k_cityscapes.py'$/;" v
_base_ .\configs\dmnet\dmnet_r50-d8_512x1024_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\dmnet\dmnet_r50-d8_512x1024_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\dmnet\dmnet_r50-d8_512x512_160k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\dmnet\dmnet_r50-d8_512x512_80k_ade20k.py /^_base_ = [$/;" v
_base_ .\configs\dmnet\dmnet_r50-d8_769x769_40k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\dmnet\dmnet_r50-d8_769x769_80k_cityscapes.py /^_base_ = [$/;" v
_base_ .\configs\dnlnet\dnl_r101-d8_512x1024_40k_cityscapes.py /^_base_ = '.\/dnl_r50-d8_512x1024_40k_cityscapes.py'$/;" v
_base_ .\configs\dnlnet\dnl_r101-d8_512x1024_80k_cityscapes.py /^_base_ = '.\/dnl_r50-d8_512x1024_80k_cityscapes.py'$/;" v
_base_ .\configs\dnlnet\dnl_r101-d8_512x512_160k_ade20k.py /^_base_ = '.\/dnl_r50-d8_512x512_160k_ade20k.py'$/;" v
_base_ .\configs\dnlnet\dnl_r101-d8_512x512_80k_ade20k.py /^_base_ = '.\/dnl_r50-d8_512x512_80k_ade20k.py'$/;" v