├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── CudaComputeTargetFlags.cmake ├── LICENSE ├── LICENSE.fuck ├── LICENSE.gen ├── LICENSE.gpl ├── LICENSE.meta ├── LICENSE.mit ├── LICENSE.v1 ├── Makefile ├── README.md ├── cfg ├── alexnet.cfg ├── cifar.cfg ├── cifar.data ├── cifar.test.cfg ├── coco.data ├── combine9k.data ├── darknet-squeeze.cfg ├── darknet.cfg ├── darknet19.cfg ├── darknet19_448.cfg ├── darknet9000.cfg ├── extraction.cfg ├── extraction.conv.cfg ├── extraction22k.cfg ├── go.cfg ├── go.test.cfg ├── gru.cfg ├── imagenet1k.data ├── imagenet22k.dataset ├── imagenet9k.hierarchy.dataset ├── jnet-conv.cfg ├── mobilenet-1k.cfg ├── mobilenet.cfg ├── mobilenet_imagenet.cfg ├── msr_152.cfg ├── msr_34.cfg ├── msr_50.cfg ├── rnn.cfg ├── rnn.train.cfg ├── strided.cfg ├── t1.test.cfg ├── tiny-yolo-test.cfg ├── tiny-yolo-voc.cfg ├── tiny-yolo.cfg ├── tiny.cfg ├── ty-kk2.cfg ├── ty-kk3-1k.cfg ├── ty-kk3.cfg ├── vgg-16.cfg ├── vgg-conv.cfg ├── voc.data ├── writing.cfg ├── yolo-voc.2.0.cfg ├── yolo-voc.cfg ├── yolo.2.0.cfg ├── yolo.cfg ├── yolo9000.cfg └── yolov1 │ ├── tiny-coco.cfg │ ├── tiny-yolo.cfg │ ├── xyolo.test.cfg │ ├── yolo-coco.cfg │ ├── yolo-small.cfg │ ├── yolo.cfg │ ├── yolo.train.cfg │ └── yolo2.cfg ├── darknet_test.c ├── examples ├── art.c ├── captcha.c ├── cifar.c ├── classifier.c ├── coco.c ├── darknet.c ├── darknet_debug.c ├── detector.c ├── dice.c ├── go.c ├── lsd.c ├── nightmare.c ├── regressor.c ├── rnn.c ├── rnn_vid.c ├── segmenter.c ├── super.c ├── swag.c ├── tag.c ├── voxel.c ├── writing.c └── yolo.c ├── include └── darknet.h ├── libdarknet.a ├── libdarknet.so ├── mobilenet.weights ├── object_detection ├── python ├── darknet.py ├── make_imagenet_list.py └── makelist.py ├── scripts ├── dice_label.sh ├── gen_tactic.sh ├── get_coco_dataset.sh ├── imagenet_label.sh └── voc_label.py ├── src ├── activation_kernels.cu ├── activation_layer.c ├── activation_layer.h ├── activations.c ├── activations.h ├── avgpool_layer.c ├── avgpool_layer.h ├── avgpool_layer_kernels.cu ├── batchnorm_layer.c ├── batchnorm_layer.h ├── blas.c ├── blas.h ├── blas_kernels.cu ├── box.c ├── box.h ├── classifier.h ├── col2im.c ├── col2im.h ├── col2im_kernels.cu ├── compare.c ├── connected_layer.c ├── connected_layer.h ├── convolutional_kernels.cu ├── convolutional_layer.c ├── convolutional_layer.h ├── cost_layer.c ├── cost_layer.h ├── crnn_layer.c ├── crnn_layer.h ├── crop_layer.c ├── crop_layer.h ├── crop_layer_kernels.cu ├── cuda.c ├── cuda.h ├── data.c ├── data.h ├── deconvolutional_kernels.cu ├── deconvolutional_layer.c ├── deconvolutional_layer.h ├── demo.c ├── demo.h ├── depthwise_convolution_test.py ├── depthwise_convolutional_kernels.cu ├── depthwise_convolutional_layer.c ├── depthwise_convolutional_layer.h ├── detection_layer.c ├── detection_layer.h ├── dropout_layer.c ├── dropout_layer.h ├── dropout_layer_kernels.cu ├── gemm.c ├── gemm.h ├── gru_layer.c ├── gru_layer.h ├── im2col.c ├── im2col.h ├── im2col_kernels.cu ├── image.c ├── image.h ├── layer.c ├── layer.h ├── list.c ├── list.h ├── local_layer.c ├── local_layer.h ├── lstm_layer.c ├── lstm_layer.h ├── matrix.c ├── matrix.h ├── maxpool_layer.c ├── maxpool_layer.h ├── maxpool_layer_kernels.cu ├── network.c ├── network.h ├── network_kernels.cu ├── normalization_layer.c ├── normalization_layer.h ├── option_list.c ├── option_list.h ├── parser.c ├── parser.h ├── region_layer.c ├── region_layer.h ├── reorg_layer.c ├── reorg_layer.h ├── rnn_layer.c ├── rnn_layer.h ├── route_layer.c ├── route_layer.h ├── shortcut_layer.c ├── shortcut_layer.h ├── softmax_layer.c ├── softmax_layer.h ├── stb_image.h ├── stb_image_write.h ├── tree.c ├── tree.h ├── utils.c └── utils.h └── vs2015 ├── .vs └── vs2015 │ └── v14 │ └── .suo ├── vs2015.sln └── vs2015 ├── cfg ├── cifar.cfg ├── cifar.data ├── cifar_mobilenet.cfg └── test.cfg ├── cifar ├── labels.txt ├── test.list └── train.list ├── depthwise_conv_op_gpu.cu.cc ├── kernel.cu ├── pthread ├── include │ ├── pthread.h │ ├── sched.h │ └── semaphore.h └── lib │ └── x64 │ ├── debug │ ├── pthread_dll.dll │ ├── pthread_dll.exp │ ├── pthread_dll.lib │ ├── pthread_dll.map │ ├── pthread_lib.lib │ ├── pthread_test.bsc │ └── pthread_test.exe │ └── release │ ├── pthread_dll.dll │ ├── pthread_dll.exp │ ├── pthread_dll.lib │ ├── pthread_dll.map │ ├── pthread_lib.lib │ └── pthread_test.exe ├── test.cfg ├── unistd.h ├── vs2015.vcxproj ├── vs2015.vcxproj.filters ├── vs2015.vcxproj.user └── weights.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CudaComputeTargetFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/CudaComputeTargetFlags.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.fuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/LICENSE.fuck -------------------------------------------------------------------------------- /LICENSE.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/LICENSE.gen -------------------------------------------------------------------------------- /LICENSE.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/LICENSE.gpl -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /LICENSE.mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/LICENSE.mit -------------------------------------------------------------------------------- /LICENSE.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/LICENSE.v1 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/README.md -------------------------------------------------------------------------------- /cfg/alexnet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/alexnet.cfg -------------------------------------------------------------------------------- /cfg/cifar.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/cifar.cfg -------------------------------------------------------------------------------- /cfg/cifar.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/cifar.data -------------------------------------------------------------------------------- /cfg/cifar.test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/cifar.test.cfg -------------------------------------------------------------------------------- /cfg/coco.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/coco.data -------------------------------------------------------------------------------- /cfg/combine9k.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/combine9k.data -------------------------------------------------------------------------------- /cfg/darknet-squeeze.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/darknet-squeeze.cfg -------------------------------------------------------------------------------- /cfg/darknet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/darknet.cfg -------------------------------------------------------------------------------- /cfg/darknet19.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/darknet19.cfg -------------------------------------------------------------------------------- /cfg/darknet19_448.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/darknet19_448.cfg -------------------------------------------------------------------------------- /cfg/darknet9000.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/darknet9000.cfg -------------------------------------------------------------------------------- /cfg/extraction.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/extraction.cfg -------------------------------------------------------------------------------- /cfg/extraction.conv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/extraction.conv.cfg -------------------------------------------------------------------------------- /cfg/extraction22k.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/extraction22k.cfg -------------------------------------------------------------------------------- /cfg/go.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/go.cfg -------------------------------------------------------------------------------- /cfg/go.test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/go.test.cfg -------------------------------------------------------------------------------- /cfg/gru.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/gru.cfg -------------------------------------------------------------------------------- /cfg/imagenet1k.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/imagenet1k.data -------------------------------------------------------------------------------- /cfg/imagenet22k.dataset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/imagenet22k.dataset -------------------------------------------------------------------------------- /cfg/imagenet9k.hierarchy.dataset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/imagenet9k.hierarchy.dataset -------------------------------------------------------------------------------- /cfg/jnet-conv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/jnet-conv.cfg -------------------------------------------------------------------------------- /cfg/mobilenet-1k.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/mobilenet-1k.cfg -------------------------------------------------------------------------------- /cfg/mobilenet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/mobilenet.cfg -------------------------------------------------------------------------------- /cfg/mobilenet_imagenet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/mobilenet_imagenet.cfg -------------------------------------------------------------------------------- /cfg/msr_152.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/msr_152.cfg -------------------------------------------------------------------------------- /cfg/msr_34.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/msr_34.cfg -------------------------------------------------------------------------------- /cfg/msr_50.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/msr_50.cfg -------------------------------------------------------------------------------- /cfg/rnn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/rnn.cfg -------------------------------------------------------------------------------- /cfg/rnn.train.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/rnn.train.cfg -------------------------------------------------------------------------------- /cfg/strided.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/strided.cfg -------------------------------------------------------------------------------- /cfg/t1.test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/t1.test.cfg -------------------------------------------------------------------------------- /cfg/tiny-yolo-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/tiny-yolo-test.cfg -------------------------------------------------------------------------------- /cfg/tiny-yolo-voc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/tiny-yolo-voc.cfg -------------------------------------------------------------------------------- /cfg/tiny-yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/tiny-yolo.cfg -------------------------------------------------------------------------------- /cfg/tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/tiny.cfg -------------------------------------------------------------------------------- /cfg/ty-kk2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/ty-kk2.cfg -------------------------------------------------------------------------------- /cfg/ty-kk3-1k.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/ty-kk3-1k.cfg -------------------------------------------------------------------------------- /cfg/ty-kk3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/ty-kk3.cfg -------------------------------------------------------------------------------- /cfg/vgg-16.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/vgg-16.cfg -------------------------------------------------------------------------------- /cfg/vgg-conv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/vgg-conv.cfg -------------------------------------------------------------------------------- /cfg/voc.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/voc.data -------------------------------------------------------------------------------- /cfg/writing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/writing.cfg -------------------------------------------------------------------------------- /cfg/yolo-voc.2.0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolo-voc.2.0.cfg -------------------------------------------------------------------------------- /cfg/yolo-voc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolo-voc.cfg -------------------------------------------------------------------------------- /cfg/yolo.2.0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolo.2.0.cfg -------------------------------------------------------------------------------- /cfg/yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolo.cfg -------------------------------------------------------------------------------- /cfg/yolo9000.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolo9000.cfg -------------------------------------------------------------------------------- /cfg/yolov1/tiny-coco.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolov1/tiny-coco.cfg -------------------------------------------------------------------------------- /cfg/yolov1/tiny-yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolov1/tiny-yolo.cfg -------------------------------------------------------------------------------- /cfg/yolov1/xyolo.test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolov1/xyolo.test.cfg -------------------------------------------------------------------------------- /cfg/yolov1/yolo-coco.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolov1/yolo-coco.cfg -------------------------------------------------------------------------------- /cfg/yolov1/yolo-small.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolov1/yolo-small.cfg -------------------------------------------------------------------------------- /cfg/yolov1/yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolov1/yolo.cfg -------------------------------------------------------------------------------- /cfg/yolov1/yolo.train.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolov1/yolo.train.cfg -------------------------------------------------------------------------------- /cfg/yolov1/yolo2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/cfg/yolov1/yolo2.cfg -------------------------------------------------------------------------------- /darknet_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/darknet_test.c -------------------------------------------------------------------------------- /examples/art.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/art.c -------------------------------------------------------------------------------- /examples/captcha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/captcha.c -------------------------------------------------------------------------------- /examples/cifar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/cifar.c -------------------------------------------------------------------------------- /examples/classifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/classifier.c -------------------------------------------------------------------------------- /examples/coco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/coco.c -------------------------------------------------------------------------------- /examples/darknet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/darknet.c -------------------------------------------------------------------------------- /examples/darknet_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/darknet_debug.c -------------------------------------------------------------------------------- /examples/detector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/detector.c -------------------------------------------------------------------------------- /examples/dice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/dice.c -------------------------------------------------------------------------------- /examples/go.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/go.c -------------------------------------------------------------------------------- /examples/lsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/lsd.c -------------------------------------------------------------------------------- /examples/nightmare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/nightmare.c -------------------------------------------------------------------------------- /examples/regressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/regressor.c -------------------------------------------------------------------------------- /examples/rnn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/rnn.c -------------------------------------------------------------------------------- /examples/rnn_vid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/rnn_vid.c -------------------------------------------------------------------------------- /examples/segmenter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/segmenter.c -------------------------------------------------------------------------------- /examples/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/super.c -------------------------------------------------------------------------------- /examples/swag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/swag.c -------------------------------------------------------------------------------- /examples/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/tag.c -------------------------------------------------------------------------------- /examples/voxel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/voxel.c -------------------------------------------------------------------------------- /examples/writing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/writing.c -------------------------------------------------------------------------------- /examples/yolo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/examples/yolo.c -------------------------------------------------------------------------------- /include/darknet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/include/darknet.h -------------------------------------------------------------------------------- /libdarknet.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/libdarknet.a -------------------------------------------------------------------------------- /libdarknet.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/libdarknet.so -------------------------------------------------------------------------------- /mobilenet.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/mobilenet.weights -------------------------------------------------------------------------------- /object_detection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/object_detection -------------------------------------------------------------------------------- /python/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/python/darknet.py -------------------------------------------------------------------------------- /python/make_imagenet_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/python/make_imagenet_list.py -------------------------------------------------------------------------------- /python/makelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/python/makelist.py -------------------------------------------------------------------------------- /scripts/dice_label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/scripts/dice_label.sh -------------------------------------------------------------------------------- /scripts/gen_tactic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/scripts/gen_tactic.sh -------------------------------------------------------------------------------- /scripts/get_coco_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/scripts/get_coco_dataset.sh -------------------------------------------------------------------------------- /scripts/imagenet_label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/scripts/imagenet_label.sh -------------------------------------------------------------------------------- /scripts/voc_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/scripts/voc_label.py -------------------------------------------------------------------------------- /src/activation_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/activation_kernels.cu -------------------------------------------------------------------------------- /src/activation_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/activation_layer.c -------------------------------------------------------------------------------- /src/activation_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/activation_layer.h -------------------------------------------------------------------------------- /src/activations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/activations.c -------------------------------------------------------------------------------- /src/activations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/activations.h -------------------------------------------------------------------------------- /src/avgpool_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/avgpool_layer.c -------------------------------------------------------------------------------- /src/avgpool_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/avgpool_layer.h -------------------------------------------------------------------------------- /src/avgpool_layer_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/avgpool_layer_kernels.cu -------------------------------------------------------------------------------- /src/batchnorm_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/batchnorm_layer.c -------------------------------------------------------------------------------- /src/batchnorm_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/batchnorm_layer.h -------------------------------------------------------------------------------- /src/blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/blas.c -------------------------------------------------------------------------------- /src/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/blas.h -------------------------------------------------------------------------------- /src/blas_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/blas_kernels.cu -------------------------------------------------------------------------------- /src/box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/box.c -------------------------------------------------------------------------------- /src/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/box.h -------------------------------------------------------------------------------- /src/classifier.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/col2im.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/col2im.c -------------------------------------------------------------------------------- /src/col2im.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/col2im.h -------------------------------------------------------------------------------- /src/col2im_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/col2im_kernels.cu -------------------------------------------------------------------------------- /src/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/compare.c -------------------------------------------------------------------------------- /src/connected_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/connected_layer.c -------------------------------------------------------------------------------- /src/connected_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/connected_layer.h -------------------------------------------------------------------------------- /src/convolutional_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/convolutional_kernels.cu -------------------------------------------------------------------------------- /src/convolutional_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/convolutional_layer.c -------------------------------------------------------------------------------- /src/convolutional_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/convolutional_layer.h -------------------------------------------------------------------------------- /src/cost_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/cost_layer.c -------------------------------------------------------------------------------- /src/cost_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/cost_layer.h -------------------------------------------------------------------------------- /src/crnn_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/crnn_layer.c -------------------------------------------------------------------------------- /src/crnn_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/crnn_layer.h -------------------------------------------------------------------------------- /src/crop_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/crop_layer.c -------------------------------------------------------------------------------- /src/crop_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/crop_layer.h -------------------------------------------------------------------------------- /src/crop_layer_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/crop_layer_kernels.cu -------------------------------------------------------------------------------- /src/cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/cuda.c -------------------------------------------------------------------------------- /src/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/cuda.h -------------------------------------------------------------------------------- /src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/data.c -------------------------------------------------------------------------------- /src/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/data.h -------------------------------------------------------------------------------- /src/deconvolutional_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/deconvolutional_kernels.cu -------------------------------------------------------------------------------- /src/deconvolutional_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/deconvolutional_layer.c -------------------------------------------------------------------------------- /src/deconvolutional_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/deconvolutional_layer.h -------------------------------------------------------------------------------- /src/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/demo.c -------------------------------------------------------------------------------- /src/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/demo.h -------------------------------------------------------------------------------- /src/depthwise_convolution_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/depthwise_convolution_test.py -------------------------------------------------------------------------------- /src/depthwise_convolutional_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/depthwise_convolutional_kernels.cu -------------------------------------------------------------------------------- /src/depthwise_convolutional_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/depthwise_convolutional_layer.c -------------------------------------------------------------------------------- /src/depthwise_convolutional_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/depthwise_convolutional_layer.h -------------------------------------------------------------------------------- /src/detection_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/detection_layer.c -------------------------------------------------------------------------------- /src/detection_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/detection_layer.h -------------------------------------------------------------------------------- /src/dropout_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/dropout_layer.c -------------------------------------------------------------------------------- /src/dropout_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/dropout_layer.h -------------------------------------------------------------------------------- /src/dropout_layer_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/dropout_layer_kernels.cu -------------------------------------------------------------------------------- /src/gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/gemm.c -------------------------------------------------------------------------------- /src/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/gemm.h -------------------------------------------------------------------------------- /src/gru_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/gru_layer.c -------------------------------------------------------------------------------- /src/gru_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/gru_layer.h -------------------------------------------------------------------------------- /src/im2col.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/im2col.c -------------------------------------------------------------------------------- /src/im2col.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/im2col.h -------------------------------------------------------------------------------- /src/im2col_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/im2col_kernels.cu -------------------------------------------------------------------------------- /src/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/image.c -------------------------------------------------------------------------------- /src/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/image.h -------------------------------------------------------------------------------- /src/layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/layer.c -------------------------------------------------------------------------------- /src/layer.h: -------------------------------------------------------------------------------- 1 | #include "darknet.h" 2 | -------------------------------------------------------------------------------- /src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/list.c -------------------------------------------------------------------------------- /src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/list.h -------------------------------------------------------------------------------- /src/local_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/local_layer.c -------------------------------------------------------------------------------- /src/local_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/local_layer.h -------------------------------------------------------------------------------- /src/lstm_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/lstm_layer.c -------------------------------------------------------------------------------- /src/lstm_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/lstm_layer.h -------------------------------------------------------------------------------- /src/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/matrix.c -------------------------------------------------------------------------------- /src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/matrix.h -------------------------------------------------------------------------------- /src/maxpool_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/maxpool_layer.c -------------------------------------------------------------------------------- /src/maxpool_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/maxpool_layer.h -------------------------------------------------------------------------------- /src/maxpool_layer_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/maxpool_layer_kernels.cu -------------------------------------------------------------------------------- /src/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/network.c -------------------------------------------------------------------------------- /src/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/network.h -------------------------------------------------------------------------------- /src/network_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/network_kernels.cu -------------------------------------------------------------------------------- /src/normalization_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/normalization_layer.c -------------------------------------------------------------------------------- /src/normalization_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/normalization_layer.h -------------------------------------------------------------------------------- /src/option_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/option_list.c -------------------------------------------------------------------------------- /src/option_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/option_list.h -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/parser.h -------------------------------------------------------------------------------- /src/region_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/region_layer.c -------------------------------------------------------------------------------- /src/region_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/region_layer.h -------------------------------------------------------------------------------- /src/reorg_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/reorg_layer.c -------------------------------------------------------------------------------- /src/reorg_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/reorg_layer.h -------------------------------------------------------------------------------- /src/rnn_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/rnn_layer.c -------------------------------------------------------------------------------- /src/rnn_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/rnn_layer.h -------------------------------------------------------------------------------- /src/route_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/route_layer.c -------------------------------------------------------------------------------- /src/route_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/route_layer.h -------------------------------------------------------------------------------- /src/shortcut_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/shortcut_layer.c -------------------------------------------------------------------------------- /src/shortcut_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/shortcut_layer.h -------------------------------------------------------------------------------- /src/softmax_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/softmax_layer.c -------------------------------------------------------------------------------- /src/softmax_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/softmax_layer.h -------------------------------------------------------------------------------- /src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/stb_image.h -------------------------------------------------------------------------------- /src/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/stb_image_write.h -------------------------------------------------------------------------------- /src/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/tree.c -------------------------------------------------------------------------------- /src/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/tree.h -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/src/utils.h -------------------------------------------------------------------------------- /vs2015/.vs/vs2015/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/.vs/vs2015/v14/.suo -------------------------------------------------------------------------------- /vs2015/vs2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015.sln -------------------------------------------------------------------------------- /vs2015/vs2015/cfg/cifar.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/cfg/cifar.cfg -------------------------------------------------------------------------------- /vs2015/vs2015/cfg/cifar.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/cfg/cifar.data -------------------------------------------------------------------------------- /vs2015/vs2015/cfg/cifar_mobilenet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/cfg/cifar_mobilenet.cfg -------------------------------------------------------------------------------- /vs2015/vs2015/cfg/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/cfg/test.cfg -------------------------------------------------------------------------------- /vs2015/vs2015/cifar/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/cifar/labels.txt -------------------------------------------------------------------------------- /vs2015/vs2015/cifar/test.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/cifar/test.list -------------------------------------------------------------------------------- /vs2015/vs2015/cifar/train.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/cifar/train.list -------------------------------------------------------------------------------- /vs2015/vs2015/depthwise_conv_op_gpu.cu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/depthwise_conv_op_gpu.cu.cc -------------------------------------------------------------------------------- /vs2015/vs2015/kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/kernel.cu -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/include/pthread.h -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/include/sched.h -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/include/semaphore.h -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/debug/pthread_dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/debug/pthread_dll.dll -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/debug/pthread_dll.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/debug/pthread_dll.exp -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/debug/pthread_dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/debug/pthread_dll.lib -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/debug/pthread_dll.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/debug/pthread_dll.map -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/debug/pthread_lib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/debug/pthread_lib.lib -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/debug/pthread_test.bsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/debug/pthread_test.bsc -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/debug/pthread_test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/debug/pthread_test.exe -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/release/pthread_dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/release/pthread_dll.dll -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/release/pthread_dll.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/release/pthread_dll.exp -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/release/pthread_dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/release/pthread_dll.lib -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/release/pthread_dll.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/release/pthread_dll.map -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/release/pthread_lib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/release/pthread_lib.lib -------------------------------------------------------------------------------- /vs2015/vs2015/pthread/lib/x64/release/pthread_test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/pthread/lib/x64/release/pthread_test.exe -------------------------------------------------------------------------------- /vs2015/vs2015/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/test.cfg -------------------------------------------------------------------------------- /vs2015/vs2015/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/unistd.h -------------------------------------------------------------------------------- /vs2015/vs2015/vs2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/vs2015.vcxproj -------------------------------------------------------------------------------- /vs2015/vs2015/vs2015.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/vs2015.vcxproj.filters -------------------------------------------------------------------------------- /vs2015/vs2015/vs2015.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/darknet_mobilenet/HEAD/vs2015/vs2015/vs2015.vcxproj.user -------------------------------------------------------------------------------- /vs2015/vs2015/weights.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 4 5 6 7 8 9 --------------------------------------------------------------------------------