Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

__init__.py 1.7 KB

You have to be logged in to leave a comment. Sign In
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
  1. # PACKAGE IMPORTS FOR EXTERNAL USAGE
  2. from tests.unit_tests.dataset_interface_test import TestDatasetInterface
  3. from tests.unit_tests.factories_test import FactoriesTest
  4. from tests.unit_tests.strictload_enum_test import StrictLoadEnumTest
  5. from tests.unit_tests.zero_weight_decay_on_bias_bn_test import ZeroWdForBnBiasTest
  6. from tests.unit_tests.save_ckpt_test import SaveCkptListUnitTest
  7. from tests.unit_tests.all_architectures_test import AllArchitecturesTest
  8. from tests.unit_tests.average_meter_test import TestAverageMeter
  9. from tests.unit_tests.repvgg_unit_test import TestRepVgg
  10. from tests.unit_tests.test_without_train_test import TestWithoutTrainTest
  11. from tests.unit_tests.train_with_intialized_param_args_test import TrainWithInitializedObjectsTest
  12. from tests.unit_tests.test_auto_augment import TestAutoAugment
  13. from tests.unit_tests.ohem_loss_test import OhemLossTest
  14. from tests.unit_tests.early_stop_test import EarlyStopTest
  15. from tests.unit_tests.segmentation_transforms_test import SegmentationTransformsTest
  16. from tests.unit_tests.pretrained_models_unit_test import PretrainedModelsUnitTest
  17. from tests.unit_tests.conv_bn_relu_test import TestConvBnRelu
  18. from tests.unit_tests.initialize_with_dataloaders_test import InitializeWithDataloadersTest
  19. __all__ = ['TestDatasetInterface', 'ZeroWdForBnBiasTest', 'SaveCkptListUnitTest',
  20. 'AllArchitecturesTest', 'TestAverageMeter', 'TestRepVgg', 'TestWithoutTrainTest',
  21. 'StrictLoadEnumTest', 'TrainWithInitializedObjectsTest', 'TestAutoAugment',
  22. 'OhemLossTest', 'EarlyStopTest', 'SegmentationTransformsTest', 'PretrainedModelsUnitTest', 'TestConvBnRelu',
  23. 'FactoriesTest', 'InitializeWithDataloadersTest']
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...