Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Image Recognition API in Go using TensorFlow
| Date | Stars |
|---|---|
| 2026-07-24 | 250 |
| 2026-07-25 | 250 |
| 2026-07-28 | 250 |
| 2026-07-30 | 250 |
| 2026-08-06 | 250 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# Image Recognition API in Go using TensorFlow
<p align="center">
<img src="./cover.jpg"/>
</p>
This is the underlying code for article [Build an Image Recognition API with Go and TensorFlow](https://outcrawl.com/image-recognition-api-go-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 'image=@./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 }
]
}
```
Excerpt of 848 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:b8d884c29dfc69f7, topic:tensorflow