Edit model card

Model Card for my pokemon generating AI

I trained this model using LoRA and Stable Diffusion v1.4

Model Details

How to use

Sample code:

from diffusers import StableDiffusionPipeline
import torch

model_path = "sr5434/sd-pokemon-model-lora"
pipe = StableDiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", torch_dtype=torch.float16)
pipe.unet.load_attn_procs(model_path)
pipe.to("cuda")

prompt = input("Prompt:")
image = pipe(prompt, num_inference_steps=50, guidance_scale=7.5).images[0]
image.save("pokemon.png")
Downloads last month
158

Dataset used to train sr5434/sd-pokemon-model-lora