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
|
- # PACKAGE IMPORTS FOR EXTERNAL USAGE
- from tests.unit_tests.dataset_interface_test import TestDatasetInterface
- from tests.unit_tests.factories_test import FactoriesTest
- from tests.unit_tests.load_checkpoint_from_direct_path_test import LoadCheckpointFromDirectPathTest
- from tests.unit_tests.strictload_enum_test import StrictLoadEnumTest
- from tests.unit_tests.zero_weight_decay_on_bias_bn_test import ZeroWdForBnBiasTest
- from tests.unit_tests.save_ckpt_test import SaveCkptListUnitTest
- from tests.unit_tests.all_architectures_test import AllArchitecturesTest
- from tests.unit_tests.average_meter_test import TestAverageMeter
- from tests.unit_tests.repvgg_unit_test import TestRepVgg
- from tests.unit_tests.test_without_train_test import TestWithoutTrainTest
- from tests.unit_tests.train_with_intialized_param_args_test import TrainWithInitializedObjectsTest
- from tests.unit_tests.test_auto_augment import TestAutoAugment
- from tests.unit_tests.ohem_loss_test import OhemLossTest
- from tests.unit_tests.early_stop_test import EarlyStopTest
- from tests.unit_tests.segmentation_transforms_test import SegmentationTransformsTest
- from tests.unit_tests.pretrained_models_unit_test import PretrainedModelsUnitTest
- from tests.unit_tests.conv_bn_relu_test import TestConvBnRelu
- from tests.unit_tests.initialize_with_dataloaders_test import InitializeWithDataloadersTest
- __all__ = ['TestDatasetInterface', 'ZeroWdForBnBiasTest', 'SaveCkptListUnitTest',
- 'AllArchitecturesTest', 'TestAverageMeter', 'TestRepVgg', 'TestWithoutTrainTest',
- 'LoadCheckpointFromDirectPathTest', 'StrictLoadEnumTest', 'TrainWithInitializedObjectsTest', 'TestAutoAugment',
- 'OhemLossTest', 'EarlyStopTest', 'SegmentationTransformsTest', 'PretrainedModelsUnitTest', 'TestConvBnRelu',
- 'FactoriesTest', 'InitializeWithDataloadersTest']
|