-
Notifications
You must be signed in to change notification settings - Fork 90
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
mayuema
committed
Apr 7, 2023
1 parent
9334da8
commit fbafcb2
Showing
18 changed files
with
3,309 additions
and
13 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
/checkpoints | ||
|
||
/data | ||
|
||
/figs | ||
|
||
/log | ||
|
||
*.log | ||
|
||
*.pth | ||
|
||
*.jpg | ||
|
||
*.og | ||
|
||
/logs | ||
|
||
/stable_diffusion.egg-info | ||
|
||
/__pycache__ | ||
|
||
/output | ||
|
||
*.pyc | ||
|
||
/models | ||
|
||
*.ckpt | ||
|
||
/src | ||
|
||
/newsd_weight | ||
|
||
/data | ||
|
||
/others |
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,29 @@ | ||
pretrained_model_path: "./checkpoints/stable-diffusion-v1-4" | ||
output_dir: "output" | ||
|
||
|
||
validation_data: | ||
prompts: | ||
- "Iron man on the beach" | ||
- "Stormtrooper on the sea" | ||
- "Astronaut on the beach" | ||
video_length: 32 | ||
width: 512 | ||
height: 512 | ||
num_inference_steps: 50 | ||
guidance_scale: 12.5 | ||
use_inv_latent: False | ||
num_inv_steps: 50 | ||
dataset_set: "val" | ||
|
||
|
||
train_batch_size: 1 | ||
validation_steps: 100 | ||
|
||
resume_from_checkpoint: ./checkpoints/followyourpose_checkpoint-1000 | ||
|
||
|
||
seed: 33 | ||
mixed_precision: 'no' | ||
gradient_checkpointing: False | ||
enable_xformers_memory_efficient_attention: True |
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,47 @@ | ||
pretrained_model_path: "./checkpoints/stable-diffusion-v1-4" | ||
output_dir: "output" | ||
|
||
train_data: | ||
video_path: "no path" | ||
prompt: "None" | ||
n_sample_frames: 12 | ||
width: 512 | ||
height: 512 | ||
sample_start_idx: 0 | ||
sample_frame_rate: 4 | ||
dataset_set: "train" | ||
|
||
validation_data: | ||
prompts: | ||
- "A Iron man on the beach" | ||
- "A Spider man on the snow" | ||
- "A Superman on the street" | ||
- "A boy on the forest" | ||
video_length: 24 | ||
width: 512 | ||
height: 512 | ||
num_inference_steps: 50 | ||
guidance_scale: 12.5 | ||
use_inv_latent: False | ||
num_inv_steps: 50 | ||
dataset_set: "val" | ||
|
||
|
||
learning_rate: 3e-5 | ||
train_batch_size: 1 | ||
max_train_steps: 5000 | ||
checkpointing_steps: 1000 | ||
validation_steps: 100 | ||
trainable_modules: | ||
- "attn1.to_q" | ||
- "attn2.to_q" | ||
- "attn_temp" | ||
- "conv_temporal" | ||
skeleton_path: './pose_example/vis_kun_pose2.mov' | ||
|
||
|
||
seed: 33 | ||
mixed_precision: 'no' | ||
use_8bit_adam: False | ||
gradient_checkpointing: False | ||
enable_xformers_memory_efficient_attention: True |
Oops, something went wrong.