|
--- |
|
language: |
|
- en |
|
tags: |
|
- stable-diffusion |
|
- stable-diffusion-diffusers |
|
- beeple |
|
- digital art |
|
- aiart |
|
license: creativeml-openrail-m |
|
--- |
|
|
|
<center><img src="https://huggingface.co./riccardogiorato/beeple-diffusion/resolve/main/assets/robots.png" width="512" height="512"/></center> |
|
|
|
![visitors](https://visitor-badge.glitch.me/badge?page_id=riccardogiorato-beeple-diffusion) |
|
|
|
# Beeple Diffusion |
|
|
|
An AI model that generates artwork with [beeple](https://twitter.com/beeple) style! |
|
|
|
Based of a finetuned Stable Diffusion V1.5, trained in Dreambooth with more than 600 images of Beeple's artwork. |
|
|
|
by [riccardogiorato](https://twitter.com/riccardogiorato) |
|
|
|
### 🧨 Diffusers |
|
|
|
This model can be used just like any other Stable Diffusion model. For more information, |
|
please have a look at the [Stable Diffusion](https://huggingface.co./docs/diffusers/api/pipelines/stable_diffusion). |
|
|
|
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](). |
|
|
|
```python |
|
from diffusers import StableDiffusionPipeline |
|
import torch |
|
model_id = "riccardogiorato/beeple-diffusion" |
|
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) |
|
pipe = pipe.to("cuda") |
|
prompt = "a magical witch with golden hair with beeple style" |
|
image = pipe(prompt).images[0] |
|
image.save("./magical_witch.png") |
|
``` |
|
|
|
# **👇Model👇** |
|
|
|
AI Model Weights available at huggingface: https://huggingface.co./riccardogiorato/beeple-diffusion |
|
|
|
# Usage |
|
|
|
After model loaded, use keyword **beeple** in your prompt. |