├── .github └── publish.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── autodistill_grounded_sam_2 ├── __init__.py ├── grounded_sam_2.py └── helpers.py ├── requirements.txt ├── setup.py └── test └── test_hello.py /.github/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/.github/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/README.md -------------------------------------------------------------------------------- /autodistill_grounded_sam_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/autodistill_grounded_sam_2/__init__.py -------------------------------------------------------------------------------- /autodistill_grounded_sam_2/grounded_sam_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/autodistill_grounded_sam_2/grounded_sam_2.py -------------------------------------------------------------------------------- /autodistill_grounded_sam_2/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/autodistill_grounded_sam_2/helpers.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-grounded-sam-2/HEAD/test/test_hello.py --------------------------------------------------------------------------------