-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor all charmory. code to armory. namespace #103
Conversation
docs/getting_started.ipynb
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mwartell was this file suppose to be updated like this? It doesn't seem like this is the same file from the master branch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
like maybe this was from another branch's update
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is accidental You pegged it right, it was an untracked file from #76. I'm removing it in this branch
This was an accidental commit from my working tree of an untracked file. It will rejoin in PR #76 Signed-off-by: matt wartell <matt.wartell@twosixtech.com>
|
||
from armory.model.object_detection.jatic_object_detector import ( | ||
JaticObjectDetectionModel, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One thing to be wary of when creating package __init__.py
files like in this case is now that all the imports in the jatic_object_detector
module are required to be installed regardless of whether you're using it or not. I think in this case we're still OK because the actual jatic-toolbox import only occurs during type checking.
This was a pylance generated movement and refactor of library/src/charmory/* to library/src/armory/*
Some text files need to be patched per #102