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

#450 Feature/sg 321 ddp sampler handling for external dataloaders

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:feature/SG-321_ddp_sampler_handling_for_external_dataloaders
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
  1. # PACKAGE IMPORTS FOR EXTERNAL USAGE
  2. from tests.unit_tests.factories_test import FactoriesTest
  3. from tests.unit_tests.optimizer_params_override_test import TrainOptimizerParamsOverride
  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. from tests.unit_tests.training_params_factory_test import TrainingParamsTest
  20. __all__ = [
  21. "ZeroWdForBnBiasTest",
  22. "SaveCkptListUnitTest",
  23. "AllArchitecturesTest",
  24. "TestAverageMeter",
  25. "TestRepVgg",
  26. "TestWithoutTrainTest",
  27. "StrictLoadEnumTest",
  28. "TrainWithInitializedObjectsTest",
  29. "TestAutoAugment",
  30. "OhemLossTest",
  31. "EarlyStopTest",
  32. "SegmentationTransformsTest",
  33. "PretrainedModelsUnitTest",
  34. "TestConvBnRelu",
  35. "FactoriesTest",
  36. "InitializeWithDataloadersTest",
  37. "TrainingParamsTest",
  38. "TrainOptimizerParamsOverride",
  39. ]
Discard
Tip!

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