Commit
·
182c4a7
1
Parent(s):
31c3b6a
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,30 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Dataset Dir
|
2 |
+
|
3 |
+
data(input path)
|
4 |
+
│ index.json(optional, for nosiy model)
|
5 |
+
│ new_labels.json(optional, for nosiy model)
|
6 |
+
│ old_labels.json(optional, for nosiy model)
|
7 |
+
|
|
8 |
+
└───Model
|
9 |
+
│ │ model.py
|
10 |
+
│ │
|
11 |
+
│ └───Epoch_1
|
12 |
+
│ │ index.json
|
13 |
+
│ │ subject_model.pth
|
14 |
+
| | (train_data.npy)
|
15 |
+
| | (test_data.npy)
|
16 |
+
| | (border_centers.npy)
|
17 |
+
| | (vismodel.pth)
|
18 |
+
│ └───Epoch_2
|
19 |
+
| | ...
|
20 |
+
│
|
21 |
+
└───Training_data
|
22 |
+
| │ training_dataset_data.pth
|
23 |
+
| │ training_dataset_label.pth
|
24 |
+
│
|
25 |
+
└───Testing_data
|
26 |
+
│ │ testing_dataset_data.pth
|
27 |
+
│ │ testing_dataset_label.pth
|
28 |
+
|
29 |
+
└───config.json
|
30 |
+
|