├── LICENSE ├── README.md ├── bbox_tool.py ├── cfg └── yolov4-custom.cfg ├── convert.py ├── data ├── piford.data ├── piford.names ├── piford │ ├── 1.jpg │ ├── 1.txt │ ├── 10.jpg │ ├── 10.txt │ ├── 11.jpg │ ├── 11.txt │ ├── 2.jpg │ ├── 2.txt │ ├── 22.jpg │ ├── 22.txt │ ├── 33.jpg │ ├── 33.txt │ ├── 4.jpg │ ├── 4.txt │ ├── 44.jpg │ ├── 44.txt │ ├── 5.jpg │ ├── 5.txt │ ├── 55.jpg │ ├── 55.txt │ ├── 6.jpg │ ├── 6.txt │ ├── 66.jpg │ ├── 66.txt │ ├── 7.jpg │ ├── 7.txt │ ├── 77.jpg │ ├── 77.txt │ ├── 8.jpg │ ├── 8.txt │ ├── 88.jpg │ ├── 88.txt │ ├── 9.jpg │ ├── 9.txt │ └── a.txt ├── test.txt └── train.txt ├── process.py └── yolov4traininandtesting.ipynb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/README.md -------------------------------------------------------------------------------- /bbox_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/bbox_tool.py -------------------------------------------------------------------------------- /cfg/yolov4-custom.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/cfg/yolov4-custom.cfg -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/convert.py -------------------------------------------------------------------------------- /data/piford.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford.data -------------------------------------------------------------------------------- /data/piford.names: -------------------------------------------------------------------------------- 1 | laptop 2 | phone -------------------------------------------------------------------------------- /data/piford/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/1.jpg -------------------------------------------------------------------------------- /data/piford/1.txt: -------------------------------------------------------------------------------- 1 | laptop 179 31 742 446 2 | -------------------------------------------------------------------------------- /data/piford/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/10.jpg -------------------------------------------------------------------------------- /data/piford/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/10.txt -------------------------------------------------------------------------------- /data/piford/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/11.jpg -------------------------------------------------------------------------------- /data/piford/11.txt: -------------------------------------------------------------------------------- 1 | laptop 137 35 754 396 2 | -------------------------------------------------------------------------------- /data/piford/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/2.jpg -------------------------------------------------------------------------------- /data/piford/2.txt: -------------------------------------------------------------------------------- 1 | laptop 290 72 665 396 2 | -------------------------------------------------------------------------------- /data/piford/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/22.jpg -------------------------------------------------------------------------------- /data/piford/22.txt: -------------------------------------------------------------------------------- 1 | phone 251 32 644 527 2 | -------------------------------------------------------------------------------- /data/piford/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/33.jpg -------------------------------------------------------------------------------- /data/piford/33.txt: -------------------------------------------------------------------------------- 1 | phone 403 76 704 476 2 | -------------------------------------------------------------------------------- /data/piford/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/4.jpg -------------------------------------------------------------------------------- /data/piford/4.txt: -------------------------------------------------------------------------------- 1 | laptop 192 32 661 399 2 | -------------------------------------------------------------------------------- /data/piford/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/44.jpg -------------------------------------------------------------------------------- /data/piford/44.txt: -------------------------------------------------------------------------------- 1 | phone 242 12 667 524 2 | -------------------------------------------------------------------------------- /data/piford/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/5.jpg -------------------------------------------------------------------------------- /data/piford/5.txt: -------------------------------------------------------------------------------- 1 | laptop 135 42 760 394 2 | -------------------------------------------------------------------------------- /data/piford/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/55.jpg -------------------------------------------------------------------------------- /data/piford/55.txt: -------------------------------------------------------------------------------- 1 | phone 423 63 687 523 2 | -------------------------------------------------------------------------------- /data/piford/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/6.jpg -------------------------------------------------------------------------------- /data/piford/6.txt: -------------------------------------------------------------------------------- 1 | laptop 261 23 752 393 2 | -------------------------------------------------------------------------------- /data/piford/66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/66.jpg -------------------------------------------------------------------------------- /data/piford/66.txt: -------------------------------------------------------------------------------- 1 | phone 283 91 622 508 2 | -------------------------------------------------------------------------------- /data/piford/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/7.jpg -------------------------------------------------------------------------------- /data/piford/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/7.txt -------------------------------------------------------------------------------- /data/piford/77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/77.jpg -------------------------------------------------------------------------------- /data/piford/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/77.txt -------------------------------------------------------------------------------- /data/piford/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/8.jpg -------------------------------------------------------------------------------- /data/piford/8.txt: -------------------------------------------------------------------------------- 1 | laptop 93 8 796 396 2 | -------------------------------------------------------------------------------- /data/piford/88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/88.jpg -------------------------------------------------------------------------------- /data/piford/88.txt: -------------------------------------------------------------------------------- 1 | phone 439 32 771 471 2 | -------------------------------------------------------------------------------- /data/piford/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/piford/9.jpg -------------------------------------------------------------------------------- /data/piford/9.txt: -------------------------------------------------------------------------------- 1 | laptop 364 240 719 392 2 | -------------------------------------------------------------------------------- /data/piford/a.txt: -------------------------------------------------------------------------------- 1 | asd 2 | -------------------------------------------------------------------------------- /data/test.txt: -------------------------------------------------------------------------------- 1 | data/piford/11.jpg 2 | -------------------------------------------------------------------------------- /data/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/data/train.txt -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/process.py -------------------------------------------------------------------------------- /yolov4traininandtesting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/YOLO-v4-Implementation-on-Custom-Dataset/HEAD/yolov4traininandtesting.ipynb --------------------------------------------------------------------------------