etweedy's picture
Update app.py
c1aa01e
import gradio as gr
description = "A version of Stable Diffusion v1.5 which knows about my dog, Tessa. This model was fine-tuned using the Dreambooth technique (https://dreambooth.github.io/). To generate a picture of Tessa, provide a prompt referring to '\<tessa\> dog'. Make sure to include the brackets. This is running on a free CPU, so for faster inference please duplicate this space."
title = "Dreambooth Tessa Generator"
examples = [["A formal portrait of <tessa> dog in the style of Rubens, masterpiece, stunning piece of art."],["A hybrid of <tessa> dog and baby yoda, green fur, very cute eyes, stunning high definition rendering, 4k, unreal engine, trending on artstation hq."],["Rendering of <tessa> dog, classical floral elements emanating from center of face, woodcutting template, decorative design, classical ornament, motif, bilateral symmetry, roses, leaves, flowers, buds, flowering buds, feathers, negative space, highly detailed etching"]]
interface = gr.Interface.load("models/etweedy/tessa",
description=description,
title = title,
examples = examples
)
interface.launch()