├── .flake8 ├── .gitignore ├── LICENSE ├── README.md ├── kmeans_anchors_ratios.py ├── requirements.txt └── tutorial.ipynb /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnslarcher/kmeans-anchors-ratios/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnslarcher/kmeans-anchors-ratios/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnslarcher/kmeans-anchors-ratios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnslarcher/kmeans-anchors-ratios/HEAD/README.md -------------------------------------------------------------------------------- /kmeans_anchors_ratios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnslarcher/kmeans-anchors-ratios/HEAD/kmeans_anchors_ratios.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm -------------------------------------------------------------------------------- /tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnslarcher/kmeans-anchors-ratios/HEAD/tutorial.ipynb --------------------------------------------------------------------------------