arshy commited on
Commit
7cc38d8
·
1 Parent(s): 7701b23
Files changed (2) hide show
  1. olas-predict-benchmark +1 -1
  2. start.py +3 -12
olas-predict-benchmark CHANGED
@@ -1 +1 @@
1
- Subproject commit 471bbbff9de33171505624af892bec3c8a730f30
 
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
- # check if benchmark exist as a library
67
- try:
68
- import benchmark
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()