All Projects → aljabr0 → From Keras To C

aljabr0 / From Keras To C

Licence: apache-2.0
A practical example of Tensorflow C API based deployment starting from a model trained with Tensorflow + Keras

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to From Keras To C

Daily Deeplearning
🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial
Stars: ✭ 381 (+436.62%)
Mutual labels:  tensorflow-examples
My Tensorflow Tutorials
This repo contains all of my TensorFlow tutorials
Stars: ✭ 795 (+1019.72%)
Mutual labels:  tensorflow-examples
Letslearnai.github.io
Lets Learn AI
Stars: ✭ 33 (-53.52%)
Mutual labels:  tensorflow-examples
Docs
TensorFlow documentation
Stars: ✭ 4,999 (+6940.85%)
Mutual labels:  tensorflow-examples
Machine Learning
머신러닝 입문자 혹은 스터디를 준비하시는 분들에게 도움이 되고자 만든 repository입니다. (This repository is intented for helping whom are interested in machine learning study)
Stars: ✭ 705 (+892.96%)
Mutual labels:  tensorflow-examples
Tensorflow object detection tflite
This is a repo for training and implementing the mobilenet-ssd v2 to tflite with c++ on x86 and arm64
Stars: ✭ 24 (-66.2%)
Mutual labels:  tensorflow-examples
Tensorflow chessbot
Predict chessboard FEN layouts from images using TensorFlow
Stars: ✭ 362 (+409.86%)
Mutual labels:  tensorflow-examples
Math object detection
An image recognition/object detection model that detects handwritten digits and simple math operators. The output of the predicted objects (numbers & math operators) is then evaluated and solved.
Stars: ✭ 52 (-26.76%)
Mutual labels:  tensorflow-examples
Tensorflow 2.x Tutorials
TensorFlow 2.x version's Tutorials and Examples, including CNN, RNN, GAN, Auto-Encoders, FasterRCNN, GPT, BERT examples, etc. TF 2.0版入门实例代码,实战教程。
Stars: ✭ 6,088 (+8474.65%)
Mutual labels:  tensorflow-examples
Tensorflowservingcsharpclient
Implement Tensor Flow Serving C# client example with gRPC. MNIST prediction console application and web paint ASP.NET Core 2.0 and ReactJS application.
Stars: ✭ 31 (-56.34%)
Mutual labels:  tensorflow-examples
Age Gender Estimate Tf
Face age and gender estimate using TensorFlow
Stars: ✭ 510 (+618.31%)
Mutual labels:  tensorflow-examples
Android Tensorflow Lite Example
Android TensorFlow Lite Machine Learning Example
Stars: ✭ 681 (+859.15%)
Mutual labels:  tensorflow-examples
Tensorflow Find Object
📸 A simple application to demonstrate TensorflowJS using mobile net model to predict objects via camera API.
Stars: ✭ 12 (-83.1%)
Mutual labels:  tensorflow-examples
Tensorflow Cmake
TensorFlow examples in C, C++, Go and Python without bazel but with cmake and FindTensorFlow.cmake
Stars: ✭ 418 (+488.73%)
Mutual labels:  tensorflow-examples
Tensorflow Sentiment Analysis On Amazon Reviews Data
Implementing different RNN models (LSTM,GRU) & Convolution models (Conv1D, Conv2D) on a subset of Amazon Reviews data with TensorFlow on Python 3. A sentiment analysis project.
Stars: ✭ 34 (-52.11%)
Mutual labels:  tensorflow-examples
Dr.sure
🏫DeepLearning学习笔记以及Tensorflow、Pytorch的使用心得笔记。Dr. Sure会不定时往项目中添加他看到的最新的技术,欢迎批评指正。
Stars: ✭ 365 (+414.08%)
Mutual labels:  tensorflow-examples
Machine Learning Collection
A resource for learning about ML, DL, PyTorch and TensorFlow. Feedback always appreciated :)
Stars: ✭ 883 (+1143.66%)
Mutual labels:  tensorflow-examples
Easypr Python
EasyPR-python
Stars: ✭ 55 (-22.54%)
Mutual labels:  tensorflow-examples
Nsfw Filter
🚀 A Google Chrome / Firefox extension that blocks NSFW images from the web pages that you load using TensorFlow JS.
Stars: ✭ 984 (+1285.92%)
Mutual labels:  tensorflow-examples
Vgg tensorflow
VGGNet implemented by tensorflow
Stars: ✭ 27 (-61.97%)
Mutual labels:  tensorflow-examples

From Keras to C

This small demo project is about deploying deep learning models on embedded platforms. The techniques exposed here have been particularly useful to me in the deployment of deep learning models in industrial applications.

We start with a simple example model, trained with Tensorflow 1.x + Keras. In the end, we'll freeze the model and export a GraphDef that can be loaded and executed through the Tensorflow C API (without Python). The training and export are coded into the file train_and_export.py whereas the inference is coded into the file model_run.cpp. The Tensorflow binaries must be loaded into the folder lib, they can be downloaded from the following link.

Note Once the API for Tensorflow 2.0 will be stable the project will be updated to the newest version of the framework.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].