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
26
27
28
29
30
31
32
33
34
35
36
37
38
  1. # PACKAGE IMPORTS FOR EXTERNAL USAGE
  2. from tests.unit_tests.factories_test import FactoriesTest
  3. from tests.unit_tests.strictload_enum_test import StrictLoadEnumTest
  4. from tests.unit_tests.zero_weight_decay_on_bias_bn_test import ZeroWdForBnBiasTest
  5. from tests.unit_tests.save_ckpt_test import SaveCkptListUnitTest
  6. from tests.unit_tests.all_architectures_test import AllArchitecturesTest
  7. from tests.unit_tests.average_meter_test import TestAverageMeter
  8. from tests.unit_tests.repvgg_unit_test import TestRepVgg
  9. from tests.unit_tests.test_without_train_test import TestWithoutTrainTest
  10. from tests.unit_tests.train_with_intialized_param_args_test import TrainWithInitializedObjectsTest
  11. from tests.unit_tests.test_auto_augment import TestAutoAugment
  12. from tests.unit_tests.ohem_loss_test import OhemLossTest
  13. from tests.unit_tests.early_stop_test import EarlyStopTest
  14. from tests.unit_tests.segmentation_transforms_test import SegmentationTransformsTest
  15. from tests.unit_tests.pretrained_models_unit_test import PretrainedModelsUnitTest
  16. from tests.unit_tests.conv_bn_relu_test import TestConvBnRelu
  17. from tests.unit_tests.initialize_with_dataloaders_test import InitializeWithDataloadersTest
  18. from tests.unit_tests.training_params_factory_test import TrainingParamsTest
  19. __all__ = [
  20. "ZeroWdForBnBiasTest",
  21. "SaveCkptListUnitTest",
  22. "AllArchitecturesTest",
  23. "TestAverageMeter",
  24. "TestRepVgg",
  25. "TestWithoutTrainTest",
  26. "StrictLoadEnumTest",
  27. "TrainWithInitializedObjectsTest",
  28. "TestAutoAugment",
  29. "OhemLossTest",
  30. "EarlyStopTest",
  31. "SegmentationTransformsTest",
  32. "PretrainedModelsUnitTest",
  33. "TestConvBnRelu",
  34. "FactoriesTest",
  35. "InitializeWithDataloadersTest",
  36. "TrainingParamsTest",
  37. ]
Tip!

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

Comments

Loading...