cyberosa
commited on
Commit
·
d599f4f
1
Parent(s):
1e246ea
trying new version for benchmark and mech to solve missing dependencies
Browse files- olas-predict-benchmark +1 -1
- start.py +5 -5
olas-predict-benchmark
CHANGED
@@ -1 +1 @@
|
|
1 |
-
Subproject commit
|
|
|
1 |
+
Subproject commit bac77acc64ed129608e6f428d40e86c0eb2cb4d1
|
start.py
CHANGED
@@ -50,6 +50,7 @@ def start():
|
|
50 |
|
51 |
commands = [
|
52 |
("git submodule init", base_dir),
|
|
|
53 |
# ("git submodule update --init --recursive", base_dir),
|
54 |
# ("git submodule update --remote --recursive", base_dir),
|
55 |
# (
|
@@ -57,13 +58,12 @@ def start():
|
|
57 |
# olas_dir,
|
58 |
# ),
|
59 |
# no updates
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
# ("git pull origin main", olas_dir),
|
64 |
-
|
65 |
# ("git pull origin main", mech_dir),
|
66 |
-
("pip install openai", base_dir),
|
67 |
("pip install -e .", os.path.join(olas_dir, "benchmark")),
|
68 |
("pip install -e .", mech_dir),
|
69 |
("pip install lxml[html_clean]", base_dir),
|
|
|
50 |
|
51 |
commands = [
|
52 |
("git submodule init", base_dir),
|
53 |
+
# no updates
|
54 |
# ("git submodule update --init --recursive", base_dir),
|
55 |
# ("git submodule update --remote --recursive", base_dir),
|
56 |
# (
|
|
|
58 |
# olas_dir,
|
59 |
# ),
|
60 |
# no updates
|
61 |
+
("git remote update", olas_dir),
|
62 |
+
("git fetch --all", olas_dir),
|
63 |
+
("git checkout bac77acc64ed129608e6f428d40e86c0eb2cb4d1", olas_dir),
|
64 |
# ("git pull origin main", olas_dir),
|
65 |
+
("git checkout 56ecf18a982c4548feac5efe787690a3ec37c835", mech_dir),
|
66 |
# ("git pull origin main", mech_dir),
|
|
|
67 |
("pip install -e .", os.path.join(olas_dir, "benchmark")),
|
68 |
("pip install -e .", mech_dir),
|
69 |
("pip install lxml[html_clean]", base_dir),
|