Skip to content

Commit a35d11c

Browse files
committed
fixed directory path and added signals and crypto example model notebooks
1 parent 4d3899d commit a35d11c

File tree

1 file changed

+30
-12
lines changed

1 file changed

+30
-12
lines changed

.github/workflows/build-models.yml

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
# - hello_numerai.ipynb
99
# - feature_neutralization.ipynb
1010
# - target_ensemble.ipynb
11+
# - signals/example_model.ipynb
12+
# - crypto/example_model.ipynb
1113
branches:
1214
- master
1315

@@ -31,40 +33,56 @@ jobs:
3133
- name: build-example-model
3234
run: |
3335
jupyter nbconvert \
34-
--execute example_model.ipynb \
36+
--execute numerai/example_model.ipynb \
3537
--ExecutePreprocessor.timeout=-1 \
3638
--to html
3739
- name: build-hello-numerai
3840
run: |
3941
jupyter nbconvert \
40-
--execute hello_numerai.ipynb \
42+
--execute numerai/hello_numerai.ipynb \
4143
--ExecutePreprocessor.timeout=-1 \
4244
--to html
4345
- name: build-feature-neutralization
4446
run: |
4547
jupyter nbconvert \
46-
--execute feature_neutralization.ipynb \
48+
--execute numerai/feature_neutralization.ipynb \
4749
--ExecutePreprocessor.timeout=-1 \
4850
--to html
4951
- name: build-target-ensemble
5052
run: |
5153
jupyter nbconvert \
52-
--execute target_ensemble.ipynb \
54+
--execute numerai/target_ensemble.ipynb \
55+
--ExecutePreprocessor.timeout=-1 \
56+
--to html
57+
- name: build-signals-example-model
58+
run: |
59+
jupyter nbconvert \
60+
--execute signals/example_model.ipynb \
61+
--ExecutePreprocessor.timeout=-1 \
62+
--to html
63+
- name: build-crypto-example-model
64+
run: |
65+
jupyter nbconvert \
66+
--execute crypto/example_model.ipynb \
5367
--ExecutePreprocessor.timeout=-1 \
5468
--to html
5569
- name: delete-html
5670
run: |
57-
rm example_model.html
58-
rm hello_numerai.html
59-
rm feature_neutralization.html
60-
rm target_ensemble.html
71+
rm numerai/example_model.html
72+
rm numerai/hello_numerai.html
73+
rm numerai/feature_neutralization.html
74+
rm numerai/target_ensemble.html
75+
rm signals/example_model.html
76+
rm crypto/example_model.html
6177
- name: move-pickles-to-cached-pickles-dir
6278
run: |
6379
mkdir -p cached-pickles/
64-
mv -f example_model.pkl cached-pickles/
65-
mv -f hello_numerai.pkl cached-pickles/
66-
mv -f feature_neutralization.pkl cached-pickles/
67-
mv -f target_ensemble.pkl cached-pickles/
80+
mv -f numerai/example_model.pkl cached-pickles/
81+
mv -f numerai/hello_numerai.pkl cached-pickles/
82+
mv -f numerai/feature_neutralization.pkl cached-pickles/
83+
mv -f numerai/target_ensemble.pkl cached-pickles/
84+
mv -f signals/example_model.pkl cached-pickles/signals_example_model.pkl
85+
mv -f crypto/example_model.pkl cached-pickles/crypto_example_model.pkl
6886
- name: commit-to-master
6987
uses: EndBug/add-and-commit@v9
7088
with:

0 commit comments

Comments
 (0)