forked from openvinotoolkit/open_model_zoo
-
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.
tools/downloader: put the model tools into a Python package
A package is needed so that we can make them installable via pip later. I don't think you can install individual modules (and even if you could, the names `downloader`, etc., are way too generic and would pollute the global namespace). I also used this refactoring to rename `common` to `_common`, to signify that it's an internal module. `open_model_zoo` is a namespace package, so that if we end up creating other installable OMZ functionality (like a model API or something), we can put it in a different subpackage of `open_model_zoo`. `open_model_zoo.model_tools`, however, is not a namespace package, since there should be no reason to extend it.
- Loading branch information
Roman Donchenko
committed
Apr 28, 2021
1 parent
b721873
commit bf1a7c9
Showing
9 changed files
with
45 additions
and
49 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
Empty file.
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
File renamed without changes.
File renamed without changes.
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