GradioRecipe / hello_gradio.py
JungminChung's picture
Upload folder using huggingface_hub
a776606 verified
raw
history blame contribute delete
235 Bytes
import gradio as gr
def greet(name):
return name + "๋‹˜!, ๋ฐ˜๊ฐ‘์Šต๋‹ˆ๋‹ค. \nGradio์˜ ์„ธ๊ณ„๋กœ ์˜ค์‹ ๊ฒƒ์„ ํ™˜์˜ํ•ด์š”! :)"
demo = gr.Interface(
fn=greet,
inputs="text",
outputs="text"
)
demo.launch(share=True)