├── 3rdparty ├── dll │ ├── x64 │ │ ├── pthreadGC2.dll │ │ └── pthreadVC2.dll │ └── x86 │ │ ├── pthreadGC2.dll │ │ ├── pthreadGCE2.dll │ │ ├── pthreadVC2.dll │ │ ├── pthreadVCE2.dll │ │ └── pthreadVSE2.dll ├── include │ ├── pthread.h │ ├── sched.h │ └── semaphore.h └── lib │ ├── x64 │ ├── libpthreadGC2.a │ └── pthreadVC2.lib │ └── x86 │ ├── libpthreadGC2.a │ ├── libpthreadGCE2.a │ ├── pthreadVC2.lib │ ├── pthreadVCE2.lib │ └── pthreadVSE2.lib ├── README.md ├── bin ├── pthreadGC2.dll └── pthreadVC2.dll ├── cfg ├── alexnet.cfg ├── darknet.cfg ├── jnet-conv.cfg ├── strided.cfg ├── vgg-16.cfg ├── vgg-conv.cfg ├── yolo-small.cfg └── yolo.cfg ├── data ├── dog.jpg ├── eagle.jpg ├── horses.jpg ├── inet.labels.list ├── person.jpg ├── scream.jpg └── shortnames.txt ├── scripts ├── dice_label.sh ├── imagenet_label.sh └── voc_label.py └── src ├── activation_kernels.cu ├── activations.c ├── activations.h ├── avgpool_layer.c ├── avgpool_layer.h ├── avgpool_layer_kernels.cu ├── blas.c ├── blas.h ├── blas_kernels.cu ├── box.c ├── box.h ├── captcha.c ├── coco.c ├── col2im.c ├── col2im.h ├── col2im_kernels.cu ├── connected_layer.c ├── connected_layer.h ├── convolutional_kernels.cu ├── convolutional_layer.c ├── convolutional_layer.h ├── cost_layer.c ├── cost_layer.h ├── cpu_gemm.c ├── crop_layer.c ├── crop_layer.h ├── crop_layer_kernels.cu ├── cuda.c ├── cuda.h ├── darknet.c ├── data.c ├── data.h ├── deconvolutional_kernels.cu ├── deconvolutional_layer.c ├── deconvolutional_layer.h ├── detection_layer.c ├── detection_layer.h ├── dice.c ├── dropout_layer.c ├── dropout_layer.h ├── dropout_layer_kernels.cu ├── gemm.c ├── gemm.h ├── getopt.c ├── getopt.h ├── im2col.c ├── im2col.h ├── im2col_kernels.cu ├── image.c ├── image.h ├── imagenet.c ├── layer.c ├── layer.h ├── list.c ├── list.h ├── matrix.c ├── matrix.h ├── maxpool_layer.c ├── maxpool_layer.h ├── maxpool_layer_kernels.cu ├── network.c ├── network.h ├── network_kernels.cu ├── nightmare.c ├── normalization_layer.c ├── normalization_layer.h ├── old.c ├── option_list.c ├── option_list.h ├── params.h ├── parser.c ├── parser.h ├── region_layer.c ├── region_layer.h ├── route_layer.c ├── route_layer.h ├── server.c ├── server.h ├── softmax_layer.c ├── softmax_layer.h ├── softmax_layer_kernels.cu ├── stb_image.h ├── stb_image_write.h ├── unistd.h ├── utils.c ├── utils.h ├── writing.c └── yolo.c /3rdparty/dll/x64/pthreadGC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/dll/x64/pthreadGC2.dll -------------------------------------------------------------------------------- /3rdparty/dll/x64/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/dll/x64/pthreadVC2.dll -------------------------------------------------------------------------------- /3rdparty/dll/x86/pthreadGC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/dll/x86/pthreadGC2.dll -------------------------------------------------------------------------------- /3rdparty/dll/x86/pthreadGCE2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/dll/x86/pthreadGCE2.dll -------------------------------------------------------------------------------- /3rdparty/dll/x86/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/dll/x86/pthreadVC2.dll -------------------------------------------------------------------------------- /3rdparty/dll/x86/pthreadVCE2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/dll/x86/pthreadVCE2.dll -------------------------------------------------------------------------------- /3rdparty/dll/x86/pthreadVSE2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/dll/x86/pthreadVSE2.dll -------------------------------------------------------------------------------- /3rdparty/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/include/pthread.h -------------------------------------------------------------------------------- /3rdparty/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/include/sched.h -------------------------------------------------------------------------------- /3rdparty/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/include/semaphore.h -------------------------------------------------------------------------------- /3rdparty/lib/x64/libpthreadGC2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/lib/x64/libpthreadGC2.a -------------------------------------------------------------------------------- /3rdparty/lib/x64/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/lib/x64/pthreadVC2.lib -------------------------------------------------------------------------------- /3rdparty/lib/x86/libpthreadGC2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/lib/x86/libpthreadGC2.a -------------------------------------------------------------------------------- /3rdparty/lib/x86/libpthreadGCE2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/lib/x86/libpthreadGCE2.a -------------------------------------------------------------------------------- /3rdparty/lib/x86/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/lib/x86/pthreadVC2.lib -------------------------------------------------------------------------------- /3rdparty/lib/x86/pthreadVCE2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/lib/x86/pthreadVCE2.lib -------------------------------------------------------------------------------- /3rdparty/lib/x86/pthreadVSE2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/3rdparty/lib/x86/pthreadVSE2.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/README.md -------------------------------------------------------------------------------- /bin/pthreadGC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/bin/pthreadGC2.dll -------------------------------------------------------------------------------- /bin/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/bin/pthreadVC2.dll -------------------------------------------------------------------------------- /cfg/alexnet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/cfg/alexnet.cfg -------------------------------------------------------------------------------- /cfg/darknet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/cfg/darknet.cfg -------------------------------------------------------------------------------- /cfg/jnet-conv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/cfg/jnet-conv.cfg -------------------------------------------------------------------------------- /cfg/strided.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/cfg/strided.cfg -------------------------------------------------------------------------------- /cfg/vgg-16.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/cfg/vgg-16.cfg -------------------------------------------------------------------------------- /cfg/vgg-conv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/cfg/vgg-conv.cfg -------------------------------------------------------------------------------- /cfg/yolo-small.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/cfg/yolo-small.cfg -------------------------------------------------------------------------------- /cfg/yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/cfg/yolo.cfg -------------------------------------------------------------------------------- /data/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/data/dog.jpg -------------------------------------------------------------------------------- /data/eagle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/data/eagle.jpg -------------------------------------------------------------------------------- /data/horses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/data/horses.jpg -------------------------------------------------------------------------------- /data/inet.labels.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/data/inet.labels.list -------------------------------------------------------------------------------- /data/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/data/person.jpg -------------------------------------------------------------------------------- /data/scream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/data/scream.jpg -------------------------------------------------------------------------------- /data/shortnames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/data/shortnames.txt -------------------------------------------------------------------------------- /scripts/dice_label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/scripts/dice_label.sh -------------------------------------------------------------------------------- /scripts/imagenet_label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/scripts/imagenet_label.sh -------------------------------------------------------------------------------- /scripts/voc_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/scripts/voc_label.py -------------------------------------------------------------------------------- /src/activation_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/activation_kernels.cu -------------------------------------------------------------------------------- /src/activations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/activations.c -------------------------------------------------------------------------------- /src/activations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/activations.h -------------------------------------------------------------------------------- /src/avgpool_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/avgpool_layer.c -------------------------------------------------------------------------------- /src/avgpool_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/avgpool_layer.h -------------------------------------------------------------------------------- /src/avgpool_layer_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/avgpool_layer_kernels.cu -------------------------------------------------------------------------------- /src/blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/blas.c -------------------------------------------------------------------------------- /src/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/blas.h -------------------------------------------------------------------------------- /src/blas_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/blas_kernels.cu -------------------------------------------------------------------------------- /src/box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/box.c -------------------------------------------------------------------------------- /src/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/box.h -------------------------------------------------------------------------------- /src/captcha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/captcha.c -------------------------------------------------------------------------------- /src/coco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/coco.c -------------------------------------------------------------------------------- /src/col2im.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/col2im.c -------------------------------------------------------------------------------- /src/col2im.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/col2im.h -------------------------------------------------------------------------------- /src/col2im_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/col2im_kernels.cu -------------------------------------------------------------------------------- /src/connected_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/connected_layer.c -------------------------------------------------------------------------------- /src/connected_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/connected_layer.h -------------------------------------------------------------------------------- /src/convolutional_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/convolutional_kernels.cu -------------------------------------------------------------------------------- /src/convolutional_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/convolutional_layer.c -------------------------------------------------------------------------------- /src/convolutional_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/convolutional_layer.h -------------------------------------------------------------------------------- /src/cost_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/cost_layer.c -------------------------------------------------------------------------------- /src/cost_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/cost_layer.h -------------------------------------------------------------------------------- /src/cpu_gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/cpu_gemm.c -------------------------------------------------------------------------------- /src/crop_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/crop_layer.c -------------------------------------------------------------------------------- /src/crop_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/crop_layer.h -------------------------------------------------------------------------------- /src/crop_layer_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/crop_layer_kernels.cu -------------------------------------------------------------------------------- /src/cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/cuda.c -------------------------------------------------------------------------------- /src/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/cuda.h -------------------------------------------------------------------------------- /src/darknet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/darknet.c -------------------------------------------------------------------------------- /src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/data.c -------------------------------------------------------------------------------- /src/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/data.h -------------------------------------------------------------------------------- /src/deconvolutional_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/deconvolutional_kernels.cu -------------------------------------------------------------------------------- /src/deconvolutional_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/deconvolutional_layer.c -------------------------------------------------------------------------------- /src/deconvolutional_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/deconvolutional_layer.h -------------------------------------------------------------------------------- /src/detection_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/detection_layer.c -------------------------------------------------------------------------------- /src/detection_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/detection_layer.h -------------------------------------------------------------------------------- /src/dice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/dice.c -------------------------------------------------------------------------------- /src/dropout_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/dropout_layer.c -------------------------------------------------------------------------------- /src/dropout_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/dropout_layer.h -------------------------------------------------------------------------------- /src/dropout_layer_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/dropout_layer_kernels.cu -------------------------------------------------------------------------------- /src/gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/gemm.c -------------------------------------------------------------------------------- /src/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/gemm.h -------------------------------------------------------------------------------- /src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/getopt.c -------------------------------------------------------------------------------- /src/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/getopt.h -------------------------------------------------------------------------------- /src/im2col.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/im2col.c -------------------------------------------------------------------------------- /src/im2col.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/im2col.h -------------------------------------------------------------------------------- /src/im2col_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/im2col_kernels.cu -------------------------------------------------------------------------------- /src/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/image.c -------------------------------------------------------------------------------- /src/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/image.h -------------------------------------------------------------------------------- /src/imagenet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/imagenet.c -------------------------------------------------------------------------------- /src/layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/layer.c -------------------------------------------------------------------------------- /src/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/layer.h -------------------------------------------------------------------------------- /src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/list.c -------------------------------------------------------------------------------- /src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/list.h -------------------------------------------------------------------------------- /src/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/matrix.c -------------------------------------------------------------------------------- /src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/matrix.h -------------------------------------------------------------------------------- /src/maxpool_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/maxpool_layer.c -------------------------------------------------------------------------------- /src/maxpool_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/maxpool_layer.h -------------------------------------------------------------------------------- /src/maxpool_layer_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/maxpool_layer_kernels.cu -------------------------------------------------------------------------------- /src/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/network.c -------------------------------------------------------------------------------- /src/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/network.h -------------------------------------------------------------------------------- /src/network_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/network_kernels.cu -------------------------------------------------------------------------------- /src/nightmare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/nightmare.c -------------------------------------------------------------------------------- /src/normalization_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/normalization_layer.c -------------------------------------------------------------------------------- /src/normalization_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/normalization_layer.h -------------------------------------------------------------------------------- /src/old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/old.c -------------------------------------------------------------------------------- /src/option_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/option_list.c -------------------------------------------------------------------------------- /src/option_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/option_list.h -------------------------------------------------------------------------------- /src/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/params.h -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/parser.h -------------------------------------------------------------------------------- /src/region_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/region_layer.c -------------------------------------------------------------------------------- /src/region_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/region_layer.h -------------------------------------------------------------------------------- /src/route_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/route_layer.c -------------------------------------------------------------------------------- /src/route_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/route_layer.h -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/server.c -------------------------------------------------------------------------------- /src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/server.h -------------------------------------------------------------------------------- /src/softmax_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/softmax_layer.c -------------------------------------------------------------------------------- /src/softmax_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/softmax_layer.h -------------------------------------------------------------------------------- /src/softmax_layer_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/softmax_layer_kernels.cu -------------------------------------------------------------------------------- /src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/stb_image.h -------------------------------------------------------------------------------- /src/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/stb_image_write.h -------------------------------------------------------------------------------- /src/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/unistd.h -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/writing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/writing.c -------------------------------------------------------------------------------- /src/yolo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frischzenger/yolo-windows/HEAD/src/yolo.c --------------------------------------------------------------------------------