Spaces:
Sleeping
Sleeping
Commit
·
882b748
1
Parent(s):
cfec30d
Add more unary operators
Browse files
app.py
CHANGED
@@ -97,7 +97,8 @@ def main():
|
|
97 |
default=["+", "-", "*", "/"],
|
98 |
),
|
99 |
gr.inputs.CheckboxGroup(
|
100 |
-
choices=["sin", "cos", "exp", "log"
|
|
|
101 |
label="Unary Operators",
|
102 |
default=[],
|
103 |
),
|
|
|
97 |
default=["+", "-", "*", "/"],
|
98 |
),
|
99 |
gr.inputs.CheckboxGroup(
|
100 |
+
choices=["sin", "cos", "exp", "log", "square", "cube",
|
101 |
+
"sqrt", "abs", "tan"],
|
102 |
label="Unary Operators",
|
103 |
default=[],
|
104 |
),
|