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 3.2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  1. # PACKAGE IMPORTS FOR EXTERNAL USAGE
  2. from tests.unit_tests.crash_tips_test import CrashTipTest
  3. from tests.unit_tests.double_training_test import CallTrainTwiceTest
  4. from tests.unit_tests.factories_test import FactoriesTest
  5. from tests.unit_tests.optimizer_params_override_test import TrainOptimizerParamsOverride
  6. from tests.unit_tests.resume_training_test import ResumeTrainingTest
  7. from tests.unit_tests.strictload_enum_test import StrictLoadEnumTest
  8. from tests.unit_tests.test_export_recipe import TestExportRecipe
  9. from tests.unit_tests.train_after_test_test import CallTrainAfterTestTest
  10. from tests.unit_tests.zero_weight_decay_on_bias_bn_test import ZeroWdForBnBiasTest
  11. from tests.unit_tests.save_ckpt_test import SaveCkptListUnitTest
  12. from tests.unit_tests.average_meter_test import TestAverageMeter
  13. from tests.unit_tests.repvgg_unit_test import TestRepVgg
  14. from tests.unit_tests.test_without_train_test import TestWithoutTrainTest
  15. from tests.unit_tests.train_with_intialized_param_args_test import TrainWithInitializedObjectsTest
  16. from tests.unit_tests.test_auto_augment import TestAutoAugment
  17. from tests.unit_tests.ohem_loss_test import OhemLossTest
  18. from tests.unit_tests.early_stop_test import EarlyStopTest
  19. from tests.unit_tests.segmentation_transforms_test import SegmentationTransformsTest
  20. from tests.unit_tests.pretrained_models_unit_test import PretrainedModelsUnitTest
  21. from tests.unit_tests.conv_bn_relu_test import TestConvBnRelu
  22. from tests.unit_tests.initialize_with_dataloaders_test import InitializeWithDataloadersTest
  23. from tests.unit_tests.training_params_factory_test import TrainingParamsTest
  24. from tests.unit_tests.config_inspector_test import ConfigInspectTest
  25. from tests.unit_tests.transforms_test import TestTransforms
  26. from tests.unit_tests.post_prediction_callback_test import TestPostPredictionCallback
  27. from tests.unit_tests.test_predict import TestModelPredict
  28. from tests.unit_tests.test_deprecate import TestDeprecationDecorator
  29. from tests.unit_tests.test_models_factory import DynamicModelTests
  30. from tests.unit_tests.test_mixed_precision_cpu import TestMixedPrecisionDisabled
  31. from tests.unit_tests.test_data_adapters import TestClassificationAdapter, TestDetectionAdapter, TestSegmentationAdapter
  32. from tests.unit_tests.optical_flow_loss_test import OpticalFlowLossTest
  33. from tests.unit_tests.test_optical_flow_metric import TestOpticalFlowMetric
  34. __all__ = [
  35. "CrashTipTest",
  36. "ZeroWdForBnBiasTest",
  37. "SaveCkptListUnitTest",
  38. "TestAverageMeter",
  39. "TestRepVgg",
  40. "TestWithoutTrainTest",
  41. "StrictLoadEnumTest",
  42. "TrainWithInitializedObjectsTest",
  43. "TestAutoAugment",
  44. "OhemLossTest",
  45. "EarlyStopTest",
  46. "SegmentationTransformsTest",
  47. "PretrainedModelsUnitTest",
  48. "TestConvBnRelu",
  49. "FactoriesTest",
  50. "InitializeWithDataloadersTest",
  51. "TrainingParamsTest",
  52. "TrainOptimizerParamsOverride",
  53. "CallTrainTwiceTest",
  54. "ResumeTrainingTest",
  55. "CallTrainAfterTestTest",
  56. "ConfigInspectTest",
  57. "TestTransforms",
  58. "TestPostPredictionCallback",
  59. "TestModelPredict",
  60. "TestDeprecationDecorator",
  61. "TestMixedPrecisionDisabled",
  62. "DynamicModelTests",
  63. "TestExportRecipe",
  64. "TestClassificationAdapter",
  65. "TestDetectionAdapter",
  66. "TestSegmentationAdapter",
  67. "OpticalFlowLossTest",
  68. "TestOpticalFlowMetric",
  69. ]
Tip!

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

Comments

Loading...