Tocmac commited on
Commit
ec1f394
·
verified ·
1 Parent(s): 0f785b0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -4
README.md CHANGED
@@ -13,10 +13,13 @@ The file structure of the training set and the test set are consistent, as follo
13
  dataset/
14
  ├── train/
15
  │ ├── category1.h5
16
- ── category2.h5
 
 
17
  └── test/
18
  ├── category1.h5
19
- ── category2.h5
 
20
  ```
21
 
22
  The structure of the hdf5 file is as follows, where ```chunk_size = 100```:
@@ -25,14 +28,19 @@ The structure of the hdf5 file is as follows, where ```chunk_size = 100```:
25
  ├── attrs
26
  │ ├── split: "train"/"test"
27
  │ └── category: category_name
 
28
  ├── Images
29
  │ ├── Anomaly_0: [chunk_size, H, W, C] # Anomaly images
30
  │ ├── Anomaly_1: [chunk_size, H, W, C]
 
31
  │ ├── Normal_0: [chunk_size, H, W, C] # Normal images
32
- ── Normal_1: [chunk_size, H, W, C]
 
 
33
  └── Masks
34
  ├── Anomaly_0: [chunk_size, H, W] # Pixel-level annotations for anomaly images
35
- ── Anomaly_1: [chunk_size, H, W]
 
36
  ```
37
 
38
 
 
13
  dataset/
14
  ├── train/
15
  │ ├── category1.h5
16
+ ── category2.h5
17
+ │ └── ...
18
+
19
  └── test/
20
  ├── category1.h5
21
+ ── category2.h5
22
+ └── ...
23
  ```
24
 
25
  The structure of the hdf5 file is as follows, where ```chunk_size = 100```:
 
28
  ├── attrs
29
  │ ├── split: "train"/"test"
30
  │ └── category: category_name
31
+
32
  ├── Images
33
  │ ├── Anomaly_0: [chunk_size, H, W, C] # Anomaly images
34
  │ ├── Anomaly_1: [chunk_size, H, W, C]
35
+ │ ├── ...
36
  │ ├── Normal_0: [chunk_size, H, W, C] # Normal images
37
+ ── Normal_1: [chunk_size, H, W, C]
38
+ │ └── ...
39
+
40
  └── Masks
41
  ├── Anomaly_0: [chunk_size, H, W] # Pixel-level annotations for anomaly images
42
+ ── Anomaly_1: [chunk_size, H, W]
43
+ └── ...
44
  ```
45
 
46