├── .github └── workflows │ ├── publish-to-pypi.yml │ ├── publish.yml │ ├── test.yml │ └── welcome.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── autodistill_yolov8 ├── __init__.py └── yolov8.py ├── requirements.txt ├── setup.py └── test └── test_hello.py /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/welcome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/.github/workflows/welcome.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/README.md -------------------------------------------------------------------------------- /autodistill_yolov8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/autodistill_yolov8/__init__.py -------------------------------------------------------------------------------- /autodistill_yolov8/yolov8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/autodistill_yolov8/yolov8.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | autodistill 2 | ultralytics==8.0.81 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autodistill/autodistill-yolov8/HEAD/test/test_hello.py --------------------------------------------------------------------------------