Spaces:
Running
Running
Commit
Β·
8357dbc
1
Parent(s):
6238472
Update app.py
Browse files
app.py
CHANGED
@@ -38,12 +38,9 @@ if st.button("π Search for Tensor Ops!"):
|
|
38 |
'require_one_input_used': not settings_kwargs["require_all_inputs_used"],
|
39 |
})
|
40 |
with st.spinner("Searching for solution..."):
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
st.code(stdout, language='bash')
|
45 |
-
st.write(dir(results.benchmark))
|
46 |
for solution in results.solutions:
|
47 |
st.code(solution.expression, language='python')
|
48 |
-
st.write(results
|
49 |
-
st.code(results.statistics)
|
|
|
38 |
'require_one_input_used': not settings_kwargs["require_all_inputs_used"],
|
39 |
})
|
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 |
+
st.write(f"Found {num_solutions} {"solutions" if num_solutions > 1 else "solution"} in {results.total_time} seconds")
|
|
|
|
|
44 |
for solution in results.solutions:
|
45 |
st.code(solution.expression, language='python')
|
46 |
+
st.write(dir(results))
|
|