# multimodal

Published articles for multimodal.

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

## NASA-IBM Lunar Foundation Model Goes Open Source With a 2M-Tile Dataset and 22% Lower Ice-Mapping Error

DevFeed: [NASA-IBM Lunar Foundation Model Goes Open Source With a 2M-Tile Dataset and 22% Lower Ice-Mapping Error](<https://devfeed.tech/articles/nasa-ibm-lunar-foundation-model-goes-open-source-with-a-2m-tile-dataset-and-22-lower-ice-mapping-error-17437.md>)

Original publisher: [Read original article](<https://www.storagereview.com/news/nasa-ibm-lunar-foundation-model-goes-open-source-with-a-2m-tile-dataset-and-22-lower-ice-mapping-error>)

Author: Harold Fritts

Published: 2026-09-14T16:43:16Z

Content type: news

Language: en

Sources: [StorageReview.com](<https://devfeed.tech/sources/storagereview-com.md>)

Topics: [lunar foundation model](<https://devfeed.tech/topics/lunar-foundation-model.md>), [foundation-models](<https://devfeed.tech/topics/foundation-models.md>), [ibm](<https://devfeed.tech/topics/ibm.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [hugging face](<https://devfeed.tech/topics/hugging-face.md>), [dataset](<https://devfeed.tech/topics/dataset.md>), [multimodal](<https://devfeed.tech/topics/multimodal.md>), [Benchmark](<https://devfeed.tech/topics/benchmark.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [benchmark](<https://devfeed.tech/tags/benchmark.md>), [data](<https://devfeed.tech/tags/data.md>), [enterprise](<https://devfeed.tech/tags/enterprise.md>), [fine-tuning](<https://devfeed.tech/tags/fine-tuning.md>), [foundation-models](<https://devfeed.tech/tags/foundation-models.md>), [hugging-face](<https://devfeed.tech/tags/hugging-face.md>), [ibm](<https://devfeed.tech/tags/ibm.md>), [lunar-foundation-model](<https://devfeed.tech/tags/lunar-foundation-model.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [nasa](<https://devfeed.tech/tags/nasa.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [space](<https://devfeed.tech/tags/space.md>)

### AI overview

IBM and NASA have released the NASA-IBM Lunar Foundation Model as open source on Hugging Face, along with its weights, technical report, and training dataset. Built on TerraMind, the model uses multimodal lunar observations for tasks including ice-deposit mapping, volcanic-feature detection, and crater detection. Reported benchmarks show up to 22% lower ice-mapping error than SwinV2-B, while the accompanying dataset contains roughly 2 million image tiles from nine instruments across four lunar missions.

### Source excerpt

IBM and NASA have released the NASA-IBM Lunar Foundation Model as open source, one of the first publicly available foundation models built for scientific study of the Moon. The weights, a technical report, and the machine-learning-ready dataset it was trained on are up on Hugging Face under the Prithvi family, which already covers Earth observation, The post NASA-IBM Lunar Foundation Model Goes Open Source With a 2M-Tile Dataset and 22% Lower Ice-Mapping Error appeared first on StorageReview.com.

## On-Device AI Series (Part 5): LiteRT-LM

DevFeed: [On-Device AI Series (Part 5): LiteRT-LM](<https://devfeed.tech/articles/on-device-ai-series-part-5-litert-lm-22949.md>)

Original publisher: [Read original article](<https://proandroiddev.com/on-device-ai-series-part-5-litert-lm-d6c23b102094?source=rss----c72404660798---4>)

Author: Oğuzhan Aslan

Published: 2026-09-14T05:59:12Z

Content type: tutorial

Language: en

Sources: [ProAndroidDev - Medium](<https://devfeed.tech/sources/proandroiddev-medium.md>)

Topics: [LiteRT](<https://devfeed.tech/topics/litert.md>), [On-device AI](<https://devfeed.tech/topics/on-device-ai.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [Streaming](<https://devfeed.tech/topics/streaming.md>), [GPU](<https://devfeed.tech/topics/gpu.md>), [LLM evaluation / benchmarking](<https://devfeed.tech/topics/llm-evaluation-benchmarking.md>), [PyTorch](<https://devfeed.tech/topics/pytorch.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [android](<https://devfeed.tech/tags/android.md>), [android-development](<https://devfeed.tech/tags/android-development.md>), [benchmarking](<https://devfeed.tech/tags/benchmarking.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [inference](<https://devfeed.tech/tags/inference.md>), [litert](<https://devfeed.tech/tags/litert.md>), [llama](<https://devfeed.tech/tags/llama.md>), [llm](<https://devfeed.tech/tags/llm.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [on-device](<https://devfeed.tech/tags/on-device.md>), [on-device-ai](<https://devfeed.tech/tags/on-device-ai.md>), [programming](<https://devfeed.tech/tags/programming.md>), [pytorch](<https://devfeed.tech/tags/pytorch.md>), [qwen](<https://devfeed.tech/tags/qwen.md>), [software-development](<https://devfeed.tech/tags/software-development.md>), [streaming](<https://devfeed.tech/tags/streaming.md>)

### AI overview

This tutorial explains LiteRT-LM for running large language models on-device. It covers the Engine/Session API, streaming output, system prompts, tool calling, multimodal inputs, thinking mode, and CPU-versus-GPU benchmarking. The article also discusses tradeoffs involving privacy, network independence, latency, memory, sampling configuration, and model capability compared with cloud APIs.

### Source excerpt

Put your phone in airplane mode. Open the app, type a question, and watch the answer arrive one token at a time -- no spinner waiting on a network round-trip, no API key, no per-token bill, and nothing you typed ever leaving the device. LiteRT-LM removes the genuinely hard parts of running an LLM on-device -- KV-cache management, token streaming, backend selection -- but it doesn't remove your job so much as relocate it. What's left on your plate is a short, specific list: sizing a combined input+output token budget, owning your own sampling defaults, hand-building system prompts and tool calling out of raw text, and one native-library collision that presents as a SIGSEGV rather than a build error. Know those going in and the API itself is a clean three-step pattern. We'll get there in that order: Why you'd choose this runtime and what it costs you versus the cloud. The Engine/Session model you need to read the code at all. Real implementation samples -- streaming, system prompts and tool calling, multimodal inputs, thinking mode, and CPU-vs-GPU benchmarking. The anti-patterns to avoid. A developer-friendliness rating on the same rubric as Parts 1-4. Why Use LiteRT-LM? You reach for LiteRT-LM instead of hand-rolling generation on top of raw LiteRT when: You need multi-turn conversation, not single-shot inference -- session state and KV-cache bookkeeping are handled for you, and resetting a conversation is a session swap, not a model reload. You need streaming output -- token-by-token delivery for a responsive chat UI, instead of a blocking call that returns everything at once. You're choosing between CPU and GPU per device -- the explicit backend parameter turns that into a runtime decision instead of a build-time guess. You want a pre-converted model without doing your own PyTorch-to-LiteRT conversion work -- the Model Zoo covers Gemma, Qwen, Llama, and more out of the box. You're willing to own sampling -- the engine won't pick sane decoding defaults for you; that's on the

## Enterprise-Grade Precision for Long-Context Multimodal Embedding Inference on Cloud TPU

DevFeed: [Enterprise-Grade Precision for Long-Context Multimodal Embedding Inference on Cloud TPU](<https://devfeed.tech/articles/enterprise-grade-precision-for-long-context-multimodal-embedding-inference-on-cloud-tpu-4210.md>)

Original publisher: [Read original article](<https://developers.googleblog.com/enterprise-grade-precision-for-long-context-multimodal-embedding-inference-on-cloud-tpu/>)

Author: Anthony Su; Injae Kwak

Published: 2026-09-12T11:04:33.891311Z

Content type: article

Language: en

Sources: [Google Developers Blog](<https://devfeed.tech/sources/google-developers-blog.md>)

Topics: [Embeddings](<https://devfeed.tech/topics/embeddings.md>), [vllm](<https://devfeed.tech/topics/vllm.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [long-context](<https://devfeed.tech/topics/long-context.md>), [autoscaling](<https://devfeed.tech/topics/autoscaling.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [Google](<https://devfeed.tech/topics/google.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [model-deployment](<https://devfeed.tech/topics/model-deployment.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>)

Tags: [autoscaling](<https://devfeed.tech/tags/autoscaling.md>), [embedding](<https://devfeed.tech/tags/embedding.md>), [github](<https://devfeed.tech/tags/github.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [inference](<https://devfeed.tech/tags/inference.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [long-context](<https://devfeed.tech/tags/long-context.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [retrieval](<https://devfeed.tech/tags/retrieval.md>), [tpu](<https://devfeed.tech/tags/tpu.md>), [vllm](<https://devfeed.tech/tags/vllm.md>)

### AI overview

This article explains how Google Cloud integrated native TPU support into vLLM to serve long-context, multimodal embedding models at production scale. It describes elastic TPU provisioning with Google Kubernetes Engine, autoscaling across accelerator types, and TPU-specific optimizations for long sequences and chunked prefill. The resulting setup is designed to preserve numerical parity with GPU reference baselines while supporting high-throughput semantic retrieval applications.

### Source excerpt

Google Cloud has natively integrated TPU support into the vLLM serving engine, allowing developers to elastically scale high-demand embedding pipelines using Google Kubernetes Engine (GKE). To handle massive 15K+ token contexts for models like Qwen3-Embedding-8B, the engineering team implemented TPU-specific optimizations such as hardware-safe tensor alignment, JAX/XLA compilation pre-warming, and a hybrid StepPool architecture for chunked prefill management. These enhancements achieve near-perfect numerical parity with reference GPU baselines, and developers can immediately leverage the open-sourced setup recipes on the AI-Hypercomputer GitHub to build their own high-throughput semantic retrieval applications.

## Putting Captions to the Test: Evaluating Video Caption Quality through Multiple-Choice Question Answering

DevFeed: [Putting Captions to the Test: Evaluating Video Caption Quality through Multiple-Choice Question Answering](<https://devfeed.tech/articles/putting-captions-to-the-test-evaluating-video-caption-quality-through-multiple-choice-question-answering-6736.md>)

Original publisher: [Read original article](<https://machinelearning.apple.com/research/video-caption-quality>)

Published: 2026-09-11T00:00:00Z

Content type: article

Language: en

Sources: [Apple Machine Learning Research](<https://devfeed.tech/sources/apple-machine-learning-research.md>)

Topics: [LLM evaluation / benchmarking](<https://devfeed.tech/topics/llm-evaluation-benchmarking.md>), [Ground truth / benchmark quality](<https://devfeed.tech/topics/ground-truth-benchmark-quality.md>), [Hallucination detection](<https://devfeed.tech/topics/hallucination-detection.md>)

Tags: [benchmark](<https://devfeed.tech/tags/benchmark.md>), [computer-vision](<https://devfeed.tech/tags/computer-vision.md>), [evaluation](<https://devfeed.tech/tags/evaluation.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [research](<https://devfeed.tech/tags/research.md>), [video](<https://devfeed.tech/tags/video.md>)

### AI overview

The article introduces CapQuiz, a reference-free benchmark for evaluating video-caption quality through human-verified multiple-choice questions. It also proposes CapF1, combining factuality and visual-information coverage, and reports stronger correlation with human judgments than existing metrics.

### Source excerpt

Evaluating video captioning remains a critical challenge for Visual Large Language Models (VLLMs). Existing metrics primarily rely on matching generated text against ground-truth references. This paradigm suffers from the "one-to-many" nature of video description, where high-quality captions are often penalized for lexical mismatches or valid shifts in visual focus. Furthermore, such assessments are typically one-dimensional, failing to provide a fine-grained analysis of caption quality. To address this, we redefine caption quality via information fidelity: A caption must maximize the coverage...

## SimpleDesign: A Joint Model for Protein Sequence and Structure Codesign

DevFeed: [SimpleDesign: A Joint Model for Protein Sequence and Structure Codesign](<https://devfeed.tech/articles/simpledesign-a-joint-model-for-protein-sequence-and-structure-codesign-6735.md>)

Original publisher: [Read original article](<https://machinelearning.apple.com/research/simpledesign-protein-codesign>)

Published: 2026-09-11T00:00:00Z

Content type: article

Language: en

Sources: [Apple Machine Learning Research](<https://devfeed.tech/sources/apple-machine-learning-research.md>)

Topics: [multimodal](<https://devfeed.tech/topics/multimodal.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [datasets](<https://devfeed.tech/topics/datasets.md>)

Tags: [benchmarks](<https://devfeed.tech/tags/benchmarks.md>), [drug-discovery](<https://devfeed.tech/tags/drug-discovery.md>), [generation](<https://devfeed.tech/tags/generation.md>), [model](<https://devfeed.tech/tags/model.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [training](<https://devfeed.tech/tags/training.md>)

### AI overview

SimpleDesign is a single-stage, end-to-end multimodal generative model for jointly designing protein sequences and three-dimensional structures. It uses Transformer-based multimodal backbones, trains directly in data space on more than 2 million sequence-structure pairs, and achieves competitive results on co-design and unconditional generation benchmarks.

### Source excerpt

Proteins are fundamental to biological processes, with their function determined by the complex interplay between the amino acid sequence and the three-dimensional structure. Developing generative models capable of understanding this intrinsically multi-modal relationship is crucial for fields like drug discovery and protein engineering. Existing models often rely on a multi-stage training process where autoencoders that tokenize data into latent representations are trained in a first stage. Secondly, a generative model is trained on the latent representation of the autoencoder(s), i.e...

## Building Pinterest's VLM Serving Stack on NVIDIA Dynamo

DevFeed: [Building Pinterest's VLM Serving Stack on NVIDIA Dynamo](<https://devfeed.tech/articles/building-pinterest-s-vlm-serving-stack-on-nvidia-dynamo-1229.md>)

Original publisher: [Read original article](<https://medium.com/pinterest-engineering/building-pinterests-vlm-serving-stack-on-nvidia-dynamo-0dce6e93d0f3?source=rss----4c5a5f6279b6---4>)

Author: Pinterest Engineering

Published: 2026-09-10T23:08:16Z

Content type: article

Language: en

Sources: [Pinterest Engineering Blog - Medium](<https://devfeed.tech/sources/pinterest-engineering-blog-medium.md>)

Topics: [vlm](<https://devfeed.tech/topics/vlm.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [model-deployment](<https://devfeed.tech/topics/model-deployment.md>), [Orchestration](<https://devfeed.tech/topics/orchestration.md>), [Latency](<https://devfeed.tech/topics/latency.md>), [Caching](<https://devfeed.tech/topics/caching.md>), [Open Source Models & Datasets](<https://devfeed.tech/topics/open-source-models-datasets.md>)

Tags: [blackwell](<https://devfeed.tech/tags/blackwell.md>), [cache](<https://devfeed.tech/tags/cache.md>), [dynamo](<https://devfeed.tech/tags/dynamo.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [inference](<https://devfeed.tech/tags/inference.md>), [latency](<https://devfeed.tech/tags/latency.md>), [llm](<https://devfeed.tech/tags/llm.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [multimodal-ai](<https://devfeed.tech/tags/multimodal-ai.md>), [nvidia](<https://devfeed.tech/tags/nvidia.md>), [nvidia-blackwell](<https://devfeed.tech/tags/nvidia-blackwell.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [orchestration](<https://devfeed.tech/tags/orchestration.md>), [performance](<https://devfeed.tech/tags/performance.md>), [pinterest](<https://devfeed.tech/tags/pinterest.md>), [vllm](<https://devfeed.tech/tags/vllm.md>), [vlm](<https://devfeed.tech/tags/vlm.md>), [vlm-serving](<https://devfeed.tech/tags/vlm-serving.md>)

### AI overview

Pinterest describes its VLM serving stack built on NVIDIA Blackwell GPUs and NVIDIA Dynamo. The stack addresses multimodal inference demands such as image processing, variable prefill costs, KV-cache pressure, routing, and cache offloading.

### Source excerpt

Lei Pan | Senior Software Engineer; Salina Wu | Senior Software Engineer; Cristian Lopez | Software Engineer I; Guangtong Bai | Staff Software Engineer; Soam Acharya | Principal Engineer; Saurabh Vishwas Joshi | Principal Engineer; Chia-Wei Chen | Staff Software Engineer; Ambud Sharma | Principal Engineer Why VLM Serving Matters at Pinterest Pinterest is a visual search and discovery platform, so its AI systems must reason over both language and visual content. Vision-language models (VLMs), which can interpret images, compare visual candidates, and respond naturally to user intent, are becoming the foundation for the next generation of Pinterest experiences: Pinterest Assistant, hybrid search, multimodal reranking, content understanding, signal generation, content safety, and more. This direction also reflects Pinterest's broader strategy to customize open-source models to meet its product & scale needs. Pinterest Assistant is a standout example. This multi-turn conversational experience covers both user language and visual content. Serving it requires low-latency VLM inference over rich multimodal context as well as reworking Qwen3-VL with proprietary multimodal embeddings to cut runtime cost while improving performance. Serving VLMs, however, introduces more challenges compared to text-only LLM workloads. Requests may carry multiple images, require extra vision encoder computation, incur larger and more variable prefill cost, and create higher KV cache pressure. To support this new class of models & product experiences, we built Pinterest's VLM serving stack on top of NVIDIA Blackwell GPUs and NVIDIA Dynamo. Blackwell GPUs incorporate many architectural innovations that are uniquely positioned for today's most demanding AI workloads -- including higher BF16/FP8 compute throughput, increased memory bandwidth, and larger HBM memory capacity -- that enable dramatically higher performance for inference. Dynamo provides a distributed inference orchestration layer that g

## Video and image search in Amazon Bedrock Knowledge Base using Marengo 3.0

DevFeed: [Video and image search in Amazon Bedrock Knowledge Base using Marengo 3.0](<https://devfeed.tech/articles/video-and-image-search-in-amazon-bedrock-knowledge-base-using-marengo-3-0-4743.md>)

Original publisher: [Read original article](<https://aws.amazon.com/blogs/machine-learning/video-and-image-search-in-amazon-bedrock-knowledge-base-using-marengo-3-0/>)

Author: Eric Kim

Published: 2026-09-10T21:15:39Z

Content type: tutorial

Language: en

Sources: [Artificial Intelligence](<https://devfeed.tech/sources/artificial-intelligence.md>)

Topics: [AI search](<https://devfeed.tech/topics/ai-search.md>), [Retrieval Augmented Generation (RAG)](<https://devfeed.tech/topics/retrieval-augmented-generation-rag.md>), [Amazon S3](<https://devfeed.tech/topics/amazon-s3.md>), [AWS IAM](<https://devfeed.tech/topics/aws-iam.md>)

Tags: [amazon-bedrock](<https://devfeed.tech/tags/amazon-bedrock.md>), [amazon-bedrock-knowledge-bases](<https://devfeed.tech/tags/amazon-bedrock-knowledge-bases.md>), [announcements](<https://devfeed.tech/tags/announcements.md>), [audio](<https://devfeed.tech/tags/audio.md>), [embedding](<https://devfeed.tech/tags/embedding.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [images](<https://devfeed.tech/tags/images.md>), [intermediate-200](<https://devfeed.tech/tags/intermediate-200.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [rag](<https://devfeed.tech/tags/rag.md>), [s3](<https://devfeed.tech/tags/s3.md>), [search](<https://devfeed.tech/tags/search.md>), [video](<https://devfeed.tech/tags/video.md>)

### AI overview

A walkthrough for building an Amazon Bedrock Knowledge Base with TwelveLabs Marengo Embed 3.0 to perform natural-language semantic search across video, images, and audio.

### Source excerpt

TwelveLabs Marengo Embed 3.0 is now generally available as an embedding model in Amazon Bedrock Knowledge Bases, bringing fully managed natural language search to video, image, and audio content. This walkthrough shows how to build a knowledge base powered by Marengo 3.0 and run semantic queries against your media.

## When to Use Encode-Prefill-Decode Disaggregation to Accelerate Multimodal Model Serving

DevFeed: [When to Use Encode-Prefill-Decode Disaggregation to Accelerate Multimodal Model Serving](<https://devfeed.tech/articles/when-to-use-encode-prefill-decode-disaggregation-to-accelerate-multimodal-model-serving-6945.md>)

Original publisher: [Read original article](<https://developer.nvidia.com/blog/when-to-use-encode-prefill-decode-disaggregation-to-accelerate-multimodal-model-serving/>)

Author: Tanya Lenz

Published: 2026-09-09T20:31:04Z

Content type: article

Language: en

Sources: [NVIDIA Developer](<https://devfeed.tech/sources/nvidia-developer.md>), [NVIDIA Technical Blog](<https://devfeed.tech/sources/nvidia-technical-blog.md>)

Topics: [Optimization](<https://devfeed.tech/topics/optimization.md>), [model-deployment](<https://devfeed.tech/topics/model-deployment.md>), [multimodal](<https://devfeed.tech/topics/multimodal.md>), [Dynamo](<https://devfeed.tech/topics/dynamo.md>), [Inference Performance](<https://devfeed.tech/topics/inference-performance.md>), [Embeddings](<https://devfeed.tech/topics/embeddings.md>), [Mixture of Experts (MoE)](<https://devfeed.tech/topics/mixture-of-experts-moe.md>), [GPU](<https://devfeed.tech/topics/gpu.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>)

Tags: [agentic-ai-generative-ai](<https://devfeed.tech/tags/agentic-ai-generative-ai.md>), [ai-agent](<https://devfeed.tech/tags/ai-agent.md>), [ai-inference](<https://devfeed.tech/tags/ai-inference.md>), [computer-vision-video-analytics](<https://devfeed.tech/tags/computer-vision-video-analytics.md>), [developer-tools-techniques](<https://devfeed.tech/tags/developer-tools-techniques.md>), [dynamo](<https://devfeed.tech/tags/dynamo.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [inference](<https://devfeed.tech/tags/inference.md>), [low-latency-inference](<https://devfeed.tech/tags/low-latency-inference.md>), [mixture-of-experts-moe](<https://devfeed.tech/tags/mixture-of-experts-moe.md>), [model-serving](<https://devfeed.tech/tags/model-serving.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [nvfp4](<https://devfeed.tech/tags/nvfp4.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [optimization](<https://devfeed.tech/tags/optimization.md>)

### AI overview

This article explains when encode-prefill-decode disaggregation improves multimodal model serving. Using NVIDIA Dynamo, it separates vision encoding from LLM prefill and decode so the stages can batch, schedule, and scale independently. The approach is most effective for image-heavy prompts, short-to-medium outputs, and quantized mixture-of-experts models, with reported gains of up to 5x in time to first token and 7x in end-to-end response time.

### Source excerpt

Encode-prefill-decode (EPD) disaggregation is an inference optimization technique for multimodal models that separates the vision encoder stage from the prefill...

## NeoMME: an efficient Multimodal-native and Multilingual Encoder

DevFeed: [NeoMME: an efficient Multimodal-native and Multilingual Encoder](<https://devfeed.tech/articles/neomme-an-efficient-multimodal-native-and-multilingual-encoder-7011.md>)

Original publisher: [Read original article](<https://huggingface.co/blog/Hcompany/neomme>)

Author: Tony Wu; Aurélien Lac

Published: 2026-09-03T13:13:48Z

Content type: article

Language: en

Sources: [Hugging Face - Blog](<https://devfeed.tech/sources/hugging-face-blog.md>)

Topics: [vlm](<https://devfeed.tech/topics/vlm.md>), [Fine-tuning](<https://devfeed.tech/topics/fine-tuning.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [GPU](<https://devfeed.tech/topics/gpu.md>)

Tags: [apache](<https://devfeed.tech/tags/apache.md>), [architecture](<https://devfeed.tech/tags/architecture.md>), [diffusion](<https://devfeed.tech/tags/diffusion.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [fine-tuning](<https://devfeed.tech/tags/fine-tuning.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [hugging-face](<https://devfeed.tech/tags/hugging-face.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [quantization](<https://devfeed.tech/tags/quantization.md>), [retrieval](<https://devfeed.tech/tags/retrieval.md>), [training](<https://devfeed.tech/tags/training.md>), [transformers](<https://devfeed.tech/tags/transformers.md>), [vector](<https://devfeed.tech/tags/vector.md>), [vision](<https://devfeed.tech/tags/vision.md>), [vlm](<https://devfeed.tech/tags/vlm.md>)

### AI overview

NeoMME is a family of multilingual multimodal encoders trained from scratch with a masked discrete-diffusion objective. It uses one bidirectional Transformer for text tokens and image patches, and is fine-tuned for visual document retrieval with dense and late-interaction embeddings.

### Source excerpt

We introduce NeoMME, a family of 260M and 800M multilingual multimodal encoders. Unlike many generative visual language models, NeoMME does not use a separate pretrained vision tower or a causal language model. A single bidirectional Transformer processes both text tokens and raw image patches, and we train the entire model from scratch with a masked discrete-diffusion objective. We fine-tuned NeoMME for visual document retrieval using ColPali's page-image approach.

## From voice command to robotic arm: how agentic AI on the edge is changing the factory floor

DevFeed: [From voice command to robotic arm: how agentic AI on the edge is changing the factory floor](<https://devfeed.tech/articles/from-voice-command-to-robotic-arm-how-agentic-ai-on-the-edge-is-changing-the-factory-floor-13649.md>)

Original publisher: [Read original article](<https://blog.arduino.cc/2026/09/01/from-voice-command-to-robotic-arm-how-agentic-ai-on-the-edge-is-changing-the-factory-floor/>)

Author: Arduino Team

Published: 2026-09-01T12:20:24Z

Content type: article

Language: en

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

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [foundation-models](<https://devfeed.tech/topics/foundation-models.md>), [Automation](<https://devfeed.tech/topics/automation.md>), [Arduino](<https://devfeed.tech/topics/arduino.md>), [UNO Q](<https://devfeed.tech/topics/uno-q.md>), [AI Agent](<https://devfeed.tech/topics/ai-agent.md>), [Physical AI](<https://devfeed.tech/topics/physical-ai.md>), [multimodal](<https://devfeed.tech/topics/multimodal.md>)

Tags: [agentic-ai](<https://devfeed.tech/tags/agentic-ai.md>), [ai](<https://devfeed.tech/tags/ai.md>), [arduino](<https://devfeed.tech/tags/arduino.md>), [automation](<https://devfeed.tech/tags/automation.md>), [featured](<https://devfeed.tech/tags/featured.md>), [foundation-models](<https://devfeed.tech/tags/foundation-models.md>), [industrial](<https://devfeed.tech/tags/industrial.md>), [inference](<https://devfeed.tech/tags/inference.md>), [latency](<https://devfeed.tech/tags/latency.md>), [manufacturing](<https://devfeed.tech/tags/manufacturing.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [robotic-arm](<https://devfeed.tech/tags/robotic-arm.md>), [robotics](<https://devfeed.tech/tags/robotics.md>), [smart-factory](<https://devfeed.tech/tags/smart-factory.md>), [uno-q](<https://devfeed.tech/tags/uno-q.md>), [usb](<https://devfeed.tech/tags/usb.md>), [voice-commands](<https://devfeed.tech/tags/voice-commands.md>), [voice-control](<https://devfeed.tech/tags/voice-control.md>)

### AI overview

The article describes a demonstration in which Forgis uses a foundation model running on an Arduino UNO Q board to convert voice commands into robotic-arm actions. The system processes multimodal factory data and performs inference locally, enabling real-time control without a cloud round trip.

### Source excerpt

For years, bringing real intelligence to industrial automation meant expensive infrastructure, proprietary systems, and steep learning curves. That's changing - fast. Foundation models powerful enough to run at the edge are turning natural language into machine control, and the factory floor is starting to look a lot more like a conversation. AI as the new [...] The post From voice command to robotic arm: how agentic AI on the edge is changing the factory floor appeared first on Arduino Blog.

## MAPS: Netflix's Multimodal Asset Personalization at Scale

DevFeed: [MAPS: Netflix's Multimodal Asset Personalization at Scale](<https://devfeed.tech/articles/maps-netflix-s-multimodal-asset-personalization-at-scale-141.md>)

Original publisher: [Read original article](<https://netflixtechblog.com/maps-netflixs-multimodal-asset-personalization-at-scale-32f96320785e?source=rss----2615bd06b42e---4>)

Author: Netflix Technology Blog

Published: 2026-08-28T16:01:02Z

Content type: article

Language: en

Sources: [Netflix](<https://devfeed.tech/sources/netflix.md>), [Netflix TechBlog - Medium](<https://devfeed.tech/sources/netflix-techblog-medium.md>)

Topics: [Netflix](<https://devfeed.tech/topics/netflix.md>), [personalization](<https://devfeed.tech/topics/personalization.md>), [Embeddings](<https://devfeed.tech/topics/embeddings.md>), [multimodal](<https://devfeed.tech/topics/multimodal.md>), [recommendation systems](<https://devfeed.tech/topics/recommendation-systems.md>), [data](<https://devfeed.tech/topics/data.md>), [A/B Testing](<https://devfeed.tech/topics/a-b-testing.md>)

Tags: [data](<https://devfeed.tech/tags/data.md>), [embedding](<https://devfeed.tech/tags/embedding.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [model](<https://devfeed.tech/tags/model.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [netflix](<https://devfeed.tech/tags/netflix.md>), [personalization](<https://devfeed.tech/tags/personalization.md>), [production](<https://devfeed.tech/tags/production.md>), [testing](<https://devfeed.tech/tags/testing.md>)

### AI overview

Netflix describes MAPS, a multimodal asset-personalization system that uses embeddings from artwork and video previews to address cold-start problems and personalize recommendations soon after a title launches.

### Source excerpt

By Emma Yanyang Kong, Aditya Deshpande, Asad Abbasi, Bowei Yan, David Fagnan, Ashish Rastogi, Dhaval Patel, Ray Zhang Introduction The Netflix experience is a journey of discovery. Every visual cue, from the artwork on a title to the video previews that autoplay while you browse, is there to connect you with a story you will love. We call these visual cues assets, and choosing the right one for each member is a personalization problem of its own. But which image or video preview of Squid Game should we show you? And what do we do right after a title launches, when there's far too little interaction data to know which asset we should recommend to each member? For years, our models answered the first question well and the second poorly. They learned which assets members interacted with, but treated every asset as an opaque ID, blind to what was actually in the artwork or video preview. Right after a title launched, its assets had no history, so we dialed up exploration on its assets to gather interaction data, and otherwise fell back to popularity heuristics that ignore your taste. Only once enough interactions had piled up could personalization take over. This is the classic cold-start problem. This post shares how multimodal embeddings let our models see and hear the assets they recommend, so personalization can kick in far sooner, close to a title's launch. Because a new asset arrives with its embedding the model already understands, that embedding carries member taste signals from related assets immediately. Consequently, the model needs far less interaction history before it can personalize. We cover three production systems, artwork personalization, query-aware artwork ranking, and video preview personalization, plus a cheap trick for choosing new embeddings before committing to full end-to-end integration and A/B testing. Artwork Personalization A single image is often a member's first touchpoint with a title, so we create a diverse set of artworks for each tit

## Experiment with Qwen3.8-Flash-Next on NVIDIA GB300 NVL72 for Agentic Coding

DevFeed: [Experiment with Qwen3.8-Flash-Next on NVIDIA GB300 NVL72 for Agentic Coding](<https://devfeed.tech/articles/experiment-with-qwen3-8-flash-next-on-nvidia-gb300-nvl72-for-agentic-coding-6819.md>)

Original publisher: [Read original article](<https://developer.nvidia.com/blog/experiment-with-qwen3-8-flash-next-on-nvidia-gb300-nvl72-for-agentic-coding/>)

Author: Michelle Horton

Published: 2026-08-26T17:07:12Z

Content type: article

Language: en

Sources: [NVIDIA Developer](<https://devfeed.tech/sources/nvidia-developer.md>), [NVIDIA Technical Blog](<https://devfeed.tech/sources/nvidia-technical-blog.md>)

Topics: [qwen](<https://devfeed.tech/topics/qwen.md>), [long-context](<https://devfeed.tech/topics/long-context.md>), [Mixture of Experts (MoE)](<https://devfeed.tech/topics/mixture-of-experts-moe.md>), [agentic-coding](<https://devfeed.tech/topics/agentic-coding.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [GPU](<https://devfeed.tech/topics/gpu.md>), [multimodal](<https://devfeed.tech/topics/multimodal.md>), [NeMo](<https://devfeed.tech/topics/nemo.md>), [sglang](<https://devfeed.tech/topics/sglang.md>), [TensorRT-LLM](<https://devfeed.tech/topics/tensorrt-llm.md>), [vllm](<https://devfeed.tech/topics/vllm.md>), [rust-ai](<https://devfeed.tech/topics/rust-ai.md>)

Tags: [agentic-ai-generative-ai](<https://devfeed.tech/tags/agentic-ai-generative-ai.md>), [agentic-coding](<https://devfeed.tech/tags/agentic-coding.md>), [benchmarks](<https://devfeed.tech/tags/benchmarks.md>), [context-window](<https://devfeed.tech/tags/context-window.md>), [developer-tools-techniques](<https://devfeed.tech/tags/developer-tools-techniques.md>), [gb300-nvl72](<https://devfeed.tech/tags/gb300-nvl72.md>), [inference](<https://devfeed.tech/tags/inference.md>), [mixture-of-experts-moe](<https://devfeed.tech/tags/mixture-of-experts-moe.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [nemo](<https://devfeed.tech/tags/nemo.md>), [nvlink](<https://devfeed.tech/tags/nvlink.md>), [qwen](<https://devfeed.tech/tags/qwen.md>), [sglang](<https://devfeed.tech/tags/sglang.md>), [tensorrt-llm](<https://devfeed.tech/tags/tensorrt-llm.md>), [top-stories](<https://devfeed.tech/tags/top-stories.md>), [vllm](<https://devfeed.tech/tags/vllm.md>)

### AI overview

This NVIDIA developer article introduces Qwen3.8-Flash-Next, a multimodal mixture-of-experts model released by Alibaba for experimentation and evaluation. It explains the model's long-context hybrid architecture, including Gated DeltaNet and Qwen Sparse Attention, and discusses reported efficiency improvements for million-token workloads. The article also covers inference support through SGLang, vLLM, TensorRT-LLM, and NVIDIA NeMo, plus performance on the NVIDIA GB300 NVL72 platform.

### Source excerpt

Alibaba released the model weights for Qwen3.8-Flash-Next as a preview of the upcoming Qwen4 architecture for developers to experiment with and evaluate. It's...

## Luce: Relightable Gaussians for 3D Asset Generation

DevFeed: [Luce: Relightable Gaussians for 3D Asset Generation](<https://devfeed.tech/articles/luce-relightable-gaussians-for-3d-asset-generation-6733.md>)

Original publisher: [Read original article](<https://machinelearning.apple.com/research/relightable-gaussians-3d-generation>)

Published: 2026-08-26T00:00:00Z

Content type: article

Language: en

Sources: [Apple Machine Learning Research](<https://devfeed.tech/sources/apple-machine-learning-research.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Benchmark](<https://devfeed.tech/topics/benchmark.md>)

Tags: [3d](<https://devfeed.tech/tags/3d.md>), [ai](<https://devfeed.tech/tags/ai.md>), [benchmark](<https://devfeed.tech/tags/benchmark.md>), [computer-vision](<https://devfeed.tech/tags/computer-vision.md>), [generation](<https://devfeed.tech/tags/generation.md>), [images](<https://devfeed.tech/tags/images.md>), [mesh](<https://devfeed.tech/tags/mesh.md>), [models](<https://devfeed.tech/tags/models.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [techniques](<https://devfeed.tech/tags/techniques.md>), [vision](<https://devfeed.tech/tags/vision.md>)

### AI overview

Luce is a multimodal 3D representation for generating relightable assets from a single image. It combines geometry with physically based materials in a voxelized Gaussian cloud, compresses them into a material-aware latent space, and generates relightable PBR Gaussians and optional textured meshes. On Toys4K, it reports a 28% FID improvement over the strongest baseline and improves alignment on an AI-generated image benchmark.

### Source excerpt

High-fidelity image-to-3D generation requires a 3D representation that captures both geometry and appearance. To support relighting and integration into standard rendering pipelines, the representation should include physically based rendering (PBR) modalities such as albedo, metallic-roughness, and surface normals. We propose Luce, a 3D representation that unifies geometry and PBR materials within a voxelized multimodal Gaussian cloud, using dedicated Gaussian primitives for each modality. A variational autoencoder compresses this representation into a unified material-aware latent space. A...

## GLM 5.3 Flash now available on AI Gateway

DevFeed: [GLM 5.3 Flash now available on AI Gateway](<https://devfeed.tech/articles/glm-5-3-flash-now-available-on-ai-gateway-958.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/glm-5-3-flash-now-available-on-ai-gateway>)

Author: Jerilyn Zheng

Published: 2026-08-26T00:00:00Z

Content type: news

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [AI Chat](<https://devfeed.tech/topics/ai-chat.md>)

Tags: [agent](<https://devfeed.tech/tags/agent.md>), [ai](<https://devfeed.tech/tags/ai.md>), [ai-gateway](<https://devfeed.tech/tags/ai-gateway.md>), [coding](<https://devfeed.tech/tags/coding.md>), [flash](<https://devfeed.tech/tags/flash.md>), [images](<https://devfeed.tech/tags/images.md>), [language-models](<https://devfeed.tech/tags/language-models.md>), [model](<https://devfeed.tech/tags/model.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [playground](<https://devfeed.tech/tags/playground.md>), [streaming](<https://devfeed.tech/tags/streaming.md>), [vercel](<https://devfeed.tech/tags/vercel.md>)

### AI overview

GLM 5.3 Flash from Z.ai is now available through AI Gateway. The multimodal coding model supports text and image inputs, function calling, structured output, streaming, and a 1M-token context window.

### Source excerpt

GLM 5.3 Flash from Z.ai is now available on AI Gateway as zai/glm-5.3-flash. GLM 5.3 Flash is a multimodal coding model with a 1M-token context window. It accepts both text and image inputs and supports function calling, structured output, and streaming. To include images, pass them with text in a message. A request can include multiple images using URLs, Base64 data URLs, or binary data: To use GLM 5.3 Flash with a coding agent, run vercel ai-gateway coding-agents setup, then select zai/glm-5.3-flash as your agent's model. Try GLM 5.3 Flash in the model playground, or browse all language models. Read more

## AgentHands: Generating interactive hand gestures for spatially grounded agent conversations in XR

DevFeed: [AgentHands: Generating interactive hand gestures for spatially grounded agent conversations in XR](<https://devfeed.tech/articles/agenthands-generating-interactive-hand-gestures-for-spatially-grounded-agent-conversations-in-xr-6747.md>)

Original publisher: [Read original article](<https://research.google/blog/agenthands-generating-interactive-hand-gestures-for-spatially-grounded-agent-conversations-in-xr/>)

Published: 2026-08-25T19:10:59Z

Content type: article

Language: en

Sources: [The latest research from Google](<https://devfeed.tech/sources/the-latest-research-from-google.md>)

Topics: [Human-Computer Interaction and Visualization](<https://devfeed.tech/topics/human-computer-interaction-and-visualization.md>), [AI Bots](<https://devfeed.tech/topics/ai-bots.md>)

Tags: [3d](<https://devfeed.tech/tags/3d.md>), [ai-agents](<https://devfeed.tech/tags/ai-agents.md>), [android-xr](<https://devfeed.tech/tags/android-xr.md>), [human-computer-interaction-and-visualization](<https://devfeed.tech/tags/human-computer-interaction-and-visualization.md>), [llm](<https://devfeed.tech/tags/llm.md>), [machine-intelligence](<https://devfeed.tech/tags/machine-intelligence.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [research-prototype](<https://devfeed.tech/tags/research-prototype.md>)

### AI overview

AgentHands is an LLM-powered XR research prototype that adds synchronized hand gestures to conversational agents for spatially grounded guidance in physical tasks.

### Source excerpt

Human-Computer Interaction and Visualization

## Building Federated Multimodal AI Workflows with NVIDIA FLARE

DevFeed: [Building Federated Multimodal AI Workflows with NVIDIA FLARE](<https://devfeed.tech/articles/building-federated-multimodal-ai-workflows-with-nvidia-flare-6776.md>)

Original publisher: [Read original article](<https://developer.nvidia.com/blog/building-federated-multimodal-ai-workflows-with-nvidia-flare/>)

Author: Tanya Lenz

Published: 2026-08-19T17:50:47Z

Content type: article

Language: en

Sources: [NVIDIA Developer](<https://devfeed.tech/sources/nvidia-developer.md>), [NVIDIA Technical Blog](<https://devfeed.tech/sources/nvidia-technical-blog.md>)

Topics: [vlm](<https://devfeed.tech/topics/vlm.md>), [SDKs](<https://devfeed.tech/topics/sdks.md>)

Tags: [agentic-ai-generative-ai](<https://devfeed.tech/tags/agentic-ai-generative-ai.md>), [ai](<https://devfeed.tech/tags/ai.md>), [data-science](<https://devfeed.tech/tags/data-science.md>), [edge-computing](<https://devfeed.tech/tags/edge-computing.md>), [featured](<https://devfeed.tech/tags/featured.md>), [federated-learning](<https://devfeed.tech/tags/federated-learning.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [multimodal-ai](<https://devfeed.tech/tags/multimodal-ai.md>), [nvidia](<https://devfeed.tech/tags/nvidia.md>), [python](<https://devfeed.tech/tags/python.md>), [streaming](<https://devfeed.tech/tags/streaming.md>), [training](<https://devfeed.tech/tags/training.md>), [training-ai-models](<https://devfeed.tech/tags/training-ai-models.md>), [updates](<https://devfeed.tech/tags/updates.md>), [vlms](<https://devfeed.tech/tags/vlms.md>), [workflows](<https://devfeed.tech/tags/workflows.md>)

### AI overview

The article explains how NVIDIA FLARE supports federated training for multimodal and vision-language models when data remains distributed across sites. It focuses on deciding which model state to exchange and on efficiently transferring and aggregating large updates through externalization, tensor streaming, and disk-backed aggregation.

### Source excerpt

Modern vision-language models (VLMs) can support tasks such as visual question answering, captioning, and image-text reasoning. In practice, however, the data...

## Multi-Vector (Late Interaction) Embedding Models with Sentence Transformers

DevFeed: [Multi-Vector (Late Interaction) Embedding Models with Sentence Transformers](<https://devfeed.tech/articles/multi-vector-late-interaction-embedding-models-with-sentence-transformers-7360.md>)

Original publisher: [Read original article](<https://huggingface.co/blog/multi-vector-encoder>)

Author: Tom Aarsen; Antoine Chaffin; Raphael Sourty

Published: 2026-08-18T00:00:00Z

Content type: article

Language: en

Sources: [Hugging Face - Blog](<https://devfeed.tech/sources/hugging-face-blog.md>)

Topics: [sentence-transformers](<https://devfeed.tech/topics/sentence-transformers.md>), [Embeddings](<https://devfeed.tech/topics/embeddings.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>)

Tags: [community](<https://devfeed.tech/tags/community.md>), [embedding](<https://devfeed.tech/tags/embedding.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [guide](<https://devfeed.tech/tags/guide.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [nlp](<https://devfeed.tech/tags/nlp.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [retrieval](<https://devfeed.tech/tags/retrieval.md>), [search](<https://devfeed.tech/tags/search.md>), [sentence-transformers](<https://devfeed.tech/tags/sentence-transformers.md>), [transformers](<https://devfeed.tech/tags/transformers.md>), [vector](<https://devfeed.tech/tags/vector.md>)

### AI overview

This article explains multi-vector, or late-interaction, embedding models with Sentence Transformers. It covers token-level representations, MaxSim scoring, retrieval over text and page images, integration with search systems, and index-size tradeoffs.

### Source excerpt

We're on a journey to advance and democratize artificial intelligence through open source and open science.

## Seeing beyond BMI: Estimating cardiometabolic risk with smartphone imagery

DevFeed: [Seeing beyond BMI: Estimating cardiometabolic risk with smartphone imagery](<https://devfeed.tech/articles/seeing-beyond-bmi-estimating-cardiometabolic-risk-with-smartphone-imagery-6866.md>)

Original publisher: [Read original article](<https://research.google/blog/seeing-beyond-bmi-estimating-cardiometabolic-risk-with-smartphone-imagery/>)

Published: 2026-08-17T10:34:00Z

Content type: article

Language: en

Sources: [The latest research from Google](<https://devfeed.tech/sources/the-latest-research-from-google.md>)

Topics: [Deep neural networks](<https://devfeed.tech/topics/deep-neural-networks.md>), [Deep learning](<https://devfeed.tech/topics/deep-learning.md>), [Machine learning](<https://devfeed.tech/topics/machine-learning.md>), [Google](<https://devfeed.tech/topics/google.md>)

Tags: [deep-learning](<https://devfeed.tech/tags/deep-learning.md>), [general-science](<https://devfeed.tech/tags/general-science.md>), [google](<https://devfeed.tech/tags/google.md>), [health](<https://devfeed.tech/tags/health.md>), [health-bioscience](<https://devfeed.tech/tags/health-bioscience.md>), [machine-intelligence](<https://devfeed.tech/tags/machine-intelligence.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [monitoring](<https://devfeed.tech/tags/monitoring.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [science](<https://devfeed.tech/tags/science.md>)

### AI overview

Google Research presents PhotoScan, a deep learning approach that estimates body composition from smartphone photos and predicts insulin resistance with accuracy comparable to DXA scans in a clinical research setting. The article explains how body-composition measures such as fat distribution and visceral fat may complement wearable data for earlier cardiometabolic risk assessment.

### Source excerpt

General Science

## Choosing & integrating LLM APIs: a practical guide

DevFeed: [Choosing & integrating LLM APIs: a practical guide](<https://devfeed.tech/articles/choosing-integrating-llm-apis-a-practical-guide-4774.md>)

Original publisher: [Read original article](<https://redis.io/blog/choosing-integrating-llm-apis-practical-guide/>)

Author: Cedric Turner

Published: 2026-08-17T00:00:00Z

Content type: tutorial

Language: en

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

Topics: [Large Language Model](<https://devfeed.tech/topics/llm.md>), [API](<https://devfeed.tech/topics/api.md>), [SDKs](<https://devfeed.tech/topics/sdks.md>), [Latency](<https://devfeed.tech/topics/latency.md>), [Caching](<https://devfeed.tech/topics/caching.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [Streaming](<https://devfeed.tech/topics/streaming.md>), [Embeddings](<https://devfeed.tech/topics/embeddings.md>), [multimodal](<https://devfeed.tech/topics/multimodal.md>)

Tags: [apis](<https://devfeed.tech/tags/apis.md>), [caching](<https://devfeed.tech/tags/caching.md>), [code](<https://devfeed.tech/tags/code.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [inference](<https://devfeed.tech/tags/inference.md>), [latency](<https://devfeed.tech/tags/latency.md>), [llm](<https://devfeed.tech/tags/llm.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [sdks](<https://devfeed.tech/tags/sdks.md>), [streaming](<https://devfeed.tech/tags/streaming.md>), [tech-de](<https://devfeed.tech/tags/tech-de.md>)

### AI overview

A practical guide to choosing and integrating LLM APIs, covering provider capabilities, pricing, latency, quality evaluation, and the caching, retry, and memory layers needed for reliable production applications.

### Source excerpt

Making your first LLM API call is easy: with most provider SDKs, it's about five lines of code. Keeping that call fast, affordable, and reliable once real users show up is where the actual engineering happens: costs can compound as conversations grow,...

## Elastic community newsletter -- August 2026

DevFeed: [Elastic community newsletter -- August 2026](<https://devfeed.tech/articles/elastic-community-newsletter-august-2026-4798.md>)

Original publisher: [Read original article](<https://www.elastic.co/blog/devrel-newsletter-august-2026>)

Author: Elastic DevRel team

Published: 2026-08-13T00:00:00Z

Content type: news

Language: en

Sources: [Elastic Blog - Elasticsearch, Kibana, and ELK Stack](<https://devfeed.tech/sources/elastic-blog-elasticsearch-kibana-and-elk-stack.md>)

Topics: [elasticsearch](<https://devfeed.tech/topics/elasticsearch.md>), [devrel](<https://devfeed.tech/topics/devrel.md>), [dashboards](<https://devfeed.tech/topics/dashboards.md>), [Embeddings](<https://devfeed.tech/topics/embeddings.md>), [multimodal](<https://devfeed.tech/topics/multimodal.md>), [quantization](<https://devfeed.tech/topics/quantization.md>), [AI search](<https://devfeed.tech/topics/ai-search.md>), [tracing](<https://devfeed.tech/topics/tracing.md>)

Tags: [audio](<https://devfeed.tech/tags/audio.md>), [dashboards](<https://devfeed.tech/tags/dashboards.md>), [devrel](<https://devfeed.tech/tags/devrel.md>), [elasticsearch](<https://devfeed.tech/tags/elasticsearch.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [images](<https://devfeed.tech/tags/images.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [pdf](<https://devfeed.tech/tags/pdf.md>), [quantization](<https://devfeed.tech/tags/quantization.md>), [tracing](<https://devfeed.tech/tags/tracing.md>), [video](<https://devfeed.tech/tags/video.md>)

### AI overview

The Elastic community newsletter covers Elasticsearch 9.5, including native PromQL, the Dashboards API, Columnar Mode, vector search improvements, multimodal semantic search, and Elastic Agent Builder tracing in technical preview.

### Source excerpt

In this newsletter, we cover version 9.5 of Elasticsearch, the latest blogs and videos, and upcoming events.

## MindTopo reveals VLMs' spatial reasoning abilities

DevFeed: [MindTopo reveals VLMs' spatial reasoning abilities](<https://devfeed.tech/articles/mindtopo-reveals-vlms-spatial-reasoning-abilities-6802.md>)

Original publisher: [Read original article](<https://www.microsoft.com/en-us/research/blog/mindtopo-reveals-vlms-spatial-reasoning-abilities/>)

Author: Yunfei Ge, Anbang Liu, Qineng Wang, Johnalbert Garnica, Zihan Wang, Reuben Tan, Jianfeng Gao, Ruohan Zhang, Yining Hong, Jiajun Wu, Manling Li

Published: 2026-08-12T16:00:00Z

Content type: article

Language: en

Sources: [Microsoft Research](<https://devfeed.tech/sources/microsoft-research.md>)

Topics: [Benchmark](<https://devfeed.tech/topics/benchmark.md>), [LLM evaluation / benchmarking](<https://devfeed.tech/topics/llm-evaluation-benchmarking.md>), [multimodal-ai](<https://devfeed.tech/topics/multimodal-ai.md>), [Language models](<https://devfeed.tech/topics/language-models.md>), [Robotics](<https://devfeed.tech/topics/robotics.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [benchmark](<https://devfeed.tech/tags/benchmark.md>), [large-language-models](<https://devfeed.tech/tags/large-language-models.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [reasoning](<https://devfeed.tech/tags/reasoning.md>), [research](<https://devfeed.tech/tags/research.md>), [research-blog](<https://devfeed.tech/tags/research-blog.md>), [testing](<https://devfeed.tech/tags/testing.md>), [vlms](<https://devfeed.tech/tags/vlms.md>)

### AI overview

MindTopo is a benchmark for evaluating whether multimodal large language models can understand and manipulate topological relationships such as connectivity, enclosure, order, separation, and knots. It compares static recognition with interactive planning and finds that current models often lose track of structural relationships during sequences of actions.

### Source excerpt

A path, a fence, a knot. MindTopo sets a new benchmark for testing how AI understands topological relationships and highlights new opportunities to strengthen spatial reasoning and planning. The post MindTopo reveals VLMs' spatial reasoning abilities appeared first on Microsoft Research.

## Building a Local, Multimodal AI Terminal Agent with Gemma 4

DevFeed: [Building a Local, Multimodal AI Terminal Agent with Gemma 4](<https://devfeed.tech/articles/building-a-local-multimodal-ai-terminal-agent-with-gemma-4-22852.md>)

Original publisher: [Read original article](<https://medium.com/google-developer-experts/building-a-local-multimodal-ai-terminal-agent-with-gemma-4-4fbaa50eb14b?source=rss----a67bd6fa7d58---4>)

Author: Arjun Prabhulal

Published: 2026-08-12T09:25:11Z

Content type: tutorial

Language: en

Sources: [Google Developer Experts - Medium](<https://devfeed.tech/sources/google-developer-experts-medium.md>)

Topics: [gemma4](<https://devfeed.tech/topics/gemma4.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [multimodal-ai](<https://devfeed.tech/topics/multimodal-ai.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Local AI](<https://devfeed.tech/topics/local-ai.md>), [Code](<https://devfeed.tech/topics/code.md>), [Google](<https://devfeed.tech/topics/google.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-agent](<https://devfeed.tech/tags/ai-agent.md>), [artificial-intelligence](<https://devfeed.tech/tags/artificial-intelligence.md>), [code](<https://devfeed.tech/tags/code.md>), [function-calling](<https://devfeed.tech/tags/function-calling.md>), [gemma](<https://devfeed.tech/tags/gemma.md>), [gemma-4](<https://devfeed.tech/tags/gemma-4.md>), [google](<https://devfeed.tech/tags/google.md>), [google-cloud-platform](<https://devfeed.tech/tags/google-cloud-platform.md>), [local-ai](<https://devfeed.tech/tags/local-ai.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [ollama](<https://devfeed.tech/tags/ollama.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [terminal](<https://devfeed.tech/tags/terminal.md>)

### AI overview

A tutorial introduces Gemma 4 and builds a local multimodal terminal agent named gemma4-agent. It covers function calling, tool orchestration, text, image, and voice processing, plus Gemma 4's model variants and architecture.

### Source excerpt

Introduction Open-source LLM models have been improving rapidly with tool calling, extended context windows, and native vision and audio capabilities, all while delivering strong benchmark performance. Gemma 4, recently introduced by Google Deepmind brings all of these features together in sizes efficient enough to run locally. In this article, we'll look at the capabilities of Gemma 4 and build a multimodal (Text, Vision, Voice) CLI agent (gemma4-agent) with function-calling capabilities. By the end, you'll have an agent that can chat, write, execute code, analyze images, and process voice instructions to deliver highly grounded responses. What is Gemma 4 Model ? Gemma 4 is Google DeepMind's open model family, released in April 2026 under the Apache 2.0 license. Built from the same research and technology behind Gemini 3, Gemma 4 is designed for high-performance reasoning, coding, multimodal understanding, and local AI execution across different model sizes. Features of Gemma 4 Models Improved Tool calling : Native function calling and tool orchestration, letting agents act autonomously without bloating prompt instructions Thinking mode : Built-in step-by-step thinking mode via the <|think|> token for complex multi-turn logic Context Windows : Up to 256K tokens on the 12B and larger models (128K on the edge-sized E2B/E4B) for processing long document and tool outputs Extended Multimodality : Gemma 4 models can process text,voice and images simultaneously like extracting data from charts, analyzing screenshots , and reviewing UI mockups. Gemma 4 Model Variants & SpecificationsGemma 4 Architecture Gemma 4 comes in five model sizes built around four architectural variants, each making different trade-offs between performance, inference speed, compute, and memory. Gemma4 Unified 12B vs Effective Parameters Effective-parameter models (E2B and E4B) are dense transformer models optimized for edge and on-device deployment. The "E" stands for effective parameters use Per-La

## Advancing AMIE towards expert-level audio-visual clinical consultations

DevFeed: [Advancing AMIE towards expert-level audio-visual clinical consultations](<https://devfeed.tech/articles/advancing-amie-towards-expert-level-audio-visual-clinical-consultations-6746.md>)

Original publisher: [Read original article](<https://research.google/blog/advancing-amie-towards-expert-level-audio-visual-clinical-consultations/>)

Published: 2026-08-11T17:04:00Z

Content type: article

Language: en

Sources: [The latest research from Google](<https://devfeed.tech/sources/the-latest-research-from-google.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Google](<https://devfeed.tech/topics/google.md>), [real-time](<https://devfeed.tech/topics/real-time.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [audio](<https://devfeed.tech/tags/audio.md>), [communication](<https://devfeed.tech/tags/communication.md>), [health-bioscience](<https://devfeed.tech/tags/health-bioscience.md>), [machine-intelligence](<https://devfeed.tech/tags/machine-intelligence.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [partnership](<https://devfeed.tech/tags/partnership.md>), [reasoning](<https://devfeed.tech/tags/reasoning.md>), [research](<https://devfeed.tech/tags/research.md>), [video](<https://devfeed.tech/tags/video.md>)

### AI overview

Google Research describes an advance to AMIE, a medical AI system designed for real-time video consultations. In simulated consultations, AMIE demonstrated expert-level performance in a randomized controlled study while integrating spoken history with visual and auditory clinical cues.

### Source excerpt

Health & Bioscience

## Meta is back with Muse Glimmer: local, agentic, multimodal, and open source

DevFeed: [Meta is back with Muse Glimmer: local, agentic, multimodal, and open source](<https://devfeed.tech/articles/meta-is-back-with-muse-glimmer-local-agentic-multimodal-and-open-source-7362.md>)

Original publisher: [Read original article](<https://huggingface.co/blog/muse-glimmer>)

Author: Pedro Cuenca; merve; ben burtenshaw; Aritra Roy Gosthipaty

Published: 2026-08-10T00:00:00Z

Content type: article

Language: en

Sources: [Hugging Face - Blog](<https://devfeed.tech/sources/hugging-face-blog.md>)

Topics: [vlm](<https://devfeed.tech/topics/vlm.md>), [multimodal](<https://devfeed.tech/topics/multimodal.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [hugging face](<https://devfeed.tech/topics/hugging-face.md>), [Benchmark](<https://devfeed.tech/topics/benchmark.md>), [coding](<https://devfeed.tech/topics/coding.md>)

Tags: [agentic](<https://devfeed.tech/tags/agentic.md>), [artificial-intelligence](<https://devfeed.tech/tags/artificial-intelligence.md>), [benchmark](<https://devfeed.tech/tags/benchmark.md>), [hub](<https://devfeed.tech/tags/hub.md>), [hugging-face](<https://devfeed.tech/tags/hugging-face.md>), [images](<https://devfeed.tech/tags/images.md>), [llama-cpp](<https://devfeed.tech/tags/llama-cpp.md>), [llms](<https://devfeed.tech/tags/llms.md>), [local](<https://devfeed.tech/tags/local.md>), [meta](<https://devfeed.tech/tags/meta.md>), [model](<https://devfeed.tech/tags/model.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [muse](<https://devfeed.tech/tags/muse.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [videos](<https://devfeed.tech/tags/videos.md>), [vllm](<https://devfeed.tech/tags/vllm.md>), [vlm](<https://devfeed.tech/tags/vlm.md>), [vlms](<https://devfeed.tech/tags/vlms.md>)

### AI overview

Hugging Face presents Muse Glimmer, a local, agentic, multimodal, open-source 30B-parameter vision-language model developed with Meta. The article outlines its vision and language architecture, benchmark context, optional speculative decoding for faster generation, and support for both images and videos.

### Source excerpt

We're on a journey to advance and democratize artificial intelligence through open source and open science.

[Next page](<https://devfeed.tech/tags/multimodal.md?cursor=WyIyMDI2LTA4LTEwVDAwOjAwOjAwKzAwOjAwIiwgIjVkNDU3YzgzLTg1MDgtNGNkMS05YjMyLWEyNzc2NmJhMmZmOSJd>)