# image recognition

Published articles for image recognition.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## AI agent reliability requires recovery infrastructure for partial failures

DevFeed: [AI agent reliability requires recovery infrastructure for partial failures](<https://devfeed.tech/articles/ai-reliability-is-a-decade-old-problem-and-we-re-still-only-solving-half-of-it-35704.md>)

Original publisher: [Read original article](<https://temporal.io/blog/ai-reliability-is-a-decade-old-problem>)

Author: Melanie Warrick

Published: 2026-04-01T00:00:00Z

Content type: opinion

Language: en

Sources: [Temporal Blog](<https://devfeed.tech/sources/temporal-blog.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [reliability](<https://devfeed.tech/topics/reliability.md>), [Resilience](<https://devfeed.tech/topics/resilience.md>), [agent observability](<https://devfeed.tech/topics/agent-observability.md>), [Machine learning](<https://devfeed.tech/topics/machine-learning.md>), [coding assistant](<https://devfeed.tech/topics/coding-assistant.md>), [Neural Network](<https://devfeed.tech/topics/neural-network.md>), [image recognition](<https://devfeed.tech/topics/image-recognition.md>), [Google](<https://devfeed.tech/topics/google.md>), [recommendation systems](<https://devfeed.tech/topics/recommendation-systems.md>)

Tags: [agent](<https://devfeed.tech/tags/agent.md>), [agents](<https://devfeed.tech/tags/agents.md>), [ai](<https://devfeed.tech/tags/ai.md>), [ai-agents](<https://devfeed.tech/tags/ai-agents.md>), [coding-assistant](<https://devfeed.tech/tags/coding-assistant.md>), [google](<https://devfeed.tech/tags/google.md>), [image-recognition](<https://devfeed.tech/tags/image-recognition.md>), [neural-network](<https://devfeed.tech/tags/neural-network.md>), [recommendation-systems](<https://devfeed.tech/tags/recommendation-systems.md>), [reliability](<https://devfeed.tech/tags/reliability.md>), [resilience](<https://devfeed.tech/tags/resilience.md>), [temporal-voices](<https://devfeed.tech/tags/temporal-voices.md>)

### AI overview

AI agents can reason through complex tasks and run long workflows, but failures during execution can compound when systems cannot checkpoint progress, recover from partial failures, or resume work. The article argues that dependable AI requires durable infrastructure and resilience in addition to better models, placing current agent reliability challenges in the context of earlier AI failures.

### Source excerpt

Smart AI agents still fail mid-workflow. Learn why solving the AI reliability gap requires durable infrastructure, not just better models.

## Four ways to run ONNX models on a GPU with CUDA in Clojure

DevFeed: [Four ways to run ONNX models on a GPU with CUDA in Clojure](<https://devfeed.tech/articles/not-one-not-two-not-even-three-but-four-ways-to-run-an-onnx-ai-model-on-gpu-with-cuda-20728.md>)

Original publisher: [Read original article](<http://dragan.rocks/articles/25/Four-Ways-to-ONNX-on-GPU-in-Clojure-and-CUDA>)

Published: 2025-11-09T17:49:00Z

Content type: tutorial

Language: en

Sources: [Dragan Djuric](<https://devfeed.tech/sources/dragan-djuric.md>)

Topics: [CUDA](<https://devfeed.tech/topics/cuda.md>), [GPU](<https://devfeed.tech/topics/gpu.md>), [onnx](<https://devfeed.tech/topics/onnx.md>), [Clojure](<https://devfeed.tech/topics/clojure.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Deep neural networks](<https://devfeed.tech/topics/deep-neural-networks.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [clojure](<https://devfeed.tech/tags/clojure.md>), [code](<https://devfeed.tech/tags/code.md>), [cuda](<https://devfeed.tech/tags/cuda.md>), [deep](<https://devfeed.tech/tags/deep.md>), [diamond](<https://devfeed.tech/tags/diamond.md>), [examples](<https://devfeed.tech/tags/examples.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [image-recognition](<https://devfeed.tech/tags/image-recognition.md>), [model](<https://devfeed.tech/tags/model.md>), [neural-networks](<https://devfeed.tech/tags/neural-networks.md>), [onnx](<https://devfeed.tech/tags/onnx.md>), [tensors](<https://devfeed.tech/tags/tensors.md>)

### AI overview

A tutorial presents four ways to run ONNX models on a GPU with CUDA using Clojure libraries including Diamond ONNX RT, Deep Diamond, and ClojureCUDA. It covers GPU tensor backends and a configuration that keeps input and output tensors in main memory while executing the model on the GPU.

### Source excerpt

Two weeks ago, I announced a new Clojure ML library, Diamond ONNX RT, which integrates ONNX Runtime into Deep Diamond. In that post, we explored the classic Hello World example of Neural Networks, MNIST handwritten image recognition, step-by-step. We run that example on the CPU, from main memory. The next logical step is to execute this stuff on the GPU. You'll see that with a little help of ClojureCUDA and Deep Diamond built-in CUDA machinery, this is both easy and simple, requiring almost no effort from a curious Clojure programmer. But don't just trust me; let's fire up your REPL, and we can continue together. Here's how you can evaluate this directly in your REPL (you can use the Hello World that is provided in the ./examples sub-folder of Diamond ONNX RT as a springboard). Require Diamond's namespaces First things first, we refer functions that we're going to use. (require '[uncomplicate.commons.core :refer [with-release]] '[uncomplicate.neanderthal.core :refer [transfer! iamax native]] '[uncomplicate.diamond [tensor :refer [tensor with-diamond]] [dnn :refer [network]] [onnxrt :refer [onnx]]] '[uncomplicate.diamond.internal.dnnl.factory :refer [dnnl-factory]] '[uncomplicate.diamond.internal.cudnn.factory :refer [cudnn-factory]] '[hello-world.native :refer [input-desc input-tz mnist-onnx]]) None of the following ways to run CUDA models has preference, you use the one that best suits your needs. Way one One of the ways to run ONNX models on your GPU is to simply use Deep Diamond's cuDNN factory as the backend for your tensors. Then, the machinery recognizes what you need and proceeds doing everything on the GPU, using the right stream for tensors, Deep Diamond operations, and ONNX Runtime operations. This looks exactly the same as any other Deep Diamond example from this blog or the DLFP book. (with-diamond cudnn-factory [] (with-release [cuda-input-tz (tensor input-desc) mnist (network cuda-input-tz [mnist-onnx]) classify! (mnist cuda-input-tz)] (transfer! input

## Announcing Winners of the Square + Google Cloud AI Hackathon

DevFeed: [Announcing Winners of the Square + Google Cloud AI Hackathon](<https://devfeed.tech/articles/announcing-winners-of-the-square-google-cloud-ai-hackathon-15532.md>)

Original publisher: [Read original article](<https://developer.squareup.com/blog/announcing-winners-of-the-square-google-ai-hackathon>)

Author: Eva Sasson

Published: 2023-11-21T07:00:00Z

Content type: news

Language: en

Sources: [Square Corner Blog RSS Feed](<https://devfeed.tech/sources/square-corner-blog-rss-feed.md>)

Topics: [Hackathon](<https://devfeed.tech/topics/hackathon.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Generative AI](<https://devfeed.tech/topics/generative-ai.md>), [Google Cloud Platform (GCP)](<https://devfeed.tech/topics/google-cloud.md>), [Google](<https://devfeed.tech/topics/google.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-apis](<https://devfeed.tech/tags/ai-apis.md>), [apis](<https://devfeed.tech/tags/apis.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [demo](<https://devfeed.tech/tags/demo.md>), [generative-ai](<https://devfeed.tech/tags/generative-ai.md>), [google-cloud](<https://devfeed.tech/tags/google-cloud.md>), [hackathon](<https://devfeed.tech/tags/hackathon.md>), [image-recognition](<https://devfeed.tech/tags/image-recognition.md>)

### AI overview

Square and Google Cloud announce the winners of their AI hackathon, highlighting projects built with generative AI, image recognition, and Square and Google Cloud APIs.

### Source excerpt

Check out the winning submissions using generative AI, image recognition, and more

## KotlinDL 0.3: поддержка ONNX, Object Detection API, 20+ новых моделей в ModelHub, и много новых слоев

DevFeed: [KotlinDL 0.3: поддержка ONNX, Object Detection API, 20+ новых моделей в ModelHub, и много новых слоев](<https://devfeed.tech/articles/kotlindl-0-3-onnx-object-detection-api-20-modelhub-23937.md>)

Original publisher: [Read original article](<https://habr.com/ru/companies/JetBrains/articles/581462/>)

Author: zaleslaw (JetBrains)

Published: 2021-10-04T13:56:53Z

Content type: release

Language: ru

Sources: [JetBrains RU](<https://devfeed.tech/sources/jetbrains-ru.md>)

Topics: [onnx](<https://devfeed.tech/topics/onnx.md>), [object-detection](<https://devfeed.tech/topics/object-detection.md>), [Maven](<https://devfeed.tech/topics/maven.md>), [Maven Central](<https://devfeed.tech/topics/maven-central.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Keras](<https://devfeed.tech/topics/keras.md>), [PyTorch](<https://devfeed.tech/topics/pytorch.md>)

Tags: [big-data](<https://devfeed.tech/tags/big-data.md>), [central](<https://devfeed.tech/tags/central.md>), [deep-learning](<https://devfeed.tech/tags/deep-learning.md>), [fine-tuning](<https://devfeed.tech/tags/fine-tuning.md>), [image-recognition](<https://devfeed.tech/tags/image-recognition.md>), [keras](<https://devfeed.tech/tags/keras.md>), [kotlin](<https://devfeed.tech/tags/kotlin.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [maven-central](<https://devfeed.tech/tags/maven-central.md>), [object-detection](<https://devfeed.tech/tags/object-detection.md>), [onnx](<https://devfeed.tech/tags/onnx.md>), [onnx-runtime](<https://devfeed.tech/tags/onnx-runtime.md>), [pytorch](<https://devfeed.tech/tags/pytorch.md>), [tensorflow](<https://devfeed.tech/tags/tensorflow.md>)

### AI overview

This release article presents KotlinDL 0.3, adding ONNX model support through ONNX Runtime Java API, new ModelHub models, an experimental high-level image-recognition API, additional layers, and Maven Central availability. It also describes object-detection support and fine-tuning limitations for ONNX models.

### Source excerpt

Представляем версию 0.3 библиотеки глубокого обучения KotlinDL! Вас ждет множество новых фич: новые модели в ModelHub (включая модели для обнаружения объектов и распознавания лиц), возможность дообучать модели распознавания изображений, экспортированные из Keras и PyTorch в ONNX, экспериментальный высокоуровневый API для распознавания изображений и множество новых слоев, добавленных контрибьюторами. Также KotlinDL теперь доступен в Maven Central. В этой статье мы коснемся самых главных изменений релиза 0.3. Полный список изменений доступен по ссылке. Узнать больше о релизе

## Using a Neural Network for sending memes to my girlfriend

DevFeed: [Using a Neural Network for sending memes to my girlfriend](<https://devfeed.tech/articles/using-a-neural-network-for-sending-memes-to-my-girlfriend-40826.md>)

Original publisher: [Read original article](<https://mutto.fyi/posts/2021/05/nn-sending-memes/>)

Published: 2021-05-20T00:00:00Z

Content type: tutorial

Language: en

Sources: [Mutt0-ds Notes](<https://devfeed.tech/sources/mutt0-ds-notes.md>)

Topics: [Neural Network](<https://devfeed.tech/topics/neural-network.md>), [image recognition](<https://devfeed.tech/topics/image-recognition.md>), [ImageNet](<https://devfeed.tech/topics/imagenet.md>), [Reddit](<https://devfeed.tech/topics/reddit.md>), [API](<https://devfeed.tech/topics/api.md>), [Library](<https://devfeed.tech/topics/library.md>), [email](<https://devfeed.tech/topics/email.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [cats](<https://devfeed.tech/tags/cats.md>), [email](<https://devfeed.tech/tags/email.md>), [image-recognition](<https://devfeed.tech/tags/image-recognition.md>), [images](<https://devfeed.tech/tags/images.md>), [library](<https://devfeed.tech/tags/library.md>), [model](<https://devfeed.tech/tags/model.md>), [neural](<https://devfeed.tech/tags/neural.md>), [neural-network](<https://devfeed.tech/tags/neural-network.md>), [password](<https://devfeed.tech/tags/password.md>), [reddit](<https://devfeed.tech/tags/reddit.md>)

### AI overview

This tutorial describes a project that uses Reddit's API and the praw library to download wholesome memes, applies a ResNet50 image-recognition model to identify animal content, and emails selected memes to a recipient.

### Source excerpt

Well, my GF's tastes in memes are simple: she loves wholesome memes and, most importantly, she loves animals. That's why I created a fun...

## How we wrote chicken egg counter on a Raspberry PI

DevFeed: [How we wrote chicken egg counter on a Raspberry PI](<https://devfeed.tech/articles/how-we-wrote-chicken-egg-counter-on-a-raspberry-pi-20853.md>)

Original publisher: [Read original article](<https://ivanursul.com/counting-eggs-in-opencv>)

Author: Ivan Ursul

Published: 2018-10-03T09:23:24Z

Content type: tutorial

Language: en

Sources: [Ivan Ursul](<https://devfeed.tech/sources/ivan-ursul.md>)

Topics: [Raspberry Pi](<https://devfeed.tech/topics/raspberry-pi.md>), [OpenCV](<https://devfeed.tech/topics/opencv.md>), [webcam](<https://devfeed.tech/topics/webcam.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [Databases](<https://devfeed.tech/topics/databases.md>)

Tags: [camera](<https://devfeed.tech/tags/camera.md>), [image-recognition](<https://devfeed.tech/tags/image-recognition.md>), [java](<https://devfeed.tech/tags/java.md>), [linux](<https://devfeed.tech/tags/linux.md>), [migrations](<https://devfeed.tech/tags/migrations.md>), [mongodb](<https://devfeed.tech/tags/mongodb.md>), [network](<https://devfeed.tech/tags/network.md>), [raspberry-pi](<https://devfeed.tech/tags/raspberry-pi.md>), [stream](<https://devfeed.tech/tags/stream.md>), [webcam](<https://devfeed.tech/tags/webcam.md>)

### AI overview

A project account describing the design of a Raspberry Pi application that uses a webcam and OpenCV-based image recognition to count chicken eggs on a factory conveyor and send the count to a database. It discusses tracking eggs across camera frames and preprocessing images to identify contours and ellipses.

### Source excerpt

How it started Besides my main work on Upwork I quite often pick different projets. So I found a project, where I had to write a program for recognizing chicken eggs on a factory stream line. Customer wanted to install the application on computer with web camera, put this camera at a top of stream line and the application had to calculate eggs and send them to the DB. He also wanted to run this program on a cheap computer. The quality of the network in the factory isn't stable, so the program had to be resilient to outstand the network issues. There was enough challenges for me, so I decided to participate on this project.

## Using TensorFlow and the Serverless Framework for deep learning and image recognition

DevFeed: [Using TensorFlow and the Serverless Framework for deep learning and image recognition](<https://devfeed.tech/articles/using-tensorflow-and-the-serverless-framework-for-deep-learning-and-image-recognition-14462.md>)

Original publisher: [Read original article](<https://www.serverless.com/blog/using-tensorflow-serverless-framework-deep-learning-image-recognition>)

Author: Rustem Feyzkhanov

Published: 2018-07-24T00:00:00Z

Content type: tutorial

Language: en

Sources: [Serverless Blog](<https://devfeed.tech/sources/serverless-blog.md>)

Topics: [Tensorflow](<https://devfeed.tech/topics/tensorflow.md>), [serverless framework](<https://devfeed.tech/topics/serverless-framework.md>), [Deep learning](<https://devfeed.tech/topics/deep-learning.md>), [AWS Lambda](<https://devfeed.tech/topics/aws-lambda.md>), [Amazon API Gateway](<https://devfeed.tech/topics/amazon-api-gateway.md>), [Amazon Web Services](<https://devfeed.tech/topics/aws.md>)

Tags: [api-gateway](<https://devfeed.tech/tags/api-gateway.md>), [aws](<https://devfeed.tech/tags/aws.md>), [aws-lambda](<https://devfeed.tech/tags/aws-lambda.md>), [cloud-computing](<https://devfeed.tech/tags/cloud-computing.md>), [deep-learning](<https://devfeed.tech/tags/deep-learning.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [faas](<https://devfeed.tech/tags/faas.md>), [function-as-a-service](<https://devfeed.tech/tags/function-as-a-service.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [image-recognition](<https://devfeed.tech/tags/image-recognition.md>), [infrastructure-as-code](<https://devfeed.tech/tags/infrastructure-as-code.md>), [serverless](<https://devfeed.tech/tags/serverless.md>), [serverless-architecture](<https://devfeed.tech/tags/serverless-architecture.md>), [serverless-framework](<https://devfeed.tech/tags/serverless-framework.md>), [tensorflow](<https://devfeed.tech/tags/tensorflow.md>)

### AI overview

A tutorial on deploying a simple deep learning model for image recognition with TensorFlow, the Serverless Framework, AWS Lambda, and API Gateway.

### Source excerpt

We'll cover how to use TensorFlow, the Serverless Framework, AWS Lambda and API Gateway to deploy a simple deep learning model.

## Building an image recognition endpoint with Serverless and Google Cloud Functions.

DevFeed: [Building an image recognition endpoint with Serverless and Google Cloud Functions.](<https://devfeed.tech/articles/building-an-image-recognition-endpoint-with-serverless-and-google-cloud-functions-14206.md>)

Original publisher: [Read original article](<https://www.serverless.com/blog/google-cloud-functions-application>)

Author: Alex DeBrie

Published: 2017-10-20T00:00:00Z

Content type: tutorial

Language: en

Sources: [Serverless Blog](<https://devfeed.tech/sources/serverless-blog.md>)

Topics: [Cloud Functions](<https://devfeed.tech/topics/cloud-functions.md>), [Serverless](<https://devfeed.tech/topics/serverless.md>), [API](<https://devfeed.tech/topics/api.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [aws](<https://devfeed.tech/tags/aws.md>), [aws-lambda](<https://devfeed.tech/tags/aws-lambda.md>), [building](<https://devfeed.tech/tags/building.md>), [cloud-computing](<https://devfeed.tech/tags/cloud-computing.md>), [cloud-functions](<https://devfeed.tech/tags/cloud-functions.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [faas](<https://devfeed.tech/tags/faas.md>), [function-as-a-service](<https://devfeed.tech/tags/function-as-a-service.md>), [image-recognition](<https://devfeed.tech/tags/image-recognition.md>), [images](<https://devfeed.tech/tags/images.md>), [infrastructure-as-code](<https://devfeed.tech/tags/infrastructure-as-code.md>), [serverless](<https://devfeed.tech/tags/serverless.md>), [serverless-architecture](<https://devfeed.tech/tags/serverless-architecture.md>), [serverless-framework](<https://devfeed.tech/tags/serverless-framework.md>), [vision](<https://devfeed.tech/tags/vision.md>)

### AI overview

A tutorial on using Serverless, Google Cloud Functions, and the Cloud Vision API to build an image-classification endpoint.

### Source excerpt

Use Serverless, Google Cloud Functions, and the Cloud Vision API to build an endpoint to classify images.