|
import gradio as gr |
|
|
|
title = 'FOUND' |
|
description = 'Gradio Demo accompanying paper "Unsupervised Object Localization: Observing the Background to Discover Objects"\n \ |
|
The app is running CPU-only, times are therefore .\n' |
|
article = """<h1 align="center">[FOUND] Unsupervised Object Localization: Observing the Background to Discover Objects</h1> |
|
""" |
|
|
|
def greet(name): |
|
return "Hello " + name + "!!" |
|
|
|
iface = gr.Interface(fn=greet, title=title, description=description, |
|
article=article, inputs="text", outputs="text") |
|
iface.launch() |
|
|
|
|
|
|