-
Notifications
You must be signed in to change notification settings - Fork 518
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/sg 216 remove dataset interface (#356)
* lint * lint cont * tests * pretrained transfer learning tests fixed * dataloaders concentrated to single file * train from config and get added * recipes updated and checked * lint * unit test fixes * lr cooldown unit testfix * pretrained models test fixes * dataloader imports and minonr fixes
- Loading branch information
Showing
114 changed files
with
827 additions
and
3,578 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
from super_gradients.training import ARCHITECTURES, losses, utils, datasets_utils, DataAugmentation, \ | ||
TestDatasetInterface, SegmentationTestDatasetInterface, DetectionTestDatasetInterface, ClassificationTestDatasetInterface, SgModel, KDModel, \ | ||
from super_gradients.training import ARCHITECTURES, losses, utils, datasets_utils, DataAugmentation, SgModel, KDModel, \ | ||
Trainer, KDTrainer | ||
from super_gradients.common import init_trainer, is_distributed | ||
from super_gradients.examples.train_from_recipe_example import train_from_recipe | ||
from super_gradients.examples.train_from_kd_recipe_example import train_from_kd_recipe | ||
from super_gradients.sanity_check import env_sanity_check | ||
|
||
__all__ = ['ARCHITECTURES', 'losses', 'utils', 'datasets_utils', 'DataAugmentation', | ||
'TestDatasetInterface', 'Trainer', 'KDTrainer', 'SegmentationTestDatasetInterface', 'DetectionTestDatasetInterface', | ||
'ClassificationTestDatasetInterface', 'init_trainer', 'is_distributed', 'train_from_recipe', 'train_from_kd_recipe', | ||
'Trainer', 'KDTrainer', | ||
'init_trainer', 'is_distributed', 'train_from_recipe', 'train_from_kd_recipe', | ||
'env_sanity_check', 'KDModel', 'SgModel'] | ||
|
||
|
||
env_sanity_check() |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
27 changes: 0 additions & 27 deletions
27
src/super_gradients/examples/legacy/cifar_resnet/cifar_example.py
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
31 changes: 0 additions & 31 deletions
31
src/super_gradients/examples/legacy/imagenet_efficientnet/efficientnet_example.py
This file was deleted.
Oops, something went wrong.
Empty file.
30 changes: 0 additions & 30 deletions
30
src/super_gradients/examples/legacy/imagenet_mobilenetv3/mobilenetv3_imagenet_example.py
This file was deleted.
Oops, something went wrong.
Empty file.
29 changes: 0 additions & 29 deletions
29
src/super_gradients/examples/legacy/imagenet_regnetY800/regnetY800_example.py
This file was deleted.
Oops, something went wrong.
Empty file.
24 changes: 0 additions & 24 deletions
24
src/super_gradients/examples/legacy/imagenet_repvgg/imagenet_repvgg_example.py
This file was deleted.
Oops, something went wrong.
Empty file.
Oops, something went wrong.