-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use openfoodfacts.ml for object detection (#1493)
- use ml submodule for object detection - add a ModelConfig pydantic class to specify model configuration. Previously, the model configuration was not clear and could lead to bugs. - add a `threshold` parameter in model predict route
- Loading branch information
1 parent
bb72dce
commit 54843be
Showing
10 changed files
with
173 additions
and
291 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
# flake8: noqa | ||
from .core import ( | ||
OBJECT_DETECTION_MODEL_VERSION, | ||
ObjectDetectionModelRegistry, | ||
ObjectDetectionRawResult, | ||
) | ||
from .core import MODELS_CONFIG, ObjectDetectionModelRegistry, ObjectDetectionResult |
Oops, something went wrong.