MilesCranmer commited on
Commit
882b748
·
1 Parent(s): cfec30d

Add more unary operators

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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
  ),