Spaces:
Running
Running
Upload with huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +6 -6
- __pycache__/run.cpython-36.pyc +0 -0
- app.py +33 -0
- examples/log.csv +0 -0
- screenshot.gif +3 -0
.gitattributes
CHANGED
|
@@ -29,3 +29,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 29 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 30 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 31 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 29 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 30 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 31 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
screenshot.gif filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 3.3.1
|
|
|
|
| 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 |
---
|
| 3 |
+
title: calculator
|
| 4 |
+
emoji: 🔥
|
| 5 |
+
colorFrom: indigo
|
| 6 |
+
colorTo: indigo
|
| 7 |
sdk: gradio
|
| 8 |
sdk_version: 3.3.1
|
| 9 |
+
|
| 10 |
app_file: app.py
|
| 11 |
pinned: false
|
| 12 |
---
|
|
|
|
|
|
__pycache__/run.cpython-36.pyc
ADDED
|
Binary file (777 Bytes). View file
|
|
|
app.py
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def calculator(num1, operation, num2):
|
| 4 |
+
if operation == "add":
|
| 5 |
+
return num1 + num2
|
| 6 |
+
elif operation == "subtract":
|
| 7 |
+
return num1 - num2
|
| 8 |
+
elif operation == "multiply":
|
| 9 |
+
return num1 * num2
|
| 10 |
+
elif operation == "divide":
|
| 11 |
+
if num2 == 0:
|
| 12 |
+
raise gr.Error("Cannot divide by zero!")
|
| 13 |
+
return num1 / num2
|
| 14 |
+
|
| 15 |
+
demo = gr.Interface(
|
| 16 |
+
calculator,
|
| 17 |
+
[
|
| 18 |
+
"number",
|
| 19 |
+
gr.Radio(["add", "subtract", "multiply", "divide"]),
|
| 20 |
+
"number"
|
| 21 |
+
],
|
| 22 |
+
"number",
|
| 23 |
+
examples=[
|
| 24 |
+
[5, "add", 3],
|
| 25 |
+
[4, "divide", 2],
|
| 26 |
+
[-4, "multiply", 2.5],
|
| 27 |
+
[0, "subtract", 1.2],
|
| 28 |
+
],
|
| 29 |
+
title="Toy Calculator",
|
| 30 |
+
description="Here's a sample toy calculator. Enjoy!",
|
| 31 |
+
)
|
| 32 |
+
if __name__ == "__main__":
|
| 33 |
+
demo.launch()
|
examples/log.csv
ADDED
|
File without changes
|
screenshot.gif
ADDED
|
Git LFS Details
|