pseudopsych
commited on
Upload folder using huggingface_hub
Browse files- .gitattributes +4 -0
- README.md +28 -0
- config.yaml +43 -0
- samples/sample-100.gif +3 -0
- samples/sample-100/Someone opening a drawer.gif +3 -0
- samples/sample-200.gif +3 -0
- samples/sample-200/Someone opening a drawer.gif +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
samples/sample-100/Someone[[:space:]]opening[[:space:]]a[[:space:]]drawer.gif filter=lfs diff=lfs merge=lfs -text
|
37 |
+
samples/sample-100.gif filter=lfs diff=lfs merge=lfs -text
|
38 |
+
samples/sample-200/Someone[[:space:]]opening[[:space:]]a[[:space:]]drawer.gif filter=lfs diff=lfs merge=lfs -text
|
39 |
+
samples/sample-200.gif filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: creativeml-openrail-m
|
3 |
+
base_model: CompVis/stable-diffusion-v1-4
|
4 |
+
training_prompt: Someone opening a drawer with their left hand, only their hand the drawer visible and from the the perspective of them
|
5 |
+
tags:
|
6 |
+
- stable-diffusion
|
7 |
+
- stable-diffusion-diffusers
|
8 |
+
- text-to-image
|
9 |
+
- diffusers
|
10 |
+
- text-to-video
|
11 |
+
- tune-a-video
|
12 |
+
inference: false
|
13 |
+
---
|
14 |
+
|
15 |
+
# Tune-A-Video - openingdrawer
|
16 |
+
|
17 |
+
## Model description
|
18 |
+
- Base model: [CompVis/stable-diffusion-v1-4](https://huggingface.co/CompVis/stable-diffusion-v1-4)
|
19 |
+
- Training prompt: Someone opening a drawer with their left hand, only their hand the drawer visible and from the the perspective of them
|
20 |
+
|
21 |
+
## Samples
|
22 |
+
Test prompt: Someone opening a drawer
|
23 |
+
|
24 |
+
![sample-200](samples/sample-200.gif)
|
25 |
+
|
26 |
+
## Related papers:
|
27 |
+
- [Tune-A-Video](https://arxiv.org/abs/2212.11565): One-Shot Tuning of Image Diffusion Models for Text-to-Video Generation
|
28 |
+
- [Stable-Diffusion](https://arxiv.org/abs/2112.10752): High-Resolution Image Synthesis with Latent Diffusion Models
|
config.yaml
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
pretrained_model_path: checkpoints/CompVis/stable-diffusion-v1-4
|
2 |
+
output_dir: /home/user/app/experiments/openingdrawer
|
3 |
+
train_data:
|
4 |
+
video_path: /tmp/gradio/600d6de6f645112fa6c26d0d07c6b14594e07cbf/cut-drawer-close-left-hand-ezgif.com-gif-to-mp4-converter.mp4
|
5 |
+
prompt: Someone opening a drawer with their left hand, only their hand the drawer
|
6 |
+
visible and from the the perspective of them
|
7 |
+
n_sample_frames: 8
|
8 |
+
width: 512
|
9 |
+
height: 512
|
10 |
+
sample_start_idx: 0
|
11 |
+
sample_frame_rate: 1
|
12 |
+
validation_data:
|
13 |
+
prompts:
|
14 |
+
- Someone opening a drawer
|
15 |
+
video_length: 8
|
16 |
+
width: 512
|
17 |
+
height: 512
|
18 |
+
num_inference_steps: 50
|
19 |
+
guidance_scale: 7.5
|
20 |
+
validation_steps: 100
|
21 |
+
trainable_modules:
|
22 |
+
- attn1.to_q
|
23 |
+
- attn2.to_q
|
24 |
+
- attn_temp
|
25 |
+
train_batch_size: 1
|
26 |
+
max_train_steps: 300
|
27 |
+
learning_rate: 3.5e-05
|
28 |
+
scale_lr: false
|
29 |
+
lr_scheduler: constant
|
30 |
+
lr_warmup_steps: 0
|
31 |
+
adam_beta1: 0.9
|
32 |
+
adam_beta2: 0.999
|
33 |
+
adam_weight_decay: 0.01
|
34 |
+
adam_epsilon: 1.0e-08
|
35 |
+
max_grad_norm: 1.0
|
36 |
+
gradient_accumulation_steps: 1
|
37 |
+
gradient_checkpointing: true
|
38 |
+
checkpointing_steps: 1000
|
39 |
+
resume_from_checkpoint: null
|
40 |
+
mixed_precision: fp16
|
41 |
+
use_8bit_adam: false
|
42 |
+
enable_xformers_memory_efficient_attention: true
|
43 |
+
seed: 23722
|
samples/sample-100.gif
ADDED
Git LFS Details
|
samples/sample-100/Someone opening a drawer.gif
ADDED
Git LFS Details
|
samples/sample-200.gif
ADDED
Git LFS Details
|
samples/sample-200/Someone opening a drawer.gif
ADDED
Git LFS Details
|