Beeple Diffusion
An AI model that generates artwork with beeple style!
Based of a finetuned Stable Diffusion V1.5, trained in Dreambooth with more than 600 images of Beeple's artwork.
๐งจ Diffusers
This model can be used just like any other Stable Diffusion model. For more information, please have a look at the Stable Diffusion.
You can also export the model to ONNX, MPS and/or FLAX/JAX.
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.
- Downloads last month
- 44
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.