Update README.md
Browse files
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 |
-
│
|
|
|
|
|
|
|
| 17 |
└── test/
|
| 18 |
├── category1.h5
|
| 19 |
-
|
|
|
|
| 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 |
-
│
|
|
|
|
|
|
|
| 33 |
└── Masks
|
| 34 |
├── Anomaly_0: [chunk_size, H, W] # Pixel-level annotations for anomaly images
|
| 35 |
-
|
|
|
|
| 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 |
|