Spaces:
Running
Running
Commit
Β·
cad848a
1
Parent(s):
8357dbc
Update app.py
Browse files
app.py
CHANGED
@@ -40,7 +40,8 @@ if st.button("π Search for Tensor Ops!"):
|
|
40 |
with st.spinner("Searching for solution..."):
|
41 |
results = colab_interface.run_value_search_from_colab(i, o, c, description, settings)
|
42 |
num_solutions = len(results.solutions)
|
43 |
-
|
|
|
44 |
for solution in results.solutions:
|
45 |
st.code(solution.expression, language='python')
|
46 |
st.write(dir(results))
|
|
|
40 |
with st.spinner("Searching for solution..."):
|
41 |
results = colab_interface.run_value_search_from_colab(i, o, c, description, settings)
|
42 |
num_solutions = len(results.solutions)
|
43 |
+
solution_solutions = " solutions" if num_solutions > 1 else " solution"
|
44 |
+
st.write(f"Found {num_solutions}{solution_solutions} in {results.total_time} seconds")
|
45 |
for solution in results.solutions:
|
46 |
st.code(solution.expression, language='python')
|
47 |
st.write(dir(results))
|