mirror of https://github.com/AlexeyAB/darknet.git
get_coco_dataset.sh downloads MS COCO dataset from images.cocodataset.org
This commit is contained in:
parent
49189c22e8
commit
7d0efaa936
|
@ -1,10 +1,10 @@
|
|||
[net]
|
||||
# Testing
|
||||
batch=1
|
||||
subdivisions=1
|
||||
# batch=1
|
||||
# subdivisions=1
|
||||
# Training
|
||||
# batch=64
|
||||
# subdivisions=16
|
||||
batch=64
|
||||
subdivisions=32
|
||||
width=416
|
||||
height=416
|
||||
channels=3
|
||||
|
|
|
@ -8,8 +8,11 @@ mkdir images
|
|||
cd images
|
||||
|
||||
# Download Images
|
||||
wget -c https://pjreddie.com/media/files/train2014.zip
|
||||
wget -c https://pjreddie.com/media/files/val2014.zip
|
||||
#very slow downloading
|
||||
#wget -c https://pjreddie.com/media/files/train2014.zip
|
||||
#wget -c https://pjreddie.com/media/files/val2014.zip
|
||||
wget -c http://images.cocodataset.org/zips/train2014.zip
|
||||
wget -c http://images.cocodataset.org/zips/val2014.zip
|
||||
|
||||
# Unzip
|
||||
unzip -q train2014.zip
|
||||
|
|
|
@ -17,9 +17,7 @@ void backward_maxpool_layer(const maxpool_layer l, network_state state);
|
|||
#ifdef GPU
|
||||
void forward_maxpool_layer_gpu(maxpool_layer l, network_state state);
|
||||
void backward_maxpool_layer_gpu(maxpool_layer l, network_state state);
|
||||
#ifdef CUDNN
|
||||
void cudnn_maxpool_setup(maxpool_layer *l);
|
||||
#endif // CUDNN
|
||||
#endif // GPU
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue