forked from ultralytics/ultralytics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trainer + Dataloaders (ultralytics#27)
Co-authored-by: Laughing-q <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Glenn Jocher <[email protected]> Co-authored-by: Ayush Chaurasia <[email protected]> Co-authored-by: Ayush Chaurasia <[email protected]>
- Loading branch information
1 parent
7a2e5fd
commit d0b3c98
Showing
27 changed files
with
2,885 additions
and
9 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 |
---|---|---|
|
@@ -127,3 +127,7 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# datasets and projects | ||
datasets/ | ||
ultralytics-yolo/ |
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,12 +1,5 @@ | ||
# Include the README | ||
include *.md | ||
include requirements.txt | ||
|
||
# Include the license file | ||
include LICENSE | ||
|
||
# Include setup.py | ||
include setup.py | ||
|
||
# Include the data files | ||
recursive-include data * | ||
recursive-include ultralytics *.yaml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .engine.trainer import BaseTrainer | ||
|
||
__all__ = ["BaseTrainer"] # allow simpler import |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .build import build_classification_dataloader, build_dataloader | ||
from .dataset import ClassificationDataset, SemanticDataset, YOLODataset | ||
from .dataset_wrappers import MixAndRectDataset |
Oops, something went wrong.