gragioApp / app.py
soren654's picture
Update app.py
e8a4027 verified
raw
history blame
279 Bytes
gr.load("models/lexa862/NSFWmodel").launch()
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
demo = gr.Interface(lambda x: x, "image", "image")
demo.launch(max_file_size="5mb")
demo.launch(share=True)