Upload folder using huggingface_hub
Browse files- README.md +2 -8
- hellohf.py +11 -0
README.md
CHANGED
@@ -1,12 +1,6 @@
|
|
1 |
---
|
2 |
title: HelloHF
|
3 |
-
|
4 |
-
colorFrom: pink
|
5 |
-
colorTo: pink
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 3.
|
8 |
-
app_file: app.py
|
9 |
-
pinned: false
|
10 |
---
|
11 |
-
|
12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
title: HelloHF
|
3 |
+
app_file: hellohf.py
|
|
|
|
|
4 |
sdk: gradio
|
5 |
+
sdk_version: 3.34.0
|
|
|
|
|
6 |
---
|
|
|
|
hellohf.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!"
|
5 |
+
|
6 |
+
demo = gr.Interface(
|
7 |
+
fn=greet,
|
8 |
+
inputs=gr.Textbox(lines=2, placeholder="Name Here..."),
|
9 |
+
outputs="text",
|
10 |
+
)
|
11 |
+
demo.launch()
|