File size: 924 Bytes
b891e61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""Dataset download instructions.

Both datasets must be downloaded manually from Roboflow Universe in COCO format.
The Roboflow API cannot be used because the cracks dataset (cracks-3ii36) has
no generated versions β€” the owner never created an exportable version.

Download locations:
  - Taping: https://universe.roboflow.com/objectdetect-pu6rn/drywall-join-detect
    β†’ Export as COCO, place under data/raw/taping/
  - Cracks: https://universe.roboflow.com/fyp-ny1jt/cracks-3ii36
    β†’ Export as COCO, place under data/raw/cracks/

Expected structure after download:
  data/raw/
  β”œβ”€β”€ taping/
  β”‚   β”œβ”€β”€ train/
  β”‚   β”‚   β”œβ”€β”€ _annotations.coco.json
  β”‚   β”‚   └── *.jpg
  β”‚   └── valid/
  β”‚       β”œβ”€β”€ _annotations.coco.json
  β”‚       └── *.jpg
  └── cracks/
      └── train/
          β”œβ”€β”€ _annotations.coco.json
          └── *.jpg
"""