Skip to content

Commit 7bacfbe

Browse files
authored
Revise dataset preparation steps and citation heading
Updated the README to reflect changes in dataset preparation steps and corrected the citation heading.
1 parent 4eaaddb commit 7bacfbe

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
1.
2-
1+
1. Download Animal Face High Quality v2
32
```
43
bash download.sh afhq-v2-dataset
54
```
65

7-
2.
8-
6+
2. Split test to make val
97
```
108
for d in data/test/*; do
119
if [ -d "$d" ]; then
@@ -20,14 +18,14 @@ for d in data/test/*; do
2018
done
2119
```
2220

23-
3.
21+
3. Create txt files for dataloader
2422
```
2523
find "$(pwd)/data/train" -name "*.png" > train.txt
2624
find "$(pwd)/data/val" -name "*.png" > val.txt
2725
find "$(pwd)/data/test" -name "*.png" > test.txt
2826
```
2927

30-
### Ciatation
28+
### Citation
3129
```
3230
StarGAN v2
3331
Copyright (c) 2020-present NAVER Corp.

0 commit comments

Comments
 (0)