All Projects → tinrab → Go Tensorflow Image Recognition

tinrab / Go Tensorflow Image Recognition

Licence: mit
Image Recognition API in Go using TensorFlow

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Go Tensorflow Image Recognition

Contentful Cli
The official Contentful command line interface. Use Contentful features straight from the command line!
Stars: ✭ 200 (-2.91%)
Mutual labels:  api
Streamdecksharp
A simple .NET wrapper for Stream Deck
Stars: ✭ 203 (-1.46%)
Mutual labels:  api
Openapi Directory
🌐 Wikipedia for Web APIs. Directory of REST API definitions in OpenAPI 2.0/3.x format
Stars: ✭ 2,635 (+1179.13%)
Mutual labels:  api
Route
Route - Fast, flexible routing for PHP, enabling you to quickly and easily build RESTful web applications.
Stars: ✭ 200 (-2.91%)
Mutual labels:  api
Dialetus Service
API to Informal dictionary for the idiomatic expressions that each Brazilian region It has
Stars: ✭ 202 (-1.94%)
Mutual labels:  api
Swiftdailyapi
A Swift API framework for ZhiHu's Daily News.
Stars: ✭ 204 (-0.97%)
Mutual labels:  api
Orly
🏈 Generate your own O'RLY animal book cover to troll your colleagues | 生成你自己的O'RLY动物书封面,让你的同事惊掉下巴
Stars: ✭ 199 (-3.4%)
Mutual labels:  api
Node Fb Messenger
✉️ Facebook Messenger Platform Node.js API Wrapper
Stars: ✭ 206 (+0%)
Mutual labels:  api
Lndhub
Wrapper for Lightning Network Daemon. It provides separate accounts and trust minimization for end users
Stars: ✭ 203 (-1.46%)
Mutual labels:  api
Camerafragment
A simple easy-to-integrate Camera Fragment for Android
Stars: ✭ 2,312 (+1022.33%)
Mutual labels:  api
Jikan Rest
The REST API for Jikan
Stars: ✭ 200 (-2.91%)
Mutual labels:  api
Meme api
Summon a random meme at will
Stars: ✭ 202 (-1.94%)
Mutual labels:  api
Dhufufu
Dhufufu~ API Database for ACG sites & Related Services 有关各种ACG网站的API啦神马的
Stars: ✭ 204 (-0.97%)
Mutual labels:  api
Co Cart
🛒 CoCart is a flexible, open-source solution to enabling the shopping cart via the REST API for WooCommerce.
Stars: ✭ 198 (-3.88%)
Mutual labels:  api
Verb
Organize and send HTTP requests from Emacs
Stars: ✭ 205 (-0.49%)
Mutual labels:  api
Binance
A .NET Standard Binance API library.
Stars: ✭ 199 (-3.4%)
Mutual labels:  api
Fastapi Gino Arq Uvicorn
High-performance Async REST API, in Python. FastAPI + GINO + Arq + Uvicorn (w/ Redis and PostgreSQL).
Stars: ✭ 204 (-0.97%)
Mutual labels:  api
Vkapiphp
[Abandoned] Library for work with API Vk.com
Stars: ✭ 206 (+0%)
Mutual labels:  api
Amocrm Php
✨ Удобный и быстрый клиент для работы с API amoCRM
Stars: ✭ 206 (+0%)
Mutual labels:  api
Api Development Tools
📚 A collection of useful resources for building RESTful HTTP+JSON APIs.
Stars: ✭ 2,519 (+1122.82%)
Mutual labels:  api

Image Recognition API in Go using TensorFlow

This is the underlying code for article Build an Image Recognition API with Go and TensorFlow.

Running the service

Build the image.

$ docker build -t localhost/recognition .

Run service in a container.

$ docker run -p 8080:8080 --rm localhost/recognition

Call the service.

$ curl localhost:8080/recognize -F '[email protected]/cat.jpg'
{
  "filename": "cat.jpg",
  "labels": [
    { "label": "tabby", "probability": 0.45087516 },
    { "label": "Egyptian cat", "probability": 0.26096493 },
    { "label": "tiger cat", "probability": 0.23208225 },
    { "label": "lynx", "probability": 0.050698064 },
    { "label": "grey fox", "probability": 0.0019019963 }
  ]
}
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].