DreamBooth model for the hasbulla concept trained by carlosabadia on the carlosabadia/hasbulla dataset. DreamBooth Hackaton's Winner! π
This is a Stable Diffusion model fine-tuned on the hasbulla concept with DreamBooth. It can be used by modifying the instance_prompt
: hasbulla person
This model was created as part of the DreamBooth Hackathon π₯. Visit the organisation page for instructions on how to take part!
Description
This is a Stable Diffusion model fine-tuned on Hasbulla
images for the wildcard theme.
It was also featured in Hasbulla's Twitter account!
Hasbulla Van Gogh pic.twitter.com/5f0uPKhi6U
β Hasbulla π (@HasbullaHive) January 4, 2023
Images generated by model
Gradio & Colab
Model supported in a Gradio Web UI and Colab:
Usage
import torch
from diffusers import StableDiffusionPipeline, DPMSolverMultistepScheduler
pipe = StableDiffusionPipeline.from_pretrained(
"carlosabadia/hasbulla",
scheduler = DPMSolverMultistepScheduler.from_pretrained("carlosabadia/hasbulla", subfolder="scheduler"),
torch_dtype=torch.float16,
).to("cuda")
guidance_scale = 7
prompt = "A portrait of hasbulla person"
images = pipe(prompt, num_images_per_prompt=1, num_inference_steps=25, guidance_scale=guidance_scale).images
image = images[0]
image.save("hasbulla.png")
- Downloads last month
- 10
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.