File size: 875 Bytes
c77d21f
 
b3969f5
c77d21f
7ec0a48
c77d21f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr
import os

gr.load("tonyassi/mgm",
    src="models",
    hf_token = os.environ.get("HF_TOKEN"),
    inputs=gr.Textbox(label='Prompt (use "mgm film" as keyword)', value='mgm film '),
    examples=[['mgm film megan fox pinup girl'], ['mgm film asap rocky eating in a fancy restaurant, 1950s'], ['mgm film bettie page outside a mansion with two poodles'],['mgm film lady gaga in a limo, neon lights, pet snake']],
    title='MGM Film Diffusion',
    theme = gr.themes.Base(primary_hue="teal",secondary_hue="teal",neutral_hue="slate"),
    description="""
by [Tony Assi](https://www.tonyassi.com/)
This app uses the [MGM Film](https://huggingface.co/tonyassi/mgm) Dreambooth model finetuned on SDXL. Please ❤️ this Space.
I build custom AI apps for companies. <a href="mailto: [email protected]">Email me</a> for business inquiries.
"""
).launch()