-
Notifications
You must be signed in to change notification settings - Fork 3
52 lines (43 loc) · 1.68 KB
/
bm_cml.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: train and evaluate bimodal model
on: [push]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- uses: actions/setup-node@v1
with:
node-version: '16'
- uses: iterative/setup-cml@v1
- name: Install TeXlive
run: sudo apt-get update && sudo apt-get install texlive texlive-science texlive-latex-extra cm-super dvipng
- name: cml
env:
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install '.[train]'
python cml/bimodal.py
echo '# Bimodal Model' >> report.md
echo '## Learning Curve' >> report.md
echo '![](./artifacts/bimodal/bm_data.png)' >> report.md
echo '## Learning Curve' >> report.md
echo '![](./artifacts/bimodal/bm_hist.png)' >> report.md
echo '## Metrics' >> report.md
echo '```yaml' >> report.md
cat metrics/bimodal/bm_metrics.yaml >> report.md
echo '```' >> report.md
echo '## Results' >> report.md
echo '![](./artifacts/bimodal/bm_dists.png)' >> report.md
echo '## Parameter Vector for x = 1' >> report.md
cat artifacts/bimodal/bm_pvector.txt >> report.md
echo '## Flow' >> report.md
echo '![](./artifacts/bimodal/bm_flow.png)' >> report.md
echo '![](./artifacts/bimodal/bm_bijectors.png)' >> report.md
echo '![](./artifacts/bimodal/bm_x_trafo.png)' >> report.md
echo '## Bijector' >> report.md
echo '![](./artifacts/bimodal/bm_bijector.png)' >> report.md
echo '![](./artifacts/bimodal/bm_ildj.png)' >> report.md
cml comment create report.md