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 ·
b6450e5
1
Parent(s): bc2fb38
update
Browse files- mekakure/README.md +2 -4
mekakure/README.md
CHANGED
|
@@ -17,13 +17,11 @@ Since there are some differences in output results, older version is also distri
|
|
| 17 |
## 使い方 (Usage)
|
| 18 |
|
| 19 |
アニメ系のデータモデル向きです。写真系のデータモデルではほとんどの場合うまく動作しません。
|
|
|
|
| 20 |
|
| 21 |
-
`hair over eyes`のプロンプトはなるべく付けてください。これが無いと目がうっすら見える状態になることが多いです。
|
| 22 |
-
|
| 23 |
どうしても目が出てきてしまう場合はNegativeに`(eyes:1.5)`を、眉毛を隠したい場合はNegativeに`(eyeblows:1.5)`を入れてください。
|
| 24 |
|
| 25 |
-
LoRAを有効にするだけで発動します。階層調整済みですので、基本的には階層指定せず強度指定のみで大丈夫です。
|
| 26 |
-
|
| 27 |
## サンプル ギャラリー (Sample gallery)
|
| 28 |
|
| 29 |

|
|
|
|
| 17 |
## 使い方 (Usage)
|
| 18 |
|
| 19 |
アニメ系のデータモデル向きです。写真系のデータモデルではほとんどの場合うまく動作しません。
|
| 20 |
+
LoRAを有効にするだけで発動します。階層調整済みですので、基本的には階層指定せず強度指定のみで大丈夫です。
|
| 21 |
|
| 22 |
+
`hair over eyes`のプロンプトはなるべく付けてください。これが無いと目がうっすら見える状態になることが多いです。
|
|
|
|
| 23 |
どうしても目が出てきてしまう場合はNegativeに`(eyes:1.5)`を、眉毛を隠したい場合はNegativeに`(eyeblows:1.5)`を入れてください。
|
| 24 |
|
|
|
|
|
|
|
| 25 |
## サンプル ギャラリー (Sample gallery)
|
| 26 |
|
| 27 |

|