Skip to content

revert to tensorflow 2.12 #41

revert to tensorflow 2.12

revert to tensorflow 2.12 #41

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@v5
with:
python-version: '3.11'
- 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