-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| python -W ignore evaluate.py \ | ||
| --save_pca_path pca_stats/ffhq_1024 \ | ||
| --latent_dimension 512 \ | ||
| --style_gan_size 1024 \ | ||
| --img_g_weights pretrained_models/stylegan2-ffhq-config-f.pt \ | ||
| --load_pretrain_path /path/to/checkpoints \ | ||
| --load_pretrain_epoch 0 \ | ||
| --results results/ffhq_1024 \ | ||
| --num_test_videos 10 \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| #!/usr/bin/env bash | ||
| python get_stats_pca.py --batchSize 4000 \ | ||
| --save_pca_path pca_stats/ffhq_1024 \ | ||
| --pca_iterations 250 \ | ||
| --latent_dimension 512 \ | ||
| --img_g_weights pretrained_models/stylegan2-ffhq-config-f.pt \ | ||
| --style_gan_size 1024 \ | ||
| --gpu 0 | ||
|
|
||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| python -W ignore train.py --name ffhq_1024-voxel \ | ||
| --time_step 2 \ | ||
| --lr 0.0001 \ | ||
| --save_pca_path pca_stats/ffhq_1024 \ | ||
| --latent_dimension 512 \ | ||
| --dataroot /path/to/voxel \ | ||
| --checkpoints_dir checkpoints/ffhq_1024 \ | ||
| --img_g_weights pretrained_models/stylegan2-ffhq-config-f.pt \ | ||
| --multiprocessing_distributed --world_size 1 --rank 0 \ | ||
| --batchSize 16 \ | ||
| --workers 8 \ | ||
| --w_match 5.0 \ | ||
| --style_gan_size 1024 \ | ||
| --total_epoch 30 \ | ||
| --cross_domain \ | ||
|
|
||
|
|
||
|
|