-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fix creators. #42
Fix creators. #42
Conversation
Test Results117 tests 117 ✅ 1s ⏱️ Results for commit f21a70e. ♻️ This comment has been updated with latest results. |
☂️ Python Coverage
Overall Coverage
New FilesNo new covered files... Modified Files
|
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.
LGTM
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.
Just a small doc-string comment. LGTM otherwise!
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.
LGTM
This PR fixes depth and keypoints creators because they did not support all parsers. Keypoints should also support scores = None because some models (Face-mesh) doesnt have scores for the keypoints. Depth creator wasnt accepting all shapes. DepthAnything models outputs 2-dimensional result.
Tests are also modified.
Additionally, examples have some fixes. parser setup is moved to separate file because we need to star-import all parsers. precommit - ruff had problems with that in model.py file becuase then
types
likeClassification
class were not explicitly imported.