Skip to content

upper limit tensorflow 2.13 (other in new PR) #34

upper limit tensorflow 2.13 (other in new PR)

upper limit tensorflow 2.13 (other in new PR) #34

Workflow file for this run

name: create-model
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-model:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
- run: pip install -r requirements.txt
# cleans output for later upload only new created tflites.
- run: rm output/*.*
- name: Execute
run: |
jupyter nbconvert --execute --to html dig-class100-s2.ipynb --output-dir output/
- uses: actions/upload-artifact@v3
if: always()
with:
name: notebook-results
path: |
output/*
- uses: actions/upload-artifact@v3
if: always()
with:
name: tflite-model
path: output/*.tflite