update README
Browse files
README.md
CHANGED
@@ -30,26 +30,27 @@ These models were trained on MNIST only (digits), but were found to generate new
|
|
30 |
git lfs pull
|
31 |
```
|
32 |
|
33 |
-
#
|
34 |
|
35 |
```bash
|
36 |
-
python cli.py
|
37 |
```
|
38 |
|
39 |
```bash
|
40 |
-
python cli.py
|
41 |
```
|
42 |
|
43 |
-
# Generate samples
|
44 |
-
|
45 |
```bash
|
46 |
-
python cli.py test --model-path=
|
47 |
```
|
48 |
|
|
|
|
|
|
|
49 |
```bash
|
50 |
-
python cli.py
|
51 |
```
|
52 |
|
53 |
```bash
|
54 |
-
python cli.py
|
55 |
```
|
|
|
30 |
git lfs pull
|
31 |
```
|
32 |
|
33 |
+
# Generate samples
|
34 |
|
35 |
```bash
|
36 |
+
python cli.py test --model-path=convae.th --nb-generate=100 --folder=convae
|
37 |
```
|
38 |
|
39 |
```bash
|
40 |
+
python cli.py test --model-path=deep_convae.th --nb-generate=100 --folder=deep_convae
|
41 |
```
|
42 |
|
|
|
|
|
43 |
```bash
|
44 |
+
python cli.py test --model-path=fc_sparse.th --nb-generate=100 --folder=deep_convae
|
45 |
```
|
46 |
|
47 |
+
|
48 |
+
# Training
|
49 |
+
|
50 |
```bash
|
51 |
+
python cli.py train --dataset=mnist --folder=convae --model=convae
|
52 |
```
|
53 |
|
54 |
```bash
|
55 |
+
python cli.py train --dataset=mnist --folder=deep_convae --model=deep_convae
|
56 |
```
|