Instructions to use JujoHotaru/lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use JujoHotaru/lora with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("fill-in-base-model", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("JujoHotaru/lora") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Commit ·
b6e33f0
1
Parent(s): 7a5f076
update
Browse files- talkmouth/README.md +1 -1
talkmouth/README.md
CHANGED
|
@@ -19,7 +19,7 @@ It can be applied to a variety of other applications depending on its shape.
|
|
| 19 |
## 使い方 (Usage)
|
| 20 |
|
| 21 |
アニメ系のデータモデル向きです。写真系のデータモデルではほとんどの場合うまく動作しません。
|
| 22 |
-
LoRAを有効にするだけで発動しますが、`open mouth`のプロンプトはなるべく指定してください。
|
| 23 |
口の大きさ(開き具合/閉じ具合)は、LoRA適用強度である程度調整することができます。
|
| 24 |
|
| 25 |
Suitable for anime-style models. With most photorealistic models, it won't work well.
|
|
|
|
| 19 |
## 使い方 (Usage)
|
| 20 |
|
| 21 |
アニメ系のデータモデル向きです。写真系のデータモデルではほとんどの場合うまく動作しません。
|
| 22 |
+
LoRAを有効にするだけで発動しますが、`open mouth`のプロンプトはなるべく指定してください。`closed mouth`を指定すると再現されなくなるので注意してください。
|
| 23 |
口の大きさ(開き具合/閉じ具合)は、LoRA適用強度である程度調整することができます。
|
| 24 |
|
| 25 |
Suitable for anime-style models. With most photorealistic models, it won't work well.
|