Edit model card

graphic-art

preview

Custom Stable Diffusion checkpoint (based on SD 2.1) for generating graphic-design related images.

Original model by pmejna on CivitAI.

⚠️ For best results set at least one side to 768px.

🧨 Diffusers

This model can be used just like any other Stable Diffusion model with Hugging Face pipelines, read the docs for more information.

import torch
from diffusers import StableDiffusionPipeline

model_id = "n6ai/graphic-art"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")

prompt = "your prompt"
image = pipe(prompt).images[0]

image.save("./result.png")
Downloads last month
76
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.

Finetuned from