Skip to content

Commit

Permalink
modify README for better test guidance
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliotQi committed Sep 19, 2023
1 parent db8023d commit 178a2e8
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 24 deletions.
2 changes: 1 addition & 1 deletion configs/animatediff/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ wget https://civitai.com/api/download/models/78775 -P DreamBooth_LoRA/ --content
2. Modify the config file in `configs/animatediff/animatediff_ToonYou.py`

```python

models_path = {Your Checkpoints Path}
motion_module_cfg=dict(
path={Your MotionModule path}
),
Expand Down
2 changes: 1 addition & 1 deletion configs/animatediff/README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ wget https://civitai.com/api/download/models/78775 -P DreamBooth_LoRA/ --content
2. 修改 `configs/animatediff/animatediff_ToonYou.py` 配置文件中的权重路径

```python

models_path = {Your Checkpoints Path}
motion_module_cfg=dict(
path={Your MotionModule path}
),
Expand Down
8 changes: 3 additions & 5 deletions configs/animatediff/animatediff_Lyriel.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# config for model
stable_diffusion_v15_url = 'runwayml/stable-diffusion-v1-5'
models_path = '/home/wangrunqi/glcc/AnimateDiff/models/'
randomness = dict(
seed=[
10917152860782582783, 6399018107401806238, 15875751942533906793,
Expand Down Expand Up @@ -52,12 +53,9 @@
scheduler=diffusion_scheduler,
test_scheduler=diffusion_scheduler,
data_preprocessor=dict(type='DataPreprocessor'),
motion_module_cfg=dict(
path='/home/wangrunqi/AnimateDiff/models/Motion_Module/mm_sd_v14.ckpt'
),
motion_module_cfg=dict(path=models_path + 'Motion_Module/mm_sd_v14.ckpt'),
dream_booth_lora_cfg=dict(
type='ToonYou',
path='/home/wangrunqi/AnimateDiff/models/' +
'DreamBooth_LoRA/lyriel_v16.safetensors',
path=models_path + 'DreamBooth_LoRA/lyriel_v16.safetensors',
steps=25,
guidance_scale=7.5))
7 changes: 3 additions & 4 deletions configs/animatediff/animatediff_MajicMix.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# config for model
stable_diffusion_v15_url = 'runwayml/stable-diffusion-v1-5'
models_path = '/home/wangrunqi/glcc/AnimateDiff/models/'
randomness = dict(
seed=[
1572448948722921032, 1099474677988590681, 6488833139725635347,
Expand Down Expand Up @@ -52,12 +53,10 @@
scheduler=diffusion_scheduler,
test_scheduler=diffusion_scheduler,
data_preprocessor=dict(type='DataPreprocessor'),
motion_module_cfg=dict(
path='/home/wangrunqi/AnimateDiff/models/Motion_Module/mm_sd_v14.ckpt'
),
motion_module_cfg=dict(path=models_path + 'Motion_Module/mm_sd_v14.ckpt'),
dream_booth_lora_cfg=dict(
type='ToonYou',
path='/home/wangrunqi/AnimateDiff/models/' +
path=models_path +
'DreamBooth_LoRA/majicmixRealistic_v5Preview.safetensors',
steps=25,
guidance_scale=7.5))
8 changes: 3 additions & 5 deletions configs/animatediff/animatediff_RcnzCartoon.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# config for model
stable_diffusion_v15_url = 'runwayml/stable-diffusion-v1-5'
models_path = '/home/wangrunqi/glcc/AnimateDiff/models/'
randomness = dict(
seed=[
16931037867122267877, 2094308009433392066, 4292543217695451092,
Expand Down Expand Up @@ -52,12 +53,9 @@
scheduler=diffusion_scheduler,
test_scheduler=diffusion_scheduler,
data_preprocessor=dict(type='DataPreprocessor'),
motion_module_cfg=dict(
path='/home/wangrunqi/AnimateDiff/models/Motion_Module/mm_sd_v14.ckpt'
),
motion_module_cfg=dict(path=models_path + 'Motion_Module/mm_sd_v14.ckpt'),
dream_booth_lora_cfg=dict(
type='ToonYou',
path='/home/wangrunqi/AnimateDiff/models/' +
'DreamBooth_LoRA/rcnzCartoon3d_v10.safetensors',
path=models_path + 'DreamBooth_LoRA/rcnzCartoon3d_v10.safetensors',
steps=25,
guidance_scale=7.5))
7 changes: 3 additions & 4 deletions configs/animatediff/animatediff_RealisticVision.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# config for model
stable_diffusion_v15_url = 'runwayml/stable-diffusion-v1-5'
models_path = '/home/wangrunqi/glcc/AnimateDiff/models/'
randomness = dict(
seed=[
5658137986800322009, 12099779162349365895, 10499524853910852697,
Expand Down Expand Up @@ -52,12 +53,10 @@
scheduler=diffusion_scheduler,
test_scheduler=diffusion_scheduler,
data_preprocessor=dict(type='DataPreprocessor'),
motion_module_cfg=dict(
path='/home/wangrunqi/AnimateDiff/models/Motion_Module/mm_sd_v14.ckpt'
),
motion_module_cfg=dict(path=models_path + 'Motion_Module/mm_sd_v14.ckpt'),
dream_booth_lora_cfg=dict(
type='ToonYou',
path='/home/wangrunqi/AnimateDiff/models/' +
path=models_path +
'DreamBooth_LoRA/realisticVisionV20_v20.safetensors',
steps=25,
guidance_scale=7.5))
8 changes: 4 additions & 4 deletions configs/animatediff/animatediff_RealisticVision_v2.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# config for model
stable_diffusion_v15_url = 'runwayml/stable-diffusion-v1-5'
models_path = '/home/wangrunqi/glcc/AnimateDiff/models/'
randomness = dict(
seed=[
13100322578370451493, 14752961627088720670, 9329399085567825781,
Expand Down Expand Up @@ -53,12 +54,11 @@
scheduler=diffusion_scheduler,
test_scheduler=diffusion_scheduler,
data_preprocessor=dict(type='DataPreprocessor'),
motion_module_cfg=dict(
path=
'/home/wangrunqi/AnimateDiff/models/Motion_Module/mm_sd_v15_v2.ckpt'),
motion_module_cfg=dict(path=models_path +
'Motion_Module/mm_sd_v15_v2.ckpt'),
dream_booth_lora_cfg=dict(
type='ToonYou',
path='/home/wangrunqi/AnimateDiff/models/' +
path=models_path +
'DreamBooth_LoRA/realisticVisionV20_v20.safetensors',
steps=25,
guidance_scale=7.5))

0 comments on commit 178a2e8

Please sign in to comment.