-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add missing copyright heads [skip ci] * Rename to detection_datamodule.py * Add classes and utils from lightning-flash * Load model with Task and add DataPipeline into DataModule as lightning-flash * Move the Task in flash.py directly into pl_wrapper.py * Fix DataPipeline and support innference in LightningModule * Add missing Copyright * Fix ImportError in torch._six * Cleanup codes [skip ci] * Rename pl_wrapper.py -> yolo_module.py and detection_datamodule.py -> datamodule.py * Add unittest for lightning-flash mechanism * Bug fixes for collate in ObjectDetectionDataPipeline * Update README.md for updated inference interfaces * Remove predict.py and typo fixes * Fix typo [skip ci]
- Loading branch information
Showing
17 changed files
with
374 additions
and
168 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Copyright (c) 2021, Zhiqiang Wang. All Rights Reserved. | ||
from .pl_datamodule import DetectionDataModule, VOCDetectionDataModule, CocoDetectionDataModule | ||
from .datapipeline import DataPipeline | ||
from .datamodule import DetectionDataModule, VOCDetectionDataModule, CocoDetectionDataModule |
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
Oops, something went wrong.