https://github.com/amamory/google-colab-repos
My repo of Jupyter Notebooks
https://github.com/amamory/google-colab-repos
colab-notebook jupyter-notebook keras-tutorials onnx
Last synced: 3 months ago
JSON representation
My repo of Jupyter Notebooks
- Host: GitHub
- URL: https://github.com/amamory/google-colab-repos
- Owner: amamory
- License: gpl-3.0
- Created: 2020-05-18T14:22:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-29T14:53:33.000Z (about 5 years ago)
- Last Synced: 2025-01-22T07:33:23.594Z (5 months ago)
- Topics: colab-notebook, jupyter-notebook, keras-tutorials, onnx
- Language: Jupyter Notebook
- Size: 19.1 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My repo of Jupyter Notebooks from Google Colab
- [keras_2_onnx.ipynb](./keras_2_onnx.ipynb): this example converts a keras' efficient model into onnx format;
- [TensorFlow_Keras_EfficientNet_onnx.ipynb](./TensorFlow_Keras_EfficientNet_onnx.ipynb): this is the keras2onnx example with few adaptations. It loads an existing HDF5 file, does some inference, saves the ONNX, loads the onnx files, and does the inference on the same previous image;
- [MNIST_onnx_runtime.ipynb](./MNIST_onnx_runtime.ipynb): learning how to perform ONNX inference with MNIST dataset and a hand-crafted CNN based on lenet;
- [MNIST_keras2onnx.ipynb](./MNIST_keras2onnx.ipynb): a full process of creating the CNN model for MNIST in keras, its evaluation, a conversion to ONNX. Then the ONNX file is loaded to compare it's prediction against keras;
- [TensorFlow_Keras_MNIST.ipynb](./TensorFlow_Keras_MNIST.ipynb): this is an example notebook contributed to [keras2onnx](https://github.com/onnx/keras-onnx) conversion tool;