Spaces:
Runtime error
Runtime error
updates
Browse files- olas-predict-benchmark +1 -1
- start.py +3 -12
olas-predict-benchmark
CHANGED
@@ -1 +1 @@
|
|
1 |
-
Subproject commit
|
|
|
1 |
+
Subproject commit b132e2c4b218a9035b9a62fb5a4254e9f21dd9e6
|
start.py
CHANGED
@@ -56,19 +56,10 @@ def start():
|
|
56 |
for command, cwd in commands:
|
57 |
run_command(command, cwd=cwd)
|
58 |
|
59 |
-
# check if mech exist as a library
|
60 |
-
try:
|
61 |
-
import mech
|
62 |
-
except ImportError:
|
63 |
-
print("Mech is not installed as a library. Please install it.")
|
64 |
-
return
|
65 |
|
66 |
-
#
|
67 |
-
|
68 |
-
|
69 |
-
except ImportError:
|
70 |
-
print("Benchmark is not installed as a library. Please install it.")
|
71 |
-
return
|
72 |
|
73 |
# Download the dataset
|
74 |
download_dataset()
|
|
|
56 |
for command, cwd in commands:
|
57 |
run_command(command, cwd=cwd)
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
+
# print olas_dir/benchmark/pyproject.toml
|
61 |
+
with open(os.path.join(olas_dir, "benchmark", "pyproject.toml"), "r") as f:
|
62 |
+
print(f.read())
|
|
|
|
|
|
|
63 |
|
64 |
# Download the dataset
|
65 |
download_dataset()
|