-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/sg 953 add XML/VOC datasets (#117)
* add yolo * improve doc and name * first draft * support VOC * wip * rename * add more explicit default extensions * upadte extension list * update strings * rename annotation to label * add lena nd iter * add s * minor fix * add len and iter * inherit * replace image_set with split * add doc * add staticmethod * fix naming * improve doc * improve config_path doc
- Loading branch information
1 parent
310acde
commit 8940293
Showing
7 changed files
with
640 additions
and
15 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from data_gradients.datasets.detection import YoloFormatDetectionDataset | ||
from data_gradients.datasets.detection import VOCDetectionDataset, VOCFormatDetectionDataset, YoloFormatDetectionDataset | ||
from data_gradients.datasets.bdd_dataset import BDDDataset | ||
|
||
__all__ = ["YoloFormatDetectionDataset", "BDDDataset"] | ||
__all__ = ["VOCDetectionDataset", "VOCFormatDetectionDataset", "YoloFormatDetectionDataset", "BDDDataset"] |
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,3 +1,5 @@ | ||
from data_gradients.datasets.detection.voc_detection_dataset import VOCDetectionDataset | ||
from data_gradients.datasets.detection.voc_format_detection_dataset import VOCFormatDetectionDataset | ||
from data_gradients.datasets.detection.yolo_format_detection_dataset import YoloFormatDetectionDataset | ||
|
||
__all__ = ["YoloFormatDetectionDataset"] | ||
__all__ = ["VOCDetectionDataset", "VOCFormatDetectionDataset", "YoloFormatDetectionDataset"] |
Oops, something went wrong.