logs/02-restructure.txt
| 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 |