LPX55 commited on
Commit
d9de785
·
verified ·
1 Parent(s): 83314dd

Create 02-restructure.txt

Browse files
Files changed (1) hide show
  1. logs/02-restructure.txt +33 -0
logs/02-restructure.txt ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Original folder structure:
2
+
3
+ EvalSet
4
+
5
+ ├── modelA
6
+ │ ├── generated
7
+ │ │ └── image1.png
8
+ │ └── real
9
+ │ └── image2.png
10
+
11
+ └── modelB
12
+ ├── generated
13
+ │ └── image3.png
14
+ └── real
15
+ └── image4.png
16
+
17
+ Restructured to:
18
+
19
+ resampledEvalSet
20
+
21
+ ├── modelA
22
+ │ └── image1.png
23
+
24
+ └── modelB
25
+ └── image3.png
26
+
27
+ realImages
28
+
29
+ ├── modelA
30
+ │ └── image2.png
31
+
32
+ └── modelB
33
+ └── image4.png