π [Update] gitignore, only disable root dataset
Browse files- .gitignore +2 -2
- config/config.yaml +3 -2
- config/data/coco.yaml +1 -0
- config/data/download.yaml +16 -0
.gitignore
CHANGED
@@ -111,8 +111,8 @@ dmypy.json
|
|
111 |
|
112 |
# Machine learning specific folders and symlinks
|
113 |
runs
|
114 |
-
data
|
115 |
-
datasets
|
116 |
|
117 |
# Datasets and model checkpoints
|
118 |
*.pth
|
|
|
111 |
|
112 |
# Machine learning specific folders and symlinks
|
113 |
runs
|
114 |
+
./data
|
115 |
+
./datasets
|
116 |
|
117 |
# Datasets and model checkpoints
|
118 |
*.pth
|
config/config.yaml
CHANGED
@@ -3,6 +3,7 @@ hydra:
|
|
3 |
dir: ./runs
|
4 |
|
5 |
defaults:
|
6 |
-
-
|
7 |
-
-
|
|
|
8 |
- _self_
|
|
|
3 |
dir: ./runs
|
4 |
|
5 |
defaults:
|
6 |
+
- data: coco
|
7 |
+
- download: ../data/download
|
8 |
+
- model: v7-base
|
9 |
- _self_
|
config/data/coco.yaml
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
path: data/coco
|
config/data/download.yaml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
path: data/coco
|
2 |
+
images:
|
3 |
+
base_url: http://images.cocodataset.org/zips/
|
4 |
+
datasets:
|
5 |
+
train:
|
6 |
+
file_name: train2017.zip
|
7 |
+
file_num: 118287
|
8 |
+
val:
|
9 |
+
file_name: val2017.zip
|
10 |
+
num_files: 5000
|
11 |
+
test:
|
12 |
+
file_name: test2017.zip
|
13 |
+
num_files: 40670
|
14 |
+
hydra:
|
15 |
+
run:
|
16 |
+
dir: ./runs
|