Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add optional dataset.yaml path attribute #3753

Merged
merged 29 commits into from
Jun 24, 2021
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8f94873
Add optional dataset.yaml `path` attribute
glenn-jocher Jun 23, 2021
d0367dc
pass locals to python scripts
glenn-jocher Jun 24, 2021
dc54136
handle lists
glenn-jocher Jun 24, 2021
6370565
update coco128.yaml
glenn-jocher Jun 24, 2021
cd52628
Capitalize first letter
glenn-jocher Jun 24, 2021
a0815a1
add test key
glenn-jocher Jun 24, 2021
451fe11
finalize GlobalWheat2020.yaml
glenn-jocher Jun 24, 2021
ac22a56
finalize objects365.yaml
glenn-jocher Jun 24, 2021
1ad6156
finalize SKU-110K.yaml
glenn-jocher Jun 24, 2021
ec16dd3
finalize SKU-110K.yaml
glenn-jocher Jun 24, 2021
7a989dd
finalize VisDrone.yaml
glenn-jocher Jun 24, 2021
48f51a0
NoneType fix
glenn-jocher Jun 24, 2021
131a0b9
update download comment
glenn-jocher Jun 24, 2021
c260622
voc to VOC
glenn-jocher Jun 24, 2021
eeb64dc
update
glenn-jocher Jun 24, 2021
8e676d3
update VOC.yaml
glenn-jocher Jun 24, 2021
083e0af
update VOC.yaml
glenn-jocher Jun 24, 2021
2467ab4
remove dashes
glenn-jocher Jun 24, 2021
7faca1d
delete get_voc.sh
glenn-jocher Jun 24, 2021
57adf71
force coco and coco128 to ../datasets
glenn-jocher Jun 24, 2021
9f2d764
Capitalize Argoverse_HD.yaml
glenn-jocher Jun 24, 2021
313f04f
Capitalize Objects365.yaml
glenn-jocher Jun 24, 2021
f9217ea
merge master
glenn-jocher Jun 24, 2021
d865219
update Argoverse_HD.yaml
glenn-jocher Jun 24, 2021
5a9b5b1
coco segments fix
glenn-jocher Jun 24, 2021
9bfc09a
VOC single-thread
glenn-jocher Jun 24, 2021
f75ff30
update Argoverse_HD.yaml
glenn-jocher Jun 24, 2021
173cca2
update data_dict in test handling
glenn-jocher Jun 24, 2021
7bcac6b
create root
glenn-jocher Jun 24, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
finalize SKU-110K.yaml
  • Loading branch information
glenn-jocher committed Jun 24, 2021
commit ec16dd38663cb3897439017b736732d852ebb73f
6 changes: 3 additions & 3 deletions data/SKU-110K.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

# Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
path: ../datasets/SKU-110K # dataset root dir
train: train.txt # 8219 images
val: val.txt # 588 images
test: test.txt # 2936 images
train: train.txt # train images (relative to 'path') 8219 images
val: val.txt # val images (relative to 'path') 588 images
test: test.txt # test images (optional) 2936 images

# Classes
nc: 1 # number of classes
Expand Down