Spaces:
Sleeping
Sleeping
Upload with huggingface_hub
Browse files- README.md +6 -7
- __pycache__/run.cpython-36.pyc +0 -0
- requirements.txt +1 -0
- run.py +15 -0
- screenshot.gif +0 -0
README.md
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 3.6
|
| 8 |
-
app_file:
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
-
|
| 12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
+
|
| 2 |
---
|
| 3 |
+
title: hello_world_3_main
|
| 4 |
+
emoji: 🔥
|
| 5 |
+
colorFrom: indigo
|
| 6 |
+
colorTo: indigo
|
| 7 |
sdk: gradio
|
| 8 |
sdk_version: 3.6
|
| 9 |
+
app_file: run.py
|
| 10 |
pinned: false
|
| 11 |
---
|
|
|
|
|
|
__pycache__/run.cpython-36.pyc
ADDED
|
Binary file (643 Bytes). View file
|
|
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
https://gradio-main-build.s3.amazonaws.com/c3bec6153737855510542e8154391f328ac72606/gradio-3.6-py3-none-any.whl
|
run.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def greet(name, is_morning, temperature):
|
| 4 |
+
salutation = "Good morning" if is_morning else "Good evening"
|
| 5 |
+
greeting = f"{salutation} {name}. It is {temperature} degrees today"
|
| 6 |
+
celsius = (temperature - 32) * 5 / 9
|
| 7 |
+
return greeting, round(celsius, 2)
|
| 8 |
+
|
| 9 |
+
demo = gr.Interface(
|
| 10 |
+
fn=greet,
|
| 11 |
+
inputs=["text", "checkbox", gr.Slider(0, 100)],
|
| 12 |
+
outputs=["text", "number"],
|
| 13 |
+
)
|
| 14 |
+
if __name__ == "__main__":
|
| 15 |
+
demo.launch()
|
screenshot.gif
ADDED
|