All Projects → mattn → mruby-tflite

mattn / mruby-tflite

Licence: other
MRuby binding for TensorFlow Lite

Programming Languages

c
50402 projects - #5 most used programming language
ruby
36898 projects - #4 most used programming language
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to mruby-tflite

glDelegateBench
quick and dirty inference time benchmark for TFLite gles delegate
Stars: ✭ 17 (+21.43%)
Mutual labels:  tensorflow-lite
Face-Recognition-Flutter
Realtime face recognition with Flutter
Stars: ✭ 111 (+692.86%)
Mutual labels:  tensorflow-lite
play with tflite
Sample projects for TensorFlow Lite in C++ with delegates such as GPU, EdgeTPU, XNNPACK, NNAPI
Stars: ✭ 222 (+1485.71%)
Mutual labels:  tensorflow-lite
anyolite
Embedded mruby/Ruby for Crystal
Stars: ✭ 120 (+757.14%)
Mutual labels:  mruby
mruby-esp32
mruby application template for ESP32
Stars: ✭ 81 (+478.57%)
Mutual labels:  mruby
CRNN.tf2
Convolutional Recurrent Neural Network(CRNN) for End-to-End Text Recognition - TensorFlow 2
Stars: ✭ 131 (+835.71%)
Mutual labels:  tensorflow-lite
nntrainer
NNtrainer is Software Framework for Training Neural Network Models on Devices.
Stars: ✭ 92 (+557.14%)
Mutual labels:  tensorflow-lite
MobileNetV2-PoseEstimation
Tensorflow based Fast Pose estimation. OpenVINO, Tensorflow Lite, NCS, NCS2 + Python.
Stars: ✭ 99 (+607.14%)
Mutual labels:  tensorflow-lite
TensorFlow Lite SSD RPi 64-bits
TensorFlow Lite SSD on bare Raspberry Pi 4 with 64-bit OS at 24 FPS
Stars: ✭ 25 (+78.57%)
Mutual labels:  tensorflow-lite
Keras-Android-XOR
How to run a Keras model on Android using Tensorflow API.
Stars: ✭ 32 (+128.57%)
Mutual labels:  tensorflow-lite
rpi-urban-mobility-tracker
The easiest way to count pedestrians, cyclists, and vehicles on edge computing devices or live video feeds.
Stars: ✭ 75 (+435.71%)
Mutual labels:  tensorflow-lite
glDelegateBenchmark
quick and dirty benchmark for TFLite gles delegate on iOS
Stars: ✭ 13 (-7.14%)
Mutual labels:  tensorflow-lite
coral-pi-rest-server
Perform inferencing of tensorflow-lite models on an RPi with acceleration from Coral USB stick
Stars: ✭ 49 (+250%)
Mutual labels:  tensorflow-lite
meta-st-stm32mpu-ai
This repository contains the OpenEmbedded meta layer to install AI frameworks and tools for the STM32MP1
Stars: ✭ 32 (+128.57%)
Mutual labels:  tensorflow-lite
Selfie2Anime-with-TFLite
How to create Selfie2Anime from tflite model to Android.
Stars: ✭ 70 (+400%)
Mutual labels:  tensorflow-lite
android tflite
GPU Accelerated TensorFlow Lite applications on Android NDK. Higher accuracy face detection, Age and gender estimation, Human pose estimation, Artistic style transfer
Stars: ✭ 105 (+650%)
Mutual labels:  tensorflow-lite
tensorflow-vast
TensorFlow binding library for VA Smalltalk
Stars: ✭ 13 (-7.14%)
Mutual labels:  tensorflow-lite
TFLite-Mobile-Generic-Object-Localizer
Python TFLite scripts for detecting objects of any class in an image without knowing their label.
Stars: ✭ 42 (+200%)
Mutual labels:  tensorflow-lite
NARUTO-HandSignDetection
物体検出を用いてNARUTOの印(子~亥、壬、合掌)を検出するモデルとサンプルプログラムです。このリポジトリでは、YOLOXを使用しています(This is a model and sample program that detects NARUTO's hand sign using object detection. This repository use YOLOX.)
Stars: ✭ 186 (+1228.57%)
Mutual labels:  tensorflow-lite
E2E-tfKeras-TFLite-Android
End to end training MNIST image classifier with tf.Keras, convert to TFLite and deploy to Android
Stars: ✭ 17 (+21.43%)
Mutual labels:  tensorflow-lite

mruby-tflite

interface to TensorFlow Lite for mruby

Usage

model = TfLite::Model.from_file "xor_model.tflite"
interpreter = TfLite::Interpreter.new(model)
interpreter.allocate_tensors
input = interpreter.input_tensor(0)
output = interpreter.output_tensor(0)
[[0,0], [1,0], [0,1], [1,1]].each do |x|
  input.data = x
  interpreter.invoke
  puts output.data[0].round
end

Requirements

  • TensorFlow Lite

License

MIT

Author

Yasuhiro Matsumoto (a.k.a. mattn)

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].