Spaces:
Runtime error
Runtime error
add styles
Browse files- app.py +2 -0
- ominicontrol.py +2 -0
app.py
CHANGED
@@ -53,6 +53,8 @@ styles = [
|
|
53 |
"Irasutoya Illustration",
|
54 |
"The Simpsons",
|
55 |
"Snoopy",
|
|
|
|
|
56 |
]
|
57 |
|
58 |
|
|
|
53 |
"Irasutoya Illustration",
|
54 |
"The Simpsons",
|
55 |
"Snoopy",
|
56 |
+
"3D Animation",
|
57 |
+
"MaoMu Ghibli",
|
58 |
]
|
59 |
|
60 |
|
ominicontrol.py
CHANGED
@@ -35,11 +35,13 @@ pipe.load_lora_weights(
|
|
35 |
weight_name=f"v0/snoopy.safetensors",
|
36 |
adapter_name="snoopy",
|
37 |
)
|
|
|
38 |
pipe.load_lora_weights(
|
39 |
"./lora",
|
40 |
weight_name=f"MaoMu_Ghibli.safetensors",
|
41 |
adapter_name="maomu_ghibli",
|
42 |
)
|
|
|
43 |
pipe.load_lora_weights(
|
44 |
"./lora",
|
45 |
weight_name=f"3d_animation.safetensors",
|
|
|
35 |
weight_name=f"v0/snoopy.safetensors",
|
36 |
adapter_name="snoopy",
|
37 |
)
|
38 |
+
# ref: https://civitai.com/models/715472/flux-hayao-miyazaki-ghibli
|
39 |
pipe.load_lora_weights(
|
40 |
"./lora",
|
41 |
weight_name=f"MaoMu_Ghibli.safetensors",
|
42 |
adapter_name="maomu_ghibli",
|
43 |
)
|
44 |
+
# ref: https://civitai.com/models/824739/flux-3d-animation-style-lora
|
45 |
pipe.load_lora_weights(
|
46 |
"./lora",
|
47 |
weight_name=f"3d_animation.safetensors",
|