Spaces:
Running
Running
Upload with huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +6 -7
- __pycache__/run.cpython-36.pyc +0 -0
- examples/log.csv +0 -0
- requirements.txt +1 -0
- run.py +33 -0
- screenshot.gif +3 -0
.gitattributes
CHANGED
@@ -31,3 +31,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
31 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
32 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
33 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
31 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
32 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
33 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
34 |
+
screenshot.gif filter=lfs diff=lfs merge=lfs -text
|
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: calculator_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 (777 Bytes). View file
|
|
examples/log.csv
ADDED
File without changes
|
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,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(server_port=40000)
|
screenshot.gif
ADDED
![]() |
Git LFS Details
|