Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
README.md
CHANGED
@@ -1,12 +1,6 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
|
4 |
-
colorFrom: blue
|
5 |
-
colorTo: red
|
6 |
sdk: gradio
|
7 |
sdk_version: 3.45.2
|
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: temperature_greeter
|
3 |
+
app_file: demp.py
|
|
|
|
|
4 |
sdk: gradio
|
5 |
sdk_version: 3.45.2
|
|
|
|
|
6 |
---
|
|
|
|
demp.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
demo.launch()
|