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