From d18adf8df9f5b884cee60a3c5c0eefd1aa52e10a Mon Sep 17 00:00:00 2001 From: ChristopherSTAN <497592613@qq.com> Date: Wed, 24 Jun 2020 15:53:34 -0400 Subject: [PATCH 01/13] Add files via upload --- data/VOC2007.sh | 42 +++++++++++++++++++++++++++++++ data/VOC2012.sh | 38 ++++++++++++++++++++++++++++ data/VOC_split.py | 60 ++++++++++++++++++++++++++++++++++++++++++++ data/organize_VOC.py | 47 ++++++++++++++++++++++++++++++++++ data/voc.yml | 10 ++++++++ 5 files changed, 197 insertions(+) create mode 100644 data/VOC2007.sh create mode 100644 data/VOC2012.sh create mode 100644 data/VOC_split.py create mode 100644 data/organize_VOC.py create mode 100644 data/voc.yml diff --git a/data/VOC2007.sh b/data/VOC2007.sh new file mode 100644 index 0000000..69bad20 --- /dev/null +++ b/data/VOC2007.sh @@ -0,0 +1,42 @@ +#!/bin/bash +# Ellis Brown + +start=`date +%s` + +# handle optional download dir +if [ -z "$1" ] + then + # navigate to ~/data + echo "navigating to ../data/ ..." + mkdir -p ./data + cd ./data/ + else + # check if is valid directory + if [ ! -d $1 ]; then + echo $1 "is not a valid directory" + exit 0 + fi + echo "navigating to" $1 "..." + cd $1 +fi + +echo "Downloading VOC2007 trainval ..." +# Download the data. +curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar +echo "Downloading VOC2007 test data ..." +curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar +echo "Done downloading." + +# Extract data +echo "Extracting trainval ..." +tar -xvf VOCtrainval_06-Nov-2007.tar +echo "Extracting test ..." +tar -xvf VOCtest_06-Nov-2007.tar +echo "removing tars ..." +rm VOCtrainval_06-Nov-2007.tar +rm VOCtest_06-Nov-2007.tar + +end=`date +%s` +runtime=$((end-start)) + +echo "Completed in" $runtime "seconds" \ No newline at end of file diff --git a/data/VOC2012.sh b/data/VOC2012.sh new file mode 100644 index 0000000..945f8d7 --- /dev/null +++ b/data/VOC2012.sh @@ -0,0 +1,38 @@ +#!/bin/bash +# Ellis Brown + +start=`date +%s` + +# handle optional download dir +if [ -z "$1" ] + then + # navigate to ~/data + echo "navigating to ~/data/ ..." + mkdir -p ./data + cd ./data/ + else + # check if is valid directory + if [ ! -d $1 ]; then + echo $1 "is not a valid directory" + exit 0 + fi + echo "navigating to" $1 "..." + cd $1 +fi + +echo "Downloading VOC2012 trainval ..." +# Download the data. +curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar +echo "Done downloading." + + +# Extract data +echo "Extracting trainval ..." +tar -xvf VOCtrainval_11-May-2012.tar +echo "removing tar ..." +rm VOCtrainval_11-May-2012.tar + +end=`date +%s` +runtime=$((end-start)) + +echo "Completed in" $runtime "seconds" \ No newline at end of file diff --git a/data/VOC_split.py b/data/VOC_split.py new file mode 100644 index 0000000..69405a3 --- /dev/null +++ b/data/VOC_split.py @@ -0,0 +1,60 @@ + +# Run this file with folder VOCdevkit. +import xml.etree.ElementTree as ET +import pickle +import os +from os import listdir, getcwd +from os.path import join + +sets=[('2012', 'train'), ('2012', 'val'), ('2007', 'train'), ('2007', 'val'), ('2007', 'test')] + +classes = ["aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike", "person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"] + + +def convert(size, box): + dw = 1./(size[0]) + dh = 1./(size[1]) + x = (box[0] + box[1])/2.0 - 1 + y = (box[2] + box[3])/2.0 - 1 + w = box[1] - box[0] + h = box[3] - box[2] + x = x*dw + w = w*dw + y = y*dh + h = h*dh + return (x,y,w,h) + +def convert_annotation(year, image_id): + in_file = open('VOCdevkit/VOC%s/Annotations/%s.xml'%(year, image_id)) + out_file = open('VOCdevkit/VOC%s/labels/%s.txt'%(year, image_id), 'w') + tree=ET.parse(in_file) + root = tree.getroot() + size = root.find('size') + w = int(size.find('width').text) + h = int(size.find('height').text) + + for obj in root.iter('object'): + difficult = obj.find('difficult').text + cls = obj.find('name').text + if cls not in classes or int(difficult)==1: + continue + cls_id = classes.index(cls) + xmlbox = obj.find('bndbox') + b = (float(xmlbox.find('xmin').text), float(xmlbox.find('xmax').text), float(xmlbox.find('ymin').text), float(xmlbox.find('ymax').text)) + bb = convert((w,h), b) + out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n') + +wd = getcwd() + +for year, image_set in sets: + if not os.path.exists('VOCdevkit/VOC%s/labels/'%(year)): + os.makedirs('VOCdevkit/VOC%s/labels/'%(year)) + image_ids = open('VOCdevkit/VOC%s/ImageSets/Main/%s.txt'%(year, image_set)).read().strip().split() + list_file = open('%s_%s.txt'%(year, image_set), 'w') + for image_id in image_ids: + list_file.write('%s/VOCdevkit/VOC%s/JPEGImages/%s.jpg\n'%(wd, year, image_id)) + convert_annotation(year, image_id) + list_file.close() + +os.system("cat 2007_train.txt 2007_val.txt 2012_train.txt 2012_val.txt > train.txt") +os.system("cat 2007_train.txt 2007_val.txt 2007_test.txt 2012_train.txt 2012_val.txt > train.all.txt") \ No newline at end of file diff --git a/data/organize_VOC.py b/data/organize_VOC.py new file mode 100644 index 0000000..d4ccf3a --- /dev/null +++ b/data/organize_VOC.py @@ -0,0 +1,47 @@ +print(os.path.exists('../data/train.txt')) +f = open('../data/train.txt', 'r') +lines = f.readlines() + +for line in lines: + #print(line.split('/')[-1][:-1]) + line = "/".join(line.split('/')[2:]) + + if (os.path.exists(line[:-1])): + os.system("cp "+ line[:-1] + " VOC/images/train") + +print(os.path.exists('../data/train.txt')) +f = open('../data/train.txt', 'r') +lines = f.readlines() + +for line in lines: + #print(line.split('/')[-1][:-1]) + line = "/".join(line.split('/')[2:]) + line = line.replace('JPEGImages', 'labels') + line = line.replace('jpg', 'txt') + #print(line) + if (os.path.exists(line[:-1])): + os.system("cp "+ line[:-1] + " VOC/labels/train") + +print(os.path.exists('../data/2007_test.txt')) +f = open('../data/2007_test.txt', 'r') +lines = f.readlines() + +for line in lines: + #print(line.split('/')[-1][:-1]) + line = "/".join(line.split('/')[2:]) + + if (os.path.exists(line[:-1])): + os.system("cp "+ line[:-1] + " VOC/images/val") + +print(os.path.exists('../data/2007_test.txt')) +f = open('../data/2007_test.txt', 'r') +lines = f.readlines() + +for line in lines: + #print(line.split('/')[-1][:-1]) + line = "/".join(line.split('/')[2:]) + line = line.replace('JPEGImages', 'labels') + line = line.replace('jpg', 'txt') + #print(line) + if (os.path.exists(line[:-1])): + os.system("cp "+ line[:-1] + " VOC/labels/val") \ No newline at end of file diff --git a/data/voc.yml b/data/voc.yml new file mode 100644 index 0000000..d531fa8 --- /dev/null +++ b/data/voc.yml @@ -0,0 +1,10 @@ + +# train and val datasets (image directory or *.txt file with image paths) +train: ../VOC/images/train/ +val: ../VOC/images/val// + +# number of classes +nc: 20 + +# class names +names: ['aeroplane', 'bicycle','bird','boat','bottle','bus','car','cat','chair','cow','diningtable','dog','horse','motorbike','person','pottedplant','sheep','sofa','train','tvmonitor'] \ No newline at end of file From a8d17ce7124e81907020d5d8e7737a22a46657f0 Mon Sep 17 00:00:00 2001 From: ChristopherSTAN <497592613@qq.com> Date: Thu, 2 Jul 2020 14:25:28 -0400 Subject: [PATCH 02/13] Update train.py --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index 2dfe781..700cddd 100644 --- a/train.py +++ b/train.py @@ -37,7 +37,7 @@ hyp = {'lr0': 0.01, # initial learning rate (SGD=1E-2, Adam=1E-3) 'obj_pw': 1.0, # obj BCELoss positive_weight 'iou_t': 0.20, # iou training threshold 'anchor_t': 4.0, # anchor-multiple threshold - 'fl_gamma': 0.0, # focal loss gamma (efficientDet default is gamma=1.5) + 'fl_gamma': 1.5, # focal loss gamma (efficientDet default is gamma=1.5) 'hsv_h': 0.014, # image HSV-Hue augmentation (fraction) 'hsv_s': 0.68, # image HSV-Saturation augmentation (fraction) 'hsv_v': 0.36, # image HSV-Value augmentation (fraction) From 9705c15da1763c885990427139b1724758e4b8ce Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Thu, 2 Jul 2020 11:37:48 -0700 Subject: [PATCH 03/13] Update train.py --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index 700cddd..2dfe781 100644 --- a/train.py +++ b/train.py @@ -37,7 +37,7 @@ hyp = {'lr0': 0.01, # initial learning rate (SGD=1E-2, Adam=1E-3) 'obj_pw': 1.0, # obj BCELoss positive_weight 'iou_t': 0.20, # iou training threshold 'anchor_t': 4.0, # anchor-multiple threshold - 'fl_gamma': 1.5, # focal loss gamma (efficientDet default is gamma=1.5) + 'fl_gamma': 0.0, # focal loss gamma (efficientDet default is gamma=1.5) 'hsv_h': 0.014, # image HSV-Hue augmentation (fraction) 'hsv_s': 0.68, # image HSV-Saturation augmentation (fraction) 'hsv_v': 0.36, # image HSV-Value augmentation (fraction) From 570dcf05a92512bf863158447631d2653466c59e Mon Sep 17 00:00:00 2001 From: ChristopherSTAN <497592613@qq.com> Date: Thu, 2 Jul 2020 17:04:54 -0400 Subject: [PATCH 04/13] Delete VOC2007.sh --- data/VOC2007.sh | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 data/VOC2007.sh diff --git a/data/VOC2007.sh b/data/VOC2007.sh deleted file mode 100644 index 69bad20..0000000 --- a/data/VOC2007.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash -# Ellis Brown - -start=`date +%s` - -# handle optional download dir -if [ -z "$1" ] - then - # navigate to ~/data - echo "navigating to ../data/ ..." - mkdir -p ./data - cd ./data/ - else - # check if is valid directory - if [ ! -d $1 ]; then - echo $1 "is not a valid directory" - exit 0 - fi - echo "navigating to" $1 "..." - cd $1 -fi - -echo "Downloading VOC2007 trainval ..." -# Download the data. -curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar -echo "Downloading VOC2007 test data ..." -curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar -echo "Done downloading." - -# Extract data -echo "Extracting trainval ..." -tar -xvf VOCtrainval_06-Nov-2007.tar -echo "Extracting test ..." -tar -xvf VOCtest_06-Nov-2007.tar -echo "removing tars ..." -rm VOCtrainval_06-Nov-2007.tar -rm VOCtest_06-Nov-2007.tar - -end=`date +%s` -runtime=$((end-start)) - -echo "Completed in" $runtime "seconds" \ No newline at end of file From 2bcf3da84835183e9e7796ed5400dd12754b1634 Mon Sep 17 00:00:00 2001 From: ChristopherSTAN <497592613@qq.com> Date: Thu, 2 Jul 2020 17:05:02 -0400 Subject: [PATCH 05/13] Delete VOC2012.sh --- data/VOC2012.sh | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 data/VOC2012.sh diff --git a/data/VOC2012.sh b/data/VOC2012.sh deleted file mode 100644 index 945f8d7..0000000 --- a/data/VOC2012.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# Ellis Brown - -start=`date +%s` - -# handle optional download dir -if [ -z "$1" ] - then - # navigate to ~/data - echo "navigating to ~/data/ ..." - mkdir -p ./data - cd ./data/ - else - # check if is valid directory - if [ ! -d $1 ]; then - echo $1 "is not a valid directory" - exit 0 - fi - echo "navigating to" $1 "..." - cd $1 -fi - -echo "Downloading VOC2012 trainval ..." -# Download the data. -curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar -echo "Done downloading." - - -# Extract data -echo "Extracting trainval ..." -tar -xvf VOCtrainval_11-May-2012.tar -echo "removing tar ..." -rm VOCtrainval_11-May-2012.tar - -end=`date +%s` -runtime=$((end-start)) - -echo "Completed in" $runtime "seconds" \ No newline at end of file From 389ed1f9d686a5638692fc0848460ace0e934ed8 Mon Sep 17 00:00:00 2001 From: ChristopherSTAN <497592613@qq.com> Date: Thu, 2 Jul 2020 17:05:09 -0400 Subject: [PATCH 06/13] Delete VOC_split.py --- data/VOC_split.py | 60 ----------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 data/VOC_split.py diff --git a/data/VOC_split.py b/data/VOC_split.py deleted file mode 100644 index 69405a3..0000000 --- a/data/VOC_split.py +++ /dev/null @@ -1,60 +0,0 @@ - -# Run this file with folder VOCdevkit. -import xml.etree.ElementTree as ET -import pickle -import os -from os import listdir, getcwd -from os.path import join - -sets=[('2012', 'train'), ('2012', 'val'), ('2007', 'train'), ('2007', 'val'), ('2007', 'test')] - -classes = ["aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike", "person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"] - - -def convert(size, box): - dw = 1./(size[0]) - dh = 1./(size[1]) - x = (box[0] + box[1])/2.0 - 1 - y = (box[2] + box[3])/2.0 - 1 - w = box[1] - box[0] - h = box[3] - box[2] - x = x*dw - w = w*dw - y = y*dh - h = h*dh - return (x,y,w,h) - -def convert_annotation(year, image_id): - in_file = open('VOCdevkit/VOC%s/Annotations/%s.xml'%(year, image_id)) - out_file = open('VOCdevkit/VOC%s/labels/%s.txt'%(year, image_id), 'w') - tree=ET.parse(in_file) - root = tree.getroot() - size = root.find('size') - w = int(size.find('width').text) - h = int(size.find('height').text) - - for obj in root.iter('object'): - difficult = obj.find('difficult').text - cls = obj.find('name').text - if cls not in classes or int(difficult)==1: - continue - cls_id = classes.index(cls) - xmlbox = obj.find('bndbox') - b = (float(xmlbox.find('xmin').text), float(xmlbox.find('xmax').text), float(xmlbox.find('ymin').text), float(xmlbox.find('ymax').text)) - bb = convert((w,h), b) - out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n') - -wd = getcwd() - -for year, image_set in sets: - if not os.path.exists('VOCdevkit/VOC%s/labels/'%(year)): - os.makedirs('VOCdevkit/VOC%s/labels/'%(year)) - image_ids = open('VOCdevkit/VOC%s/ImageSets/Main/%s.txt'%(year, image_set)).read().strip().split() - list_file = open('%s_%s.txt'%(year, image_set), 'w') - for image_id in image_ids: - list_file.write('%s/VOCdevkit/VOC%s/JPEGImages/%s.jpg\n'%(wd, year, image_id)) - convert_annotation(year, image_id) - list_file.close() - -os.system("cat 2007_train.txt 2007_val.txt 2012_train.txt 2012_val.txt > train.txt") -os.system("cat 2007_train.txt 2007_val.txt 2007_test.txt 2012_train.txt 2012_val.txt > train.all.txt") \ No newline at end of file From 0bd619b5aaaae5102c5fde110276c700d400d31a Mon Sep 17 00:00:00 2001 From: ChristopherSTAN <497592613@qq.com> Date: Thu, 2 Jul 2020 17:05:25 -0400 Subject: [PATCH 07/13] Delete voc.yml --- data/voc.yml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 data/voc.yml diff --git a/data/voc.yml b/data/voc.yml deleted file mode 100644 index d531fa8..0000000 --- a/data/voc.yml +++ /dev/null @@ -1,10 +0,0 @@ - -# train and val datasets (image directory or *.txt file with image paths) -train: ../VOC/images/train/ -val: ../VOC/images/val// - -# number of classes -nc: 20 - -# class names -names: ['aeroplane', 'bicycle','bird','boat','bottle','bus','car','cat','chair','cow','diningtable','dog','horse','motorbike','person','pottedplant','sheep','sofa','train','tvmonitor'] \ No newline at end of file From 4503d804490bdb1875c15807cf107fc1d3310401 Mon Sep 17 00:00:00 2001 From: ChristopherSTAN <497592613@qq.com> Date: Thu, 2 Jul 2020 17:05:33 -0400 Subject: [PATCH 08/13] Delete organize_VOC.py --- data/organize_VOC.py | 47 -------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 data/organize_VOC.py diff --git a/data/organize_VOC.py b/data/organize_VOC.py deleted file mode 100644 index d4ccf3a..0000000 --- a/data/organize_VOC.py +++ /dev/null @@ -1,47 +0,0 @@ -print(os.path.exists('../data/train.txt')) -f = open('../data/train.txt', 'r') -lines = f.readlines() - -for line in lines: - #print(line.split('/')[-1][:-1]) - line = "/".join(line.split('/')[2:]) - - if (os.path.exists(line[:-1])): - os.system("cp "+ line[:-1] + " VOC/images/train") - -print(os.path.exists('../data/train.txt')) -f = open('../data/train.txt', 'r') -lines = f.readlines() - -for line in lines: - #print(line.split('/')[-1][:-1]) - line = "/".join(line.split('/')[2:]) - line = line.replace('JPEGImages', 'labels') - line = line.replace('jpg', 'txt') - #print(line) - if (os.path.exists(line[:-1])): - os.system("cp "+ line[:-1] + " VOC/labels/train") - -print(os.path.exists('../data/2007_test.txt')) -f = open('../data/2007_test.txt', 'r') -lines = f.readlines() - -for line in lines: - #print(line.split('/')[-1][:-1]) - line = "/".join(line.split('/')[2:]) - - if (os.path.exists(line[:-1])): - os.system("cp "+ line[:-1] + " VOC/images/val") - -print(os.path.exists('../data/2007_test.txt')) -f = open('../data/2007_test.txt', 'r') -lines = f.readlines() - -for line in lines: - #print(line.split('/')[-1][:-1]) - line = "/".join(line.split('/')[2:]) - line = line.replace('JPEGImages', 'labels') - line = line.replace('jpg', 'txt') - #print(line) - if (os.path.exists(line[:-1])): - os.system("cp "+ line[:-1] + " VOC/labels/val") \ No newline at end of file From 8c3b829214fb8cdae96c61091c0636c497be76bb Mon Sep 17 00:00:00 2001 From: ChristopherSTAN <497592613@qq.com> Date: Thu, 2 Jul 2020 17:05:57 -0400 Subject: [PATCH 09/13] Add files via upload --- data/get_voc.sh | 206 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 206 insertions(+) create mode 100644 data/get_voc.sh diff --git a/data/get_voc.sh b/data/get_voc.sh new file mode 100644 index 0000000..f035bb4 --- /dev/null +++ b/data/get_voc.sh @@ -0,0 +1,206 @@ + +start=`date +%s` + +# handle optional download dir +if [ -z "$1" ] + then + # navigate to ~/data + echo "navigating to ../data/ ..." + mkdir -p ../data + cd ../data/ + else + # check if is valid directory + if [ ! -d $1 ]; then + echo $1 "is not a valid directory" + exit 0 + fi + echo "navigating to" $1 "..." + cd $1 +fi + +echo "Downloading VOC2007 trainval ..." +# Download the data. +curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar +echo "Downloading VOC2007 test data ..." +curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar +echo "Done downloading." + +# Extract data +echo "Extracting trainval ..." +tar -xvf VOCtrainval_06-Nov-2007.tar +echo "Extracting test ..." +tar -xvf VOCtest_06-Nov-2007.tar +echo "removing tars ..." +rm VOCtrainval_06-Nov-2007.tar +rm VOCtest_06-Nov-2007.tar + +end=`date +%s` +runtime=$((end-start)) + +echo "Completed in" $runtime "seconds" + +start=`date +%s` + +# handle optional download dir +if [ -z "$1" ] + then + # navigate to ~/data + echo "navigating to ../data/ ..." + mkdir -p ../data + cd ../data/ + else + # check if is valid directory + if [ ! -d $1 ]; then + echo $1 "is not a valid directory" + exit 0 + fi + echo "navigating to" $1 "..." + cd $1 +fi + +echo "Downloading VOC2012 trainval ..." +# Download the data. +curl -LO http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar +echo "Done downloading." + + +# Extract data +echo "Extracting trainval ..." +tar -xvf VOCtrainval_11-May-2012.tar +echo "removing tar ..." +rm VOCtrainval_11-May-2012.tar + +end=`date +%s` +runtime=$((end-start)) + +echo "Completed in" $runtime "seconds" + +cd ../data +echo "Spliting dataset..." +python3 - "$@" < train.txt +cat 2007_train.txt 2007_val.txt 2007_test.txt 2012_train.txt 2012_val.txt > train.all.txt + +python3 - "$@" < Date: Thu, 2 Jul 2020 17:06:59 -0400 Subject: [PATCH 10/13] Create voc.yaml --- data/voc.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 data/voc.yaml diff --git a/data/voc.yaml b/data/voc.yaml new file mode 100644 index 0000000..e2641d6 --- /dev/null +++ b/data/voc.yaml @@ -0,0 +1,10 @@ + +# train and val datasets (image directory or *.txt file with image paths) +train: ../VOC/images/train/ +val: ../VOC/images/val// + +# number of classes +nc: 20 + +# class names +names: ['aeroplane', 'bicycle','bird','boat','bottle','bus','car','cat','chair','cow','diningtable','dog','horse','motorbike','person','pottedplant','sheep','sofa','train','tvmonitor'] From c0c5fd812188f9561965fe2313ae06ab0246de84 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sat, 4 Jul 2020 16:11:14 -0700 Subject: [PATCH 11/13] Update voc.yaml --- data/voc.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/data/voc.yaml b/data/voc.yaml index e2641d6..9275cf2 100644 --- a/data/voc.yaml +++ b/data/voc.yaml @@ -1,7 +1,14 @@ +# PASCAL VOC dataset http://host.robots.ox.ac.uk/pascal/VOC/ +# Download command: bash yolov5/data/get_voc.sh +# Train command: python train.py --data voc.yaml +# Dataset should be placed next to yolov5 folder: +# /parent_folder +# /VOC +# /yolov5 # train and val datasets (image directory or *.txt file with image paths) train: ../VOC/images/train/ -val: ../VOC/images/val// +val: ../VOC/images/val/ # number of classes nc: 20 From 7df4fcebb1e32d0fdb973d61bca32814fa254769 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sat, 4 Jul 2020 16:12:17 -0700 Subject: [PATCH 12/13] Update voc.yaml --- data/voc.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/voc.yaml b/data/voc.yaml index 9275cf2..ba4eff6 100644 --- a/data/voc.yaml +++ b/data/voc.yaml @@ -14,4 +14,5 @@ val: ../VOC/images/val/ nc: 20 # class names -names: ['aeroplane', 'bicycle','bird','boat','bottle','bus','car','cat','chair','cow','diningtable','dog','horse','motorbike','person','pottedplant','sheep','sofa','train','tvmonitor'] +names: ['aeroplane', 'bicycle','bird','boat','bottle','bus','car','cat','chair','cow','diningtable','dog','horse', + 'motorbike','person','pottedplant','sheep','sofa','train','tvmonitor'] From 72a1746938710a8548c54b2c034b4cb582dcc28c Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sat, 4 Jul 2020 16:12:52 -0700 Subject: [PATCH 13/13] Update get_voc.sh --- data/get_voc.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/data/get_voc.sh b/data/get_voc.sh index f035bb4..f1ad410 100644 --- a/data/get_voc.sh +++ b/data/get_voc.sh @@ -1,4 +1,3 @@ - start=`date +%s` # handle optional download dir @@ -203,4 +202,4 @@ for line in lines: END -rm -rf ../data \ No newline at end of file +rm -rf ../data