Instructions to use JosephusCheung/ACertainModel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use JosephusCheung/ACertainModel with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("JosephusCheung/ACertainModel", dtype=torch.bfloat16, device_map="cuda") prompt = "masterpiece, best quality, 1girl, brown hair, green eyes, colorful, autumn, cumulonimbus clouds, lighting, blue sky, falling leaves, garden" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Commit ·
f9b3405
1
Parent(s): 566323b
Update README.md
Browse files
README.md
CHANGED
|
@@ -27,9 +27,9 @@ e.g. **_masterpiece, best quality, 1girl, brown hair, green eyes, colorful, autu
|
|
| 27 |
|
| 28 |
## About online preview with Hosted inference API, also generation with this model
|
| 29 |
|
| 30 |
-
Parameters are not allowed to be modified, as it seems that it is generated with
|
| 31 |
|
| 32 |
-
Here is an example of inference settings, if it is applicable with you on your own server:
|
| 33 |
|
| 34 |
## 🧨 Diffusers
|
| 35 |
|
|
|
|
| 27 |
|
| 28 |
## About online preview with Hosted inference API, also generation with this model
|
| 29 |
|
| 30 |
+
Parameters are not allowed to be modified, as it seems that it is generated with *Clip skip: 1*, for better performance, it is strongly recommended to use *Clip skip: 2* instead.
|
| 31 |
|
| 32 |
+
Here is an example of inference settings, if it is applicable with you on your own server: *Steps: 28, Sampler: Euler a, CFG scale: 11, Clip skip: 2*.
|
| 33 |
|
| 34 |
## 🧨 Diffusers
|
| 35 |
|