polejowska's picture
Create app.py
9001161
raw
history blame
401 Bytes
import gradio as gr
description = "Satellite images classification"
title = "Upload your own image"
examples = [["Adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
interface = gr.Interface.load("huggingface/osanseviero/BigGAN-deep-128",
description=description,
title = title,
examples=[["american robin"]]
)
interface.launch()