-
Notifications
You must be signed in to change notification settings - Fork 251
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
[Notebook] ML dev cycle for DINO #355
Conversation
@@ -71,7 +71,7 @@ | |||
ext_modules=cythonize(extensions, language_level="3"), | |||
zip_safe=False, | |||
install_requires=["numpy", "pillow", "pyarrow>=10,<11", "requests", "pandas"], | |||
extras_require={"test": ["pytest>=6.0", "duckdb>=0.6,<0.7", "click", "requests_mock", "hypothesis"]}, | |||
extras_require={"test": ["pytest>=6.0", "duckdb==0.6.0", "click", "requests_mock", "hypothesis"]}, |
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.
Pinned duckdb here because our S3 artifacts for duckdb extension is still on 0.6.0.
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.
you can install the sql extension via:
pip install git+https://github.com/eto-ai/ipython-sql
and load it:
%load_ext sql
%sql duckdb:///:memory: --connection_arguments {"config":{"allow_unsigned_extensions":"true"},"preload_extensions":["lance"]}
Paper here: https://paperswithcode.com/paper/dino-detr-with-improved-denoising-anchor-1
A SOTA model on object detection.