[go golang] A Quick / Short Example of using TFLite with Golang and a GANs Model

A Quick / Short Example of using TFLite with Golang and a GANs Model

Why and Background

ML with Tensorflow is almost like a programming super power ... no actually it is a programming super power. There are plenty of tutorials, books, courses and videos on building models, transfer learning, etc. All the awesome Colab Notebooks make ML pretty accessible but it seems there fewer resources around deploying models. If you stick to the well worn path, it's well documented and easy. I think Tensorflow Serving is pretty awesome. There is always a bit of figuring out how to setup your data correctly once you have left behind the comforts of Python and the associated tooling. Additionally, what if you want to run your model in odd places that aren't neccessairly suited for a Docker image w/ Tensorflow Serving or on your mobile device w/ Tensorflow Lite? This is what this example attempts to tackle. Using Tensorflow Lite and Golang to be able to deploy simple ML models.

The code and example is completly stand alone but I'll give plenty of background on how to I built the pieces. Also if you really want to use Golang and TFlite, I would recommend you check out https://github.com/mattn/go-tflite It's an actual go pkg that has more bells and whistles that what I am doing here.

Setup

Source Code

GAN Model

First we need a GAN model, also if you aren't familar with GANs the short tutorial on the Tensorflow site, is a decent intro. And there are plenty of prebuilt GANs models out in the wild. There is a simple one of TF Hub that is pretty good to explore that has an accompanying tutorial as well.

In the below example we are going to use an simple model that I built that was trained off the Met Faces dataset. The model isn't great and was more of an exploration - so I won't show how it was built to avoid confusion you and embarassing myself. But it has the same inputs/output as the ProGAN model from TF Hub listed in the above example. So feel free to swap in that model for the one in the code repo, it should just work once you have converted it to TF Lite format. If you are converting, it's pretty straight forward with the new Tensorflow 2.X releases. I recommend not using the conversion command line tool but instead do it with the Python libs inside tensorflow.lite.

TF Lite

Since the repo includes all the parts needed - header files, and pre built libs for linux, macos, and raspberry pi there is no need to install anything but I will walk you through a couple pieces. Tensorflow has lots of ways to install and interact with it. The easiest are probably using a Google Colab or Docker install. Next easiest is pip install if you are a major platform. If using Raspberry Pi it takes a a bit of tweaking and it's easiest to find a community prebuilt whls. The general suggestion is you create a virtual env for pip installs before taking the pip install tensorflow route. There is no shortage of posts, links, videos to lead you through the process.

But what about TFLite - how do we get the libraries and header files? If you are on mobile it's as simple as including the pod or using a newer version of Android Studio. Using TFLite outside of those mobile contexts is simple but not super well documented. You will probably need to build TFLite for your platform of choice. I have already done this and included the libs and header files in the repo so the following is just a couple of quick pointers on how I did it.

  1. Pull down the Tensorflow src from Github
  2. Make sure you have a working C compiler, JDK, CMake installed.

    You could try and build using TF preferred build system of Bazel but that really just made everything more difficult when I tried it. CMake was very straight forwardi by comparision.

  3. Create a build diirectory outside of the src tree, cmake $srctree/tensorflow/tensorflow/lite/c/c and the make.

    Depending on your machine speed, you might have a few mintues to make yourself a cup of tea. Also note when building no Raspberry Pi, you may need patch the cmake build code to make sure it links against libatomic - hopefully this is fixed soon.

 

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

Golang

If you aren't familar with Golang, then I am not sure why you have read this far. Anyway, it's fair to say, that even with all of it's short comings, I like it. We are going to use cgo to link into the TFLite libs we just built to serve the GANs model. The code follows the standard steps of using TFLite

  1. Load model
  2. Create the interperter options
  3. Create the interperter with the model and the options
  4. Allocate the tensors
  5. Copy data into the input tensors
  6. Invoke the interperter
  7. Copy data out of the output tensors

Knowing the steps ahead of time makes all of this pretty ease to follow. The golang code is pretty standard and boring - which is the way I like it. There are few specific things for cgo that setup all the CFLAGS and LDFLAGS with platform modifiers at the top and there is a break down of copying to and from tensors. There is a platform ARM vs amd64 differences of unsigned long vs usigned int so when building you need to specify which types.go you want to use.

 

Build

To keep things simple, no external go packagegs are used and I am using go mods. Sorry no fancy build scripts. Just go build example.go types.go should do it for Linux/MacOSX (for you ARM M1 Macs you are on your own for now.) If you are compiling on Raspberry PI then go build exanple.go types_arm.go is all you need.

Run

To serve a new GAN Face LD_LIBRARY_PATH=platform ./example -m models/model.tflite This is setup an http listener on 8080 that will deliver a 128x128 image. Hit reload and see variations.

Done

Hope this was readable and helpful - let me know if you have questions derek@codecubed.com

Sat Mar 27 14:49:52 EDT 2021

 

[출처] https://derekg.github.io/tflite.html

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED