Image Generation
Collection
6 items
•
Updated
This model combines the capabilities of the stable diffusion medium model with a Civit AI text-to-image model fine-tuned on a custom dataset of high-quality images. It aims to generate realistic and detailed images based on textual prompts.
from diffusers import DiffusionPipeline
import torch
pipeline = DiffusionPipeline.from_pretrained(
"Chan-Y/Cyber-Stable-Realistic",
torch_dtype=torch.float16).to("cuda")
prompt = "A bowl of ramen shaped like a cute kawaii bear, by Feng Zikai"
negative = ""
image = pipeline(prompt,
negative_prompt=negative).images[0]
image