Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/verify-notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ on:
paths:
- ".github/workflows/verify-notebooks.yml"
- "examples/model-deployment/"
- "text-image-search/"
- "commerce-product-ranking/notebooks"
pull_request:
branches:
- master
paths:
- ".github/workflows/verify-notebooks.yml"
- "examples/model-deployment/"
- "text-image-search/"
- "commerce-product-ranking/notebooks"

defaults:
run:
Expand All @@ -32,7 +32,14 @@ jobs:
run: |
pip install --upgrade -qqq pytest notebook nbconvert runnb pandas torch numpy scikit-learn

- name: Run Notebooks
- name: Run ONNXModelExport
working-directory: examples/model-deployment
run: |
runnb --allow-not-trusted ONNXModelExport.ipynb

- name: Run commerce-product-ranking notebooks
working-directory: commerce-product-ranking/notebooks
run: |
runnb --allow-not-trusted Train-lightgbm.ipynb
runnb --allow-not-trusted Train-xgboost.ipynb
runnb --allow-not-trusted train_neural.ipynb
2 changes: 1 addition & 1 deletion commerce-product-ranking/notebooks/Train-lightgbm.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
}
],
"source": [
"!pip3 install pandas lightgbm numpy"
"!pip3 install pandas lightgbm numpy pyarrow matplotlib"
]
},
{
Expand Down
Loading