File size: 474 Bytes
36e33e3 249058c 36e33e3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# My Model - Image Generation
This model is a Stable Diffusion variant trained to generate images from text prompts.
## Usage
To use this model, send a text prompt to the API and specify your desired inference parameters.
## Example
```python
from transformers import pipeline
generator = pipeline("text-to-image", model="awabxnero/hentai.safetensors")
result = generator("A fantasy landscape with mountains")
result[0]["image"].show() # Display the generated image
|