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 ·
b8f4c3b
1
Parent(s): 49ae9f5
Update README.md
Browse files
README.md
CHANGED
|
@@ -30,7 +30,7 @@ e.g. **_masterpiece, best quality, 1girl, brown hair, green eyes, colorful, autu
|
|
| 30 |
This model can be used just like any other Stable Diffusion model. For more information,
|
| 31 |
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
|
| 32 |
|
| 33 |
-
You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or
|
| 34 |
|
| 35 |
```python
|
| 36 |
from diffusers import StableDiffusionPipeline
|
|
|
|
| 30 |
This model can be used just like any other Stable Diffusion model. For more information,
|
| 31 |
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
|
| 32 |
|
| 33 |
+
You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or FLAX/JAX.
|
| 34 |
|
| 35 |
```python
|
| 36 |
from diffusers import StableDiffusionPipeline
|