Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add inference notebook to the workflow #2

Merged
merged 11 commits into from
Nov 1, 2022
8 changes: 8 additions & 0 deletions .github/workflows/install-from-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,11 @@ jobs:
author_name: update notebook with pipeline
message: "Update Notebook 3"
add: "03_notebook_executed.ipynb"
- name: Model Inference notebook
run: jupyter nbconvert --to notebook --execute 04_model_inference.ipynb --TemplateExporter.exclude_input=True --ExecutePreprocessor.kernel_name='python3' --output 04_notebook_executed
- name: commit updated notebook 4
uses: EndBug/add-and-commit@v7
with:
author_name: update notebook with pipeline
message: "Update Notebook 4"
add: "04_notebook_executed.ipynb"
8 changes: 8 additions & 0 deletions .github/workflows/run-in-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,11 @@ jobs:
author_name: update notebook with pipeline
message: "Update Notebook 3"
add: "03_notebook_executed.ipynb"
- name: Model Inference notebook
run: jupyter nbconvert --to notebook --execute 04_model_inference.ipynb --TemplateExporter.exclude_input=True --ExecutePreprocessor.kernel_name='python3' --output 04_notebook_executed
- name: commit updated notebook 4
uses: EndBug/add-and-commit@v7
with:
author_name: update notebook with pipeline
message: "Update Notebook 4"
add: "04_notebook_executed.ipynb"
Loading