Skip to content

Commit

Permalink
Update __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
ccanamero committed Aug 20, 2024
1 parent 737880c commit 877eb38
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion mmcls/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@
from .samplers import DistributedSampler, RepeatAugSampler
from .stanford_cars import StanfordCars
from .voc import VOC
from .pipelines.test_time_aug import MultiScaleFlipAug
from .pipelines.manage_multichannel_image import (
LoadMultiChannelImgFromFile,
ResizeMultiChannel,
BrightnessTransformMultiChannel,
NormalizeMinMaxChannelwise
)


__all__ = [
Expand All @@ -22,5 +29,6 @@
'DistributedSampler', 'ConcatDataset', 'RepeatDataset',
'ClassBalancedDataset', 'DATASETS', 'PIPELINES', 'ImageNet21k', 'SAMPLERS',
'build_sampler', 'RepeatAugSampler', 'KFoldDataset', 'CUB',
'CustomDataset', 'StanfordCars'
'CustomDataset', 'StanfordCars', 'MultiScaleFlipAug', 'LoadMultiChannelImgFromFile',
'ResizeMultiChannel', 'BrightnessTransformMultiChannel', 'NormalizeMinMaxChannelwise'
]

0 comments on commit 877eb38

Please sign in to comment.