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.externel_dataset_interface_test import TestExternalDatasetInterface
  3. from tests.unit_tests.dataset_interface_test import TestDatasetInterface
  4. from tests.unit_tests.load_checkpoint_from_direct_path_test import LoadCheckpointFromDirectPathTest
  5. from tests.unit_tests.strictload_enum_test import StrictLoadEnumTest
  6. from tests.unit_tests.zero_weight_decay_on_bias_bn_test import ZeroWdForBnBiasTest
  7. from tests.unit_tests.save_ckpt_test import SaveCkptListUnitTest
  8. from tests.unit_tests.yolov5_unit_test import TestYoloV5
  9. from tests.unit_tests.all_architectures_test import AllArchitecturesTest
  10. from tests.unit_tests.average_meter_test import TestAverageMeter
  11. from tests.unit_tests.module_utils_test import TestModuleUtils
  12. from tests.unit_tests.repvgg_unit_test import TestRepVgg
  13. from tests.unit_tests.test_without_train_test import TestWithoutTrainTest
  14. from tests.unit_tests.train_with_intialized_param_args_test import TrainWithInitializedObjectsTest
  15. from tests.unit_tests.test_auto_augment import TestAutoAugment
  16. from tests.unit_tests.ohem_loss_test import OhemLossTest
  17. from tests.unit_tests.early_stop_test import EarlyStopTest
  18. from tests.unit_tests.segmentation_transforms_test import SegmentationTransformsTest
  19. from tests.unit_tests.pretrained_models_unit_test import PretrainedModelsUnitTest
  20. __all__ = [TestExternalDatasetInterface, TestDatasetInterface, ZeroWdForBnBiasTest, SaveCkptListUnitTest,
  21. TestYoloV5, AllArchitecturesTest, TestAverageMeter, TestModuleUtils, TestRepVgg, TestWithoutTrainTest,
  22. LoadCheckpointFromDirectPathTest, StrictLoadEnumTest, TrainWithInitializedObjectsTest, TestAutoAugment,
  23. OhemLossTest, EarlyStopTest, SegmentationTransformsTest, PretrainedModelsUnitTest]
Tip!

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

Comments

Loading...