File size: 1,768 Bytes
53403c1
626683a
564b4e2
15aba26
53403c1
 
 
 
 
 
 
 
 
 
 
 
626683a
 
15aba26
 
 
 
 
 
 
 
 
 
 
 
 
 
53403c1
 
 
 
 
15aba26
 
53403c1
 
 
 
 
 
 
15aba26
 
 
 
 
 
 
 
53403c1
 
50a28de
53403c1
 
564b4e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import gradio as gr
import math

def calculator(num1, operation, num2=None):
    if operation == "add":
        return num1 + num2
    elif operation == "subtract":
        return num1 - num2
    elif operation == "multiply":
        return num1 * num2
    elif operation == "divide":
        return num1 / num2
    elif operation == "square":
        return num1 * num1
    elif operation == "cube":
        return num1 * num1 * num1
    elif operation == "exponential":
        return math.pow(num1, num2)
    elif operation == "sin":
        return math.sin(num1)
    elif operation == "cos":
        return math.cos(num1)
    elif operation == "tan":
        return math.tan(num1)
    elif operation == "sqrt":
        return math.sqrt(num1)
    elif operation == "sinh":
        return math.sinh(num1)
    elif operation == "cosh":
        return math.cosh(num1)
    elif operation == "tanh":
        return math.tanh(num1)

demo = gr.Interface(
    fn=calculator,
    inputs=[
            gr.Number(value=4), 
            gr.Radio(["add", "subtract", "multiply", "divide", "square", "cube", "exponential", "sin", "cos", "tan", "sqrt", "sinh", "cosh", "tanh"]), 
            gr.Number(value=2, label="Second Number (optional)", optional=True)
            ],
    outputs="number",
    examples=[
        [5, "add", 3],
        [4, "divide", 2],
        [-4, "multiply", 2.5],
        [0, "subtract", 1.2],
        [2, "exponential", 3],
        [1.5, "sin"],
        [2.3, "cos"],
        [0.8, "tan"],
        [9, "sqrt"],
        [1.2, "sinh"],
        [2.1, "cosh"],
        [0.7, "tanh"]
    ],
    title="Scientific Calculator",
    description="Here's a sample scientific calculator. Enjoy! Code by: Freddy Aboulton   Improved by: Usually3"
)

demo.launch()