# Transformer

A neural-network architecture based solely on attention mechanisms, dispensing with recurrence and convolutions.

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

## Where does all the VRAM go during LLM inference?

DevFeed: [Where does all the VRAM go during LLM inference?](<https://devfeed.tech/articles/where-does-all-the-vram-go-during-llm-inference-42076.md>)

Original publisher: [Read original article](<https://blog.dailydoseofds.com/p/where-does-all-the-vram-go-during>)

Author: Avi Chawla

Published: 2026-09-17T19:30:12Z

Content type: article

Language: en

Sources: [Daily Dose of Data Science](<https://devfeed.tech/sources/daily-dose-of-data-science.md>)

Topics: [Inference](<https://devfeed.tech/topics/inference.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [GPU](<https://devfeed.tech/topics/gpu.md>), [quantization](<https://devfeed.tech/topics/quantization.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [Decoding](<https://devfeed.tech/topics/decoding.md>)

Tags: [concurrency](<https://devfeed.tech/tags/concurrency.md>), [decoding](<https://devfeed.tech/tags/decoding.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [inference](<https://devfeed.tech/tags/inference.md>), [llm](<https://devfeed.tech/tags/llm.md>), [model-architecture](<https://devfeed.tech/tags/model-architecture.md>), [quantization](<https://devfeed.tech/tags/quantization.md>), [vram](<https://devfeed.tech/tags/vram.md>)

### AI overview

This article explains how GPU memory is allocated during large language model inference. It distinguishes mostly fixed model-weight memory from dynamic memory used by the KV cache, temporary activations and workspace, and runtime overhead. Context length, batch size, concurrency and model architecture affect whether the workload fits, while quantization reduces weight memory but does not guarantee higher throughput.

### Source excerpt

...explained visually

## The guest journey, updated in real time: extending Airbnb's sequence recommender with Chronon

DevFeed: [The guest journey, updated in real time: extending Airbnb's sequence recommender with Chronon](<https://devfeed.tech/articles/the-guest-journey-updated-in-real-time-extending-airbnb-s-sequence-recommender-with-chronon-42165.md>)

Original publisher: [Read original article](<https://medium.com/airbnb-engineering/the-guest-journey-updated-in-real-time-extending-airbnbs-sequence-recommender-with-chronon-8f1582578553?source=rss----53c7c27702d5---4>)

Author: Pengyu Hou

Published: 2026-09-17T17:01:02Z

Content type: article

Language: en

Sources: [The Airbnb Tech Blog - Medium](<https://devfeed.tech/sources/the-airbnb-tech-blog-medium.md>)

Topics: [real-time](<https://devfeed.tech/topics/real-time.md>), [recommendation systems](<https://devfeed.tech/topics/recommendation-systems.md>), [data](<https://devfeed.tech/topics/data.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [Latency](<https://devfeed.tech/topics/latency.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [data](<https://devfeed.tech/tags/data.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [inference](<https://devfeed.tech/tags/inference.md>), [infrastructure](<https://devfeed.tech/tags/infrastructure.md>), [latency](<https://devfeed.tech/tags/latency.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [ranking](<https://devfeed.tech/tags/ranking.md>), [real-time](<https://devfeed.tech/tags/real-time.md>), [repo](<https://devfeed.tech/tags/repo.md>), [results](<https://devfeed.tech/tags/results.md>), [sequence](<https://devfeed.tech/tags/sequence.md>), [technology](<https://devfeed.tech/tags/technology.md>)

### AI overview

Airbnb describes extending its sequence-based recommender with Chronon's Push Mode and Near-real-time Model Transform capabilities. The changes update guest activity and model features more quickly, reducing the staleness of search-ranking inputs compared with the previous daily batch pipeline.

### Source excerpt

How two new Chronon capabilities, Push Mode and NRT Model Transform, allows us to provide more relevant search results instantly as a guest explores, rather than waiting for the next batch run. By: Pengyu Hou, Yuli Han, Daochen Zha, Haozhen Ding, Xin Liu, Sophie Wang, Pallavi Adusumilli, Sherry Li, Henry Saputra, Chun How Tan, Huiji Gao, Yan Zhang, Stephanie Moyerman, Yi Li, and Sanjeev Katariya A guest's interaction with Airbnb doesn't pause to wait for a nightly batch job. Someone might browse a dozen listings on a Tuesday afternoon, run a new search that evening, and expect the next search to reflect the recent activity; it's also to Airbnb's benefit for that to be the case. In our previous post, Personalizing Airbnb search by learning from the guest journey, we described how we built a Transformer-based sequence encoder that creates better, more personalized search rankings for a guest using the booking, review, and browsing data that is most relevant to them -- their own. That system ran as a daily batch job: each night it processed the previous day's activity and refreshed embeddings for guests who had something new to show for it. That design worked well, but it left a gap. Activity from earlier the same day wouldn't show up in the embedding until the following day's run, on top of the pipeline's own processing lag -- in practice, up to nearly two days of staleness. For a guest actively planning a trip, that meant the ranking model was often working from a slightly outdated picture of what they wanted, and the recent activities are often highly relevant to current search needs. This is a limitation that our original JourneyFormer research had already flagged as needing new serving infrastructure to solve. In this post, we describe how we closed that gap by adding two new capabilities to Chronon, Airbnb's feature platform: Near-real-time Model Transform and Push Mode. Chronon is an open source project, and these capabilities have been contributed back to our pub

## HeyGen x Google Cloud: Bringing Avatar IV to TPUs

DevFeed: [HeyGen x Google Cloud: Bringing Avatar IV to TPUs](<https://devfeed.tech/articles/heygen-x-google-cloud-bringing-avatar-iv-to-tpus-4211.md>)

Original publisher: [Read original article](<https://developers.googleblog.com/heygen-x-google-cloud-bringing-avatar-iv-to-tpus/>)

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: [Google](<https://devfeed.tech/topics/google.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Optimization](<https://devfeed.tech/topics/optimization.md>), [AI Infrastructure](<https://devfeed.tech/topics/ai-infrastructure.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [PyTorch](<https://devfeed.tech/topics/pytorch.md>), [Compiler](<https://devfeed.tech/topics/compiler.md>), [Streaming](<https://devfeed.tech/topics/streaming.md>), [real-time](<https://devfeed.tech/topics/real-time.md>), [Hardware](<https://devfeed.tech/topics/hardware.md>), [API](<https://devfeed.tech/topics/api.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-infrastructure](<https://devfeed.tech/tags/ai-infrastructure.md>), [api](<https://devfeed.tech/tags/api.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [code](<https://devfeed.tech/tags/code.md>), [compiler](<https://devfeed.tech/tags/compiler.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [generation](<https://devfeed.tech/tags/generation.md>), [google](<https://devfeed.tech/tags/google.md>), [hardware](<https://devfeed.tech/tags/hardware.md>), [model](<https://devfeed.tech/tags/model.md>), [optimization](<https://devfeed.tech/tags/optimization.md>), [performance](<https://devfeed.tech/tags/performance.md>), [pytorch](<https://devfeed.tech/tags/pytorch.md>), [real-time](<https://devfeed.tech/tags/real-time.md>), [streaming](<https://devfeed.tech/tags/streaming.md>), [time](<https://devfeed.tech/tags/time.md>), [tpu](<https://devfeed.tech/tags/tpu.md>), [transformers](<https://devfeed.tech/tags/transformers.md>), [video](<https://devfeed.tech/tags/video.md>)

### AI overview

HeyGen and Google Cloud describe porting the 18B+ parameter Avatar IV talking-head video generation pipeline to an eight-chip Trillium TPU host. Using torchax, JAX, XLA, FSDP sharding, Ulysses sequence parallelism, and custom Pallas kernels, the team improved performance by 1.86x for real-time chunked streaming while preserving output quality through strict quality gates.

### Source excerpt

HeyGen ported their 18B+ parameter Avatar IV video generation model to Google Cloud's Trillium (v6e) TPUs via torchax and XLA, utilizing FSDP and Ulysses sequence parallelism across an eight-chip mesh. To achieve a 1.86x speedup for real-time streaming, the engineering team pipelined exposed all-to-all collectives, aligned sparse attention block sizes to eliminate mask padding, and bypassed softmax serial dependencies using a precomputed Cauchy-Schwarz upper bound. These custom Pallas kernel and compiler optimizations were deployed only after passing rigorous two-tier quality gates to guarantee byte-identical or mathematically equivalent pixel outputs.

## Amlogic A123X and C305X2 Arm Cortex-A320 SoCs target industrial and low-power AIoT applications

DevFeed: [Amlogic A123X and C305X2 Arm Cortex-A320 SoCs target industrial and low-power AIoT applications](<https://devfeed.tech/articles/amlogic-a123x-and-c305x2-arm-cortex-a320-socs-target-industrial-and-low-power-aiot-applications-14039.md>)

Original publisher: [Read original article](<https://www.cnx-software.com/2026/09/11/amlogic-a123x-and-c305x2-arm-cortex-a320-socs-target-industrial-and-low-power-aiot-applications/>)

Author: Jean-Luc Aufranc (CNXSoft)

Published: 2026-09-11T03:13:41Z

Content type: news

Language: en

Sources: [CNX Software - Embedded Systems News](<https://devfeed.tech/sources/cnx-software-embedded-systems-news.md>)

Topics: [Arm](<https://devfeed.tech/topics/arm.md>), [cpu](<https://devfeed.tech/topics/cpu.md>), [Embedded Systems](<https://devfeed.tech/topics/embedded-systems.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Internet of things](<https://devfeed.tech/topics/iot.md>), [Hardware](<https://devfeed.tech/topics/hardware.md>), [object-detection](<https://devfeed.tech/topics/object-detection.md>), [Neural Network](<https://devfeed.tech/topics/neural-network.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>)

Tags: [aiot](<https://devfeed.tech/tags/aiot.md>), [amlogic](<https://devfeed.tech/tags/amlogic.md>), [arm](<https://devfeed.tech/tags/arm.md>), [armv9](<https://devfeed.tech/tags/armv9.md>), [camera](<https://devfeed.tech/tags/camera.md>), [computer-vision](<https://devfeed.tech/tags/computer-vision.md>), [cortex-a320](<https://devfeed.tech/tags/cortex-a320.md>), [edge-ai](<https://devfeed.tech/tags/edge-ai.md>), [embedded](<https://devfeed.tech/tags/embedded.md>), [ethernet](<https://devfeed.tech/tags/ethernet.md>), [h-264](<https://devfeed.tech/tags/h-264.md>), [hardware](<https://devfeed.tech/tags/hardware.md>), [iot](<https://devfeed.tech/tags/iot.md>), [linux](<https://devfeed.tech/tags/linux.md>), [llm](<https://devfeed.tech/tags/llm.md>), [low-power](<https://devfeed.tech/tags/low-power.md>), [neural](<https://devfeed.tech/tags/neural.md>), [npu](<https://devfeed.tech/tags/npu.md>), [object-detection](<https://devfeed.tech/tags/object-detection.md>), [processor](<https://devfeed.tech/tags/processor.md>), [security](<https://devfeed.tech/tags/security.md>), [soc](<https://devfeed.tech/tags/soc.md>)

### AI overview

Amlogic has announced the A123X quad-core and C305X2 dual-core Arm Cortex-A320 SoCs for industrial and battery-powered edge AI and IoT devices. The preliminary specifications include video encoding and decoding, NPUs, image signal processing, camera interfaces, networking, USB, and low-power features. The article notes that full specifications, block diagrams, and software details are not yet available.

### Source excerpt

Amlogic has unveiled the A123X quad-core and C305X2 dual-core Arm Cortex-A320 SoCs for industrial and battery-powered Edge AI and IoT applications such as robots, dashcams, IP cameras, video conferencing equipment, and so on. The Arm Cortex-A320 low-power Armv9 CPU core was introduced in February 2025, and Amlogic is the first silicon vendor to announce Cortex-A320 SoCs. Details are sparse, with no full specifications or block diagrams and limited software information, but let's see what we know so far. Amlogic A123X Amlogic A123X specifications: CPU - Quad-core Arm Cortex-A320 processor (Armv9.2-A, SVE2) GPU - None or not disclosed VPU H.264/H.265 encoding at 4K @ 60fps H.264/H.265 decoding at 4K @ 30fps AI 4 TOPS ADLA2 NPU for object detection and tracking CNN models 8 TOPS ADLA3 NPU supporting hardware-accelerated Transformer operations for ViT, LLM, etc. Neural network-based hardware SED engine for low-power audio event identification ISP - Low-light HDR ISP Supports [...] The post Amlogic A123X and C305X2 Arm Cortex-A320 SoCs target industrial and low-power AIoT applications appeared first on CNX Software - Embedded Systems News.

## 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...

## How we built a benchmarking framework to horizontally accelerate transaction model research

DevFeed: [How we built a benchmarking framework to horizontally accelerate transaction model research](<https://devfeed.tech/articles/how-we-built-a-benchmarking-framework-to-horizontally-accelerate-transaction-model-research-41434.md>)

Original publisher: [Read original article](<https://building.nu.com/how-we-built-a-benchmarking-framework-to-horizontally-accelerate-transaction-model-research/>)

Author: Nubank Editorial

Published: 2026-09-03T13:53:30Z

Content type: article

Language: en

Sources: [Nubank](<https://devfeed.tech/sources/nubank.md>)

Topics: [benchmarking](<https://devfeed.tech/topics/benchmarking.md>), [Benchmark](<https://devfeed.tech/topics/benchmark.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [scaling](<https://devfeed.tech/topics/scaling.md>), [data](<https://devfeed.tech/topics/data.md>), [experiments](<https://devfeed.tech/topics/experiments.md>)

Tags: [batch](<https://devfeed.tech/tags/batch.md>), [benchmarking](<https://devfeed.tech/tags/benchmarking.md>), [data-science-machine-learning](<https://devfeed.tech/tags/data-science-machine-learning.md>), [distributed](<https://devfeed.tech/tags/distributed.md>), [evaluation](<https://devfeed.tech/tags/evaluation.md>), [performance](<https://devfeed.tech/tags/performance.md>), [research](<https://devfeed.tech/tags/research.md>), [training](<https://devfeed.tech/tags/training.md>), [workflow](<https://devfeed.tech/tags/workflow.md>)

### AI overview

Nubank describes a benchmarking framework for horizontally evaluating transformer-based transaction representation models across more than 20 benchmarks. The automated, reproducible workflow tests data, architecture, and training changes across multiple tasks and trials, helping identify improvements that generalize. It increased the team's experimentation capacity to roughly five times more experiments per month.

### Source excerpt

The framework that transformed weeks of manual experimentation into automated pipelines for horizontal transaction model research The post How we built a benchmarking framework to horizontally accelerate transaction model research appeared first on Building Nubank.

## How we built a benchmarking framework to horizontally accelerate transaction model research

DevFeed: [How we built a benchmarking framework to horizontally accelerate transaction model research](<https://devfeed.tech/articles/how-we-built-a-benchmarking-framework-to-horizontally-accelerate-transaction-model-research-38850.md>)

Original publisher: [Read original article](<https://building.nubank.com/how-we-built-a-benchmarking-framework-to-horizontally-accelerate-transaction-model-research/>)

Author: Nubank Editorial

Published: 2026-09-03T13:53:30Z

Content type: article

Language: en

Sources: [Nubank](<https://devfeed.tech/sources/nubank.md>)

Topics: [benchmarking](<https://devfeed.tech/topics/benchmarking.md>), [Framework](<https://devfeed.tech/topics/framework.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [data](<https://devfeed.tech/topics/data.md>)

Tags: [architectures](<https://devfeed.tech/tags/architectures.md>), [automated](<https://devfeed.tech/tags/automated.md>), [benchmarking](<https://devfeed.tech/tags/benchmarking.md>), [data](<https://devfeed.tech/tags/data.md>), [data-science-machine-learning](<https://devfeed.tech/tags/data-science-machine-learning.md>), [experimentation](<https://devfeed.tech/tags/experimentation.md>), [framework](<https://devfeed.tech/tags/framework.md>), [model](<https://devfeed.tech/tags/model.md>), [performance](<https://devfeed.tech/tags/performance.md>), [pipelines](<https://devfeed.tech/tags/pipelines.md>), [training](<https://devfeed.tech/tags/training.md>)

### AI overview

Nubank built an automated benchmarking framework for horizontally evaluating transformer-based transaction representation models across multiple downstream tasks and trials. The framework made experimentation reproducible and statistically rigorous, helping the team identify improvements that generalize across applications. It increased the team's capacity to run experiments by roughly five times per month while reducing operational overhead.

### Source excerpt

The framework that transformed weeks of manual experimentation into automated pipelines for horizontal transaction model research The post How we built a benchmarking framework to horizontally accelerate transaction model research appeared first on Building Nubank.

## Backblaze Drive Stats: How an Open Dataset Powers Academic and AI/ML Research

DevFeed: [Backblaze Drive Stats: How an Open Dataset Powers Academic and AI/ML Research](<https://devfeed.tech/articles/backblaze-drive-stats-how-an-open-dataset-powers-academic-and-ai-ml-research-12319.md>)

Original publisher: [Read original article](<https://www.backblaze.com/blog/backblaze-drive-stats-academic-ai-ml-research/>)

Author: Stephanie Doyle

Published: 2026-08-13T15:08:38Z

Content type: article

Language: en

Sources: [Backblaze Blog | Cloud Storage & Cloud Backup](<https://devfeed.tech/sources/backblaze-blog-cloud-storage-cloud-backup.md>)

Topics: [dataset](<https://devfeed.tech/topics/dataset.md>), [DRIVE](<https://devfeed.tech/topics/drive.md>), [Machine learning](<https://devfeed.tech/topics/machine-learning.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [Disk image](<https://devfeed.tech/topics/disk-image.md>)

Tags: [ai-ml](<https://devfeed.tech/tags/ai-ml.md>), [articles](<https://devfeed.tech/tags/articles.md>), [b2cloud](<https://devfeed.tech/tags/b2cloud.md>), [cloud-storage](<https://devfeed.tech/tags/cloud-storage.md>), [data](<https://devfeed.tech/tags/data.md>), [drive](<https://devfeed.tech/tags/drive.md>), [featured](<https://devfeed.tech/tags/featured.md>), [featured-cloud-storage](<https://devfeed.tech/tags/featured-cloud-storage.md>), [hard-drive-stats](<https://devfeed.tech/tags/hard-drive-stats.md>), [ml](<https://devfeed.tech/tags/ml.md>), [research](<https://devfeed.tech/tags/research.md>), [source](<https://devfeed.tech/tags/source.md>), [storage](<https://devfeed.tech/tags/storage.md>)

### AI overview

The article explains how Backblaze Drive Stats evolved from an internal hard-drive reliability tool into an open dataset used in academic and AI/ML research. It describes the dataset's real-world scale, quarterly publication, SMART attributes, labeled failures, broad manufacturer coverage, and use in hard-drive failure prediction research.

### Source excerpt

Backblaze Drive Stats has been cited in more than 105 academic papers and AI/ML projects since 2018. Explore the research it powers and download the dataset. The post Backblaze Drive Stats: How an Open Dataset Powers Academic and AI/ML Research appeared first on Backblaze Blog | Cloud Storage & Cloud Backup

## Inside NVIDIA Rubin GPU Architecture: Powering the Era of Agentic AI

DevFeed: [Inside NVIDIA Rubin GPU Architecture: Powering the Era of Agentic AI](<https://devfeed.tech/articles/inside-nvidia-rubin-gpu-architecture-powering-the-era-of-agentic-ai-6863.md>)

Original publisher: [Read original article](<https://developer.nvidia.com/blog/inside-nvidia-rubin-gpu-architecture-powering-the-era-of-agentic-ai/>)

Author: Eduardo Alvarez

Published: 2026-07-21T18:15:00Z

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: [GPU](<https://devfeed.tech/topics/gpu.md>), [Nvidia](<https://devfeed.tech/topics/nvidia.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [Inference Performance](<https://devfeed.tech/topics/inference-performance.md>), [long-context](<https://devfeed.tech/topics/long-context.md>), [datacenter](<https://devfeed.tech/topics/datacenter.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [Deployment](<https://devfeed.tech/topics/deployment.md>)

Tags: [accelerate](<https://devfeed.tech/tags/accelerate.md>), [agentic](<https://devfeed.tech/tags/agentic.md>), [agentic-ai](<https://devfeed.tech/tags/agentic-ai.md>), [agentic-ai-generative-ai](<https://devfeed.tech/tags/agentic-ai-generative-ai.md>), [ai](<https://devfeed.tech/tags/ai.md>), [ai-agent](<https://devfeed.tech/tags/ai-agent.md>), [ai-factory](<https://devfeed.tech/tags/ai-factory.md>), [ai-inference](<https://devfeed.tech/tags/ai-inference.md>), [architecture](<https://devfeed.tech/tags/architecture.md>), [blackwell](<https://devfeed.tech/tags/blackwell.md>), [cache](<https://devfeed.tech/tags/cache.md>), [compute](<https://devfeed.tech/tags/compute.md>), [data-center](<https://devfeed.tech/tags/data-center.md>), [data-center-cloud](<https://devfeed.tech/tags/data-center-cloud.md>), [developer-tools-techniques](<https://devfeed.tech/tags/developer-tools-techniques.md>), [dsx](<https://devfeed.tech/tags/dsx.md>), [efficiency](<https://devfeed.tech/tags/efficiency.md>), [featured](<https://devfeed.tech/tags/featured.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [inference](<https://devfeed.tech/tags/inference.md>), [inference-performance](<https://devfeed.tech/tags/inference-performance.md>), [latency](<https://devfeed.tech/tags/latency.md>), [long-context](<https://devfeed.tech/tags/long-context.md>), [memory](<https://devfeed.tech/tags/memory.md>), [mixture-of-experts-moe](<https://devfeed.tech/tags/mixture-of-experts-moe.md>), [nvfp4](<https://devfeed.tech/tags/nvfp4.md>), [nvidia](<https://devfeed.tech/tags/nvidia.md>), [rubin-gpu](<https://devfeed.tech/tags/rubin-gpu.md>), [scale](<https://devfeed.tech/tags/scale.md>), [tensor-cores](<https://devfeed.tech/tags/tensor-cores.md>), [top-stories](<https://devfeed.tech/tags/top-stories.md>), [training](<https://devfeed.tech/tags/training.md>), [vera-rubin](<https://devfeed.tech/tags/vera-rubin.md>)

### AI overview

This article examines the NVIDIA Rubin GPU architecture and its co-designed Vera Rubin platform for agentic AI inference. It describes how Tensor Cores, HBM4 memory, the Transformer Engine, NVFP4 performance, cache, decoding, and scale-up systems address throughput, latency, long-context execution, and rack-scale deployment.

### Source excerpt

What began as discrete AI model training and human-facing chat interfaces has evolved into always-on AI factories dedicated to producing intelligence at scale....

## Personalizing Airbnb search by learning from the guest journey

DevFeed: [Personalizing Airbnb search by learning from the guest journey](<https://devfeed.tech/articles/personalizing-airbnb-search-by-learning-from-the-guest-journey-1219.md>)

Original publisher: [Read original article](<https://medium.com/airbnb-engineering/personalizing-airbnb-search-by-learning-from-the-guest-journey-bcefd1915624?source=rss----53c7c27702d5---4>)

Author: Daochen Zha

Published: 2026-07-21T17:01:04Z

Content type: article

Language: en

Sources: [The Airbnb Tech Blog - Medium](<https://devfeed.tech/sources/the-airbnb-tech-blog-medium.md>)

Topics: [Transformer](<https://devfeed.tech/topics/transformer.md>), [recommendation systems](<https://devfeed.tech/topics/recommendation-systems.md>), [Temporal data](<https://devfeed.tech/topics/temporal-data.md>), [Data Science](<https://devfeed.tech/topics/data-science.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [blog](<https://devfeed.tech/tags/blog.md>), [conversion](<https://devfeed.tech/tags/conversion.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [model](<https://devfeed.tech/tags/model.md>), [recommendation-system](<https://devfeed.tech/tags/recommendation-system.md>), [research](<https://devfeed.tech/tags/research.md>), [scale](<https://devfeed.tech/tags/scale.md>), [search](<https://devfeed.tech/tags/search.md>), [technology](<https://devfeed.tech/tags/technology.md>), [training](<https://devfeed.tech/tags/training.md>)

### AI overview

Airbnb describes a Transformer-based sequence model for personalizing search by encoding years of guest behavior, including listing views, bookings, reviews, and cancellations. The system learns richer representations of guest preferences to improve listing relevance and booking conversion while addressing very long, noisy event sequences and the cost of training on hundreds of millions of search-label pairs.

### Source excerpt

How we built a Transformer-based sequence model that encodes years of guest behavior to surface the right listings at the right time. By: Daochen Zha, Chun How Tan, Xin Liu, Bin Xu, Han Zhao, Xiaowei Liu, Jun Shi, Tracy Yu, Hui Gao, Huiji Gao, Liwei He, Michael Kinoti, Stephanie Moyerman, and Sanjeev Katariya Introduction Planning a trip on Airbnb rarely happens in a single session. A guest searching for a place to stay in San Francisco might browse dozens of listings over several days, leaving behind a trail of views. Typically, over a period of years, that same guest will have accumulated many previous bookings, reviews, and the occasional cancellation. Taken together, these events reveal a great deal about what that guest values in a stay. For years, Airbnb's search ranking captured this through hand-crafted features: aggregated statistics such as total past bookings or average listing price. These worked well, but as the feature count grew into the hundreds, the approach became harder to scale and increasingly limited in expressiveness. In this blog post, we describe how we built a sequence modeling system that encodes the full guest journey using a Transformer, learning richer representations of guest preferences to deliver more personalized search results. An example of a guest journey, which is typically long, exploratory, and complex.Challenges Event sequences per guest present three core challenges. First, they are dominated by listing views, which account for the vast majority of all events -- some guests accumulate hundreds of thousands of them -- making raw sequences computationally intractable to model directly. The distribution of event types, with the majority being listing views. Second, unlike social media platforms, which optimize for engagement, Airbnb optimizes for booking conversion. Bookings are rare, compared to events, and deliberate, whereas a listing view could reflect genuine intent or simply idle browsing. Building a model that generalizes

## Building a Transformer-Based Category Recommender at Thumbtack

DevFeed: [Building a Transformer-Based Category Recommender at Thumbtack](<https://devfeed.tech/articles/building-a-transformer-based-category-recommender-at-thumbtack-24722.md>)

Original publisher: [Read original article](<https://medium.com/thumbtack-engineering/building-a-transformer-based-category-recommender-at-thumbtack-83636da91317?source=rss----1199c607a13f---4>)

Author: Andrew Morss

Published: 2026-07-20T20:23:27Z

Content type: article

Language: en

Sources: [Thumbtack Engineering - Medium](<https://devfeed.tech/sources/thumbtack-engineering-medium.md>)

Topics: [recommendation systems](<https://devfeed.tech/topics/recommendation-systems.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [Machine learning](<https://devfeed.tech/topics/machine-learning.md>), [email](<https://devfeed.tech/topics/email.md>), [push-notification](<https://devfeed.tech/topics/push-notification.md>)

Tags: [catalog](<https://devfeed.tech/tags/catalog.md>), [data-science](<https://devfeed.tech/tags/data-science.md>), [email](<https://devfeed.tech/tags/email.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [model](<https://devfeed.tech/tags/model.md>), [push-notification](<https://devfeed.tech/tags/push-notification.md>), [recommendations](<https://devfeed.tech/tags/recommendations.md>), [recommender-systems](<https://devfeed.tech/tags/recommender-systems.md>), [torch](<https://devfeed.tech/tags/torch.md>)

### AI overview

This engineering article describes Thumbtack's category recommender, which selects home-service categories for push and email notifications. It explains how the system addresses popularity bias through negative sampling and how Thumbtack's small category catalog and sparse user activity shape the recommendation problem.

### Source excerpt

A look at compensating for popularity bias in recommender systems using negative sampling strategies By: Andrew Morss, Senior Applied Scientist Introduction A recommender system is a machine learning model that, given a user and a catalog of items, predicts which items that user is most likely to want. Recommenders set your YouTube playlist, determine what items Amazon suggests for you, push you songs on Spotify and customize your Steam store. If you're a homeowner, Thumbtack's recommender systems can suggest home projects for you such as house cleaning or lawn mowing. Thumbtack connects users with professionals spread across almost 500 different job categories. Job categories are a kind of occupational bucket that Thumbtack uses as a taxonomy to categorize local service professionals (pros). Pros have the opportunity to choose categories of jobs that they want to receive leads on; examples include things like "Electrical and Wiring Repair", "Local Moving" or "Snow Plowing". Thumbtack's Lifecycle marketing team uses a category recommender to choose which categories to surface to users in our push and email notifications. Choosing the right ones is critical. A well-chosen suggestion is how a customer starts a search for a new project, finds the right service professional, and ultimately gets work done. An example of a push notification and an in-email category recommendation. The Problem Space: Category Recommendation There are several features of category recommendations at Thumbtack that are fairly unique in the item recommender space. The number of categories that we have is relatively small (~500) compared to the number of items that are usually seen in recommender systems, which simplifies the problem considerably. Usually recommenders require a two stage approach where an initial, low compute, filtering stage reduces the number of items to some "candidate" list of items before a more complicated model ranks that smaller set of items. With a relatively small cat

## Exploring Hierarchical Interest Representation For Meta Ads Deep Funnel Optimization

DevFeed: [Exploring Hierarchical Interest Representation For Meta Ads Deep Funnel Optimization](<https://devfeed.tech/articles/exploring-hierarchical-interest-representation-for-meta-ads-deep-funnel-optimization-126.md>)

Original publisher: [Read original article](<https://engineering.fb.com/2026/07/15/ai-research/exploring-hierarchical-interest-representation-for-meta-ads-deep-funnel-optimization/>)

Author: Yuhui Ouyang; Di Wang; Sreedal Menon; Jie Tian

Published: 2026-07-15T17:00:52Z

Content type: article

Language: en

Sources: [Engineering at Meta](<https://devfeed.tech/sources/engineering-at-meta.md>), [Meta AI Research](<https://devfeed.tech/sources/meta-ai-research.md>)

Topics: [Optimization](<https://devfeed.tech/topics/optimization.md>), [Embeddings](<https://devfeed.tech/topics/embeddings.md>), [Graphs](<https://devfeed.tech/topics/graphs.md>), [recommendation systems](<https://devfeed.tech/topics/recommendation-systems.md>), [LLMs](<https://devfeed.tech/topics/llms.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [data](<https://devfeed.tech/topics/data.md>)

Tags: [ads](<https://devfeed.tech/tags/ads.md>), [ai](<https://devfeed.tech/tags/ai.md>), [ai-research](<https://devfeed.tech/tags/ai-research.md>), [data](<https://devfeed.tech/tags/data.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [frontier-ai](<https://devfeed.tech/tags/frontier-ai.md>), [generative](<https://devfeed.tech/tags/generative.md>), [learning](<https://devfeed.tech/tags/learning.md>), [meta](<https://devfeed.tech/tags/meta.md>), [optimization](<https://devfeed.tech/tags/optimization.md>), [personalization](<https://devfeed.tech/tags/personalization.md>), [reasoning](<https://devfeed.tech/tags/reasoning.md>), [research](<https://devfeed.tech/tags/research.md>), [retrieval](<https://devfeed.tech/tags/retrieval.md>), [scale](<https://devfeed.tech/tags/scale.md>)

### AI overview

Meta describes Hierarchical Interest Representation, an upstream system that learns unified embeddings for users, advertisers, products, and services. It combines graph learning, multimodal content processed through LLMs, engagement signals, and self-supervised distillation to improve personalization, retrieval, ranking, and deep-funnel advertising optimization.

### Source excerpt

Hierarchical Interest Representation is a research area for Meta Ads. We're exploring an upstream representation layer over the universe of Ads entities - users, advertisers, products, services - learning unified embeddings that connect users' inferred interests with the breadth of what advertisers offer in their deep funnel ads. The innovations in Hierarchical Interest Representation are [...] Read More... The post Exploring Hierarchical Interest Representation For Meta Ads Deep Funnel Optimization appeared first on Engineering at Meta.

## 🗓 This Week In AI Research (1-8 July 26)

DevFeed: [🗓 This Week In AI Research (1-8 July 26)](<https://devfeed.tech/articles/this-week-in-ai-research-1-8-july-26-18283.md>)

Original publisher: [Read original article](<https://www.intoai.pub/p/this-week-in-ai-research-1-8-july>)

Author: Dr. Ashish Bamania

Published: 2026-07-12T11:25:32Z

Content type: article

Language: en

Sources: [Into AI](<https://devfeed.tech/sources/into-ai.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [AI Research](<https://devfeed.tech/topics/ai-research.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [qwen](<https://devfeed.tech/topics/qwen.md>), [grpo](<https://devfeed.tech/topics/grpo.md>), [Algorithms](<https://devfeed.tech/topics/algorithms.md>), [releases](<https://devfeed.tech/topics/releases.md>)

Tags: [agentic](<https://devfeed.tech/tags/agentic.md>), [ai](<https://devfeed.tech/tags/ai.md>), [algorithm](<https://devfeed.tech/tags/algorithm.md>), [algorithms](<https://devfeed.tech/tags/algorithms.md>), [grpo](<https://devfeed.tech/tags/grpo.md>), [llm](<https://devfeed.tech/tags/llm.md>), [models](<https://devfeed.tech/tags/models.md>), [performance](<https://devfeed.tech/tags/performance.md>), [qwen](<https://devfeed.tech/tags/qwen.md>), [ranking](<https://devfeed.tech/tags/ranking.md>), [releases](<https://devfeed.tech/tags/releases.md>), [research](<https://devfeed.tech/tags/research.md>), [rl](<https://devfeed.tech/tags/rl.md>), [training](<https://devfeed.tech/tags/training.md>), [update](<https://devfeed.tech/tags/update.md>)

### AI overview

A weekly roundup of AI research papers and releases highlights findings that reinforcement-learning gains can be concentrated in a single transformer layer and presents LLM-as-a-Verifier, a framework for continuous scoring and ranking of agentic-task solutions.

### Source excerpt

The top 10 research papers and AI releases this week (SpaceXAI's Grok 4.5, OpenAI's GPT-Live voice models, Cognition's SWE-1.7, Meta's Muse Spark 1.1, and many more)

## Token efficiency: getting more signal into the context window

DevFeed: [Token efficiency: getting more signal into the context window](<https://devfeed.tech/articles/token-efficiency-getting-more-signal-into-the-context-window-4856.md>)

Original publisher: [Read original article](<https://redis.io/blog/token-efficiency-signal-context-window/>)

Author: Jim Allen Wallace

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

Content type: article

Language: en

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

Topics: [long-context](<https://devfeed.tech/topics/long-context.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Retrieval Augmented Generation (RAG)](<https://devfeed.tech/topics/retrieval-augmented-generation-rag.md>)

Tags: [agentic](<https://devfeed.tech/tags/agentic.md>), [context-window](<https://devfeed.tech/tags/context-window.md>), [efficiency](<https://devfeed.tech/tags/efficiency.md>), [generation](<https://devfeed.tech/tags/generation.md>), [hallucinations](<https://devfeed.tech/tags/hallucinations.md>), [llms](<https://devfeed.tech/tags/llms.md>), [rag](<https://devfeed.tech/tags/rag.md>), [reasoning](<https://devfeed.tech/tags/reasoning.md>), [tech-de](<https://devfeed.tech/tags/tech-de.md>), [tokens](<https://devfeed.tech/tags/tokens.md>), [transformers](<https://devfeed.tech/tags/transformers.md>)

### AI overview

This guide explains why adding more context can worsen model performance. It examines token efficiency, the "lost in the middle" effect, context rot, attention limits in transformers, and the gap between advertised and effective context windows, with implications for RAG and agentic systems.

### Source excerpt

You've probably hit this counterintuitive moment: you give your model more context to work with, expecting better answers, and the answers get worse. More tokens were supposed to mean more information, more grounding, fewer hallucinations. Instead, yo...

## GenPage: Towards End-to-End Generative Homepage Construction at Netflix

DevFeed: [GenPage: Towards End-to-End Generative Homepage Construction at Netflix](<https://devfeed.tech/articles/genpage-towards-end-to-end-generative-homepage-construction-at-netflix-136.md>)

Original publisher: [Read original article](<https://netflixtechblog.com/genpage-towards-end-to-end-generative-homepage-construction-at-netflix-77146fba8a08?source=rss----2615bd06b42e---4>)

Author: Netflix Technology Blog

Published: 2026-06-29T13: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>), [recommendation systems](<https://devfeed.tech/topics/recommendation-systems.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Machine learning](<https://devfeed.tech/topics/machine-learning.md>), [Reinforcement learning](<https://devfeed.tech/topics/reinforcement-learning.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [app](<https://devfeed.tech/tags/app.md>), [diversity](<https://devfeed.tech/tags/diversity.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [feature-engineering](<https://devfeed.tech/tags/feature-engineering.md>), [generation](<https://devfeed.tech/tags/generation.md>), [generative](<https://devfeed.tech/tags/generative.md>), [large-language-models](<https://devfeed.tech/tags/large-language-models.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [model](<https://devfeed.tech/tags/model.md>), [netflix](<https://devfeed.tech/tags/netflix.md>), [optimization](<https://devfeed.tech/tags/optimization.md>), [ranking](<https://devfeed.tech/tags/ranking.md>), [recommendation-system](<https://devfeed.tech/tags/recommendation-system.md>), [reinforcement-learning](<https://devfeed.tech/tags/reinforcement-learning.md>), [rl](<https://devfeed.tech/tags/rl.md>)

### AI overview

This Netflix developer article introduces GenPage, a generative approach that uses a single autoregressive model to construct a personalized homepage by generating recommendation rows, entities, and layout together. It describes replacing a multi-stage recommendation pipeline with end-to-end modeling and using reinforcement learning to optimize whole-page rewards, including interactions such as diversity and the balance between rows.

### Source excerpt

Authors: Lequn Wang, Jiangwei Pan, and Linas Baltrunas Figure 1. Autoregressive homepage generation. GenPage builds a Netflix homepage one row or entity at a time, each one conditioned on what's already on the page and the user's context.Introduction The Netflix homepage is the first thing users see when they open the app and the primary way they discover content to enjoy. Almost every part of it is personalized, including which rows appear, which entities show up within those rows, and how everything is arranged on the page. Constructing that homepage is a genuinely hard problem. It is not simply producing one ranked list. The homepage is a structured, two-dimensional layout, made up of recommendation rows and the entities within them. Here, an entity can be a movie, show, game, live event, or other recommendable item. Each choice can affect the value of the others. Traditionally, it is built through a complex, multi-stage pipeline, with separate components for candidate generation and ranking at both the row and entity levels. We saw an opportunity to rethink this design. Large language models have shown that a single generative model can perform diverse tasks just by generating a response to a prompt. Inspired by this prompt-response paradigm, we trained a single generative model to build the homepage by directly answering one question: Given everything we know about this user and this request, what homepage should we generate to maximize user satisfaction? We call this approach GenPage. It treats the user history and request context as the prompt, and autoregressively generates the entire homepage as the response (Figure 1). Unlike most generative recommenders, such as TIGER, HSTU, and OneRec, which generate flat ranked lists, GenPage generates the rows, entities, and layout together. This shift is motivated by several goals: End-to-end modeling. A single transformer model that constructs the page from raw input signals can replace a complex multi-stage recommen

## LLMs: The Essential Guide

DevFeed: [LLMs: The Essential Guide](<https://devfeed.tech/articles/llms-the-essential-guide-18030.md>)

Original publisher: [Read original article](<https://blog.levelupcoding.com/p/llms-the-essential-guide>)

Author: Nikki Siapno

Published: 2026-06-26T14:44:38Z

Content type: tutorial

Language: en

Sources: [Level Up Coding System Design Newsletter](<https://devfeed.tech/sources/level-up-coding-system-design-newsletter.md>)

Topics: [Large Language Model](<https://devfeed.tech/topics/llm.md>), [systems](<https://devfeed.tech/topics/systems.md>), [tokenization](<https://devfeed.tech/topics/tokenization.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [distributed-systems](<https://devfeed.tech/topics/distributed-systems.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [Embeddings](<https://devfeed.tech/topics/embeddings.md>)

Tags: [embeddings](<https://devfeed.tech/tags/embeddings.md>), [guide](<https://devfeed.tech/tags/guide.md>), [inference](<https://devfeed.tech/tags/inference.md>), [latency](<https://devfeed.tech/tags/latency.md>), [llm](<https://devfeed.tech/tags/llm.md>), [llms](<https://devfeed.tech/tags/llms.md>), [tokenization](<https://devfeed.tech/tags/tokenization.md>), [transformers](<https://devfeed.tech/tags/transformers.md>)

### AI overview

This guide explains LLMs as distributed systems with layers including models, training pipelines, retrieval, inference infrastructure, safety layers, and product experience. It introduces how tokenization and Transformer architectures work, and connects system layers to debugging, scaling, latency, hallucinations, context loss, and cost.

### Source excerpt

Most engineers only see the API layer. Here's what's happening underneath.

## From Scoring to Spelling: Rebuilding Ads Retrieval at Instacart

DevFeed: [From Scoring to Spelling: Rebuilding Ads Retrieval at Instacart](<https://devfeed.tech/articles/from-scoring-to-spelling-rebuilding-ads-retrieval-at-instacart-20105.md>)

Original publisher: [Read original article](<https://tech.instacart.com/from-scoring-to-spelling-rebuilding-ads-retrieval-at-instacart-cf36b4e8d1bb?source=rss----587883b5d2ee---4>)

Author: Karuna Ahuja

Published: 2026-06-02T18:50:19Z

Content type: article

Language: en

Sources: [Instacart](<https://devfeed.tech/sources/instacart.md>)

Topics: [Transformer](<https://devfeed.tech/topics/transformer.md>), [recommendations](<https://devfeed.tech/topics/recommendations.md>), [systems](<https://devfeed.tech/topics/systems.md>), [context](<https://devfeed.tech/topics/context.md>), [real-time](<https://devfeed.tech/topics/real-time.md>)

Tags: [bert](<https://devfeed.tech/tags/bert.md>), [context](<https://devfeed.tech/tags/context.md>), [generative](<https://devfeed.tech/tags/generative.md>), [inference](<https://devfeed.tech/tags/inference.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [model](<https://devfeed.tech/tags/model.md>), [real-time](<https://devfeed.tech/tags/real-time.md>), [recommendation-system](<https://devfeed.tech/tags/recommendation-system.md>), [recommendations](<https://devfeed.tech/tags/recommendations.md>), [retrieval](<https://devfeed.tech/tags/retrieval.md>)

### AI overview

Instacart describes rebuilding its ads retrieval system by moving from a product-scoring encoder to a generative model that predicts product IDs token by token. The system uses contextual shopping sessions and a BERT-like transformer to retrieve sponsored and organic recommendations.

### Source excerpt

Key Contributors: Karuna Ahuja, Marko Avdalovic, Soroush Sobhkhiz, Shrikar Archak, Xiyu Wang, Ji Chao Zhang, Hao Yan Introduction Every time a user opens Instacart, they see product recommendations: on the retailer home page, in search results, and alongside their cart. Many of these recommendations are sponsored products surfaced by a retrieval model that decides which products to show from a vast ads product catalog. A relevant ad helps users discover products they didn't know they needed; a less relevant one generates friction. Two years ago, we introduced Contextual Recommendations (CR), a BERT-based sequence model powering retrieval for both ads and organic recommendations across all major browse surfaces. In this post, we'll focus on our ads retrieval. We will detail how we rebuilt the system, by moving from an encoder that scores products to a generative model that spells them out, token by token. By doing so, we unlocked a new level of contextual matching -- ensuring brands appear exactly when users want them, while simultaneously opening up discovery of thousands of relevant products the previous system couldn't retrieve. Contextual Recommendations: A recap At its core, CR treats grocery shopping as a language modeling task, where atomic product IDs function as tokens and, the finite subset of the catalog it is trained on, acts as its 'vocabulary'. The model leverages the user's real-time session, which includes product views, item page visits, and cart additions, as a sequence of these product tokens. A BERT-like transformer is then trained on millions of authentic shopping sessions to predict the next token (i.e. singular product) in the sequence. This process allows the model to learn and capture complex purchasing patterns, such as the tendency for users who add pasta and olive oil to frequently add garlic next. This single retrieval layer replaced multiple ad-hoc systems and powers recommendation carousels across all major browse surfaces, serving both

## Physics AI research that's shaping the industry.

DevFeed: [Physics AI research that's shaping the industry.](<https://devfeed.tech/articles/physics-ai-research-that-s-shaping-the-industry-7102.md>)

Original publisher: [Read original article](<https://mistral.ai/news/physics-ai-research/>)

Published: 2026-05-27T12:00:05Z

Content type: news

Language: en

Sources: [Mistral AI Blog](<https://devfeed.tech/sources/mistral-ai-blog.md>)

Topics: [AI Research](<https://devfeed.tech/topics/ai-research.md>), [Physics-guided deep learning](<https://devfeed.tech/topics/physics-guided-deep-learning.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [data](<https://devfeed.tech/topics/data.md>), [datasets](<https://devfeed.tech/topics/datasets.md>), [AI Foundation Models](<https://devfeed.tech/topics/ai-foundation-models.md>), [GPU](<https://devfeed.tech/topics/gpu.md>), [Machine learning](<https://devfeed.tech/topics/machine-learning.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-research](<https://devfeed.tech/tags/ai-research.md>), [data](<https://devfeed.tech/tags/data.md>), [datasets](<https://devfeed.tech/tags/datasets.md>), [deep-learning](<https://devfeed.tech/tags/deep-learning.md>), [design](<https://devfeed.tech/tags/design.md>), [energy](<https://devfeed.tech/tags/energy.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [industry](<https://devfeed.tech/tags/industry.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [models](<https://devfeed.tech/tags/models.md>), [performance](<https://devfeed.tech/tags/performance.md>), [physics](<https://devfeed.tech/tags/physics.md>), [real-time](<https://devfeed.tech/tags/real-time.md>), [research](<https://devfeed.tech/tags/research.md>)

### AI overview

Mistral describes its acquisition of Emmi AI and its focus on Physics AI for industrial engineering. The article surveys published work on CFD, neural surrogates, foundation models, datasets, plasma turbulence, and real-time industrial simulation across aerospace, automotive, semiconductors, and energy.

### Source excerpt

Published breakthroughs pushing the state of the art.

## Introducing the Ettin Reranker Family

DevFeed: [Introducing the Ettin Reranker Family](<https://devfeed.tech/articles/introducing-the-ettin-reranker-family-7186.md>)

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

Author: Tom Aarsen

Published: 2026-05-19T00: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>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [long-context](<https://devfeed.tech/topics/long-context.md>), [Agent Skill](<https://devfeed.tech/topics/agent-skill.md>)

Tags: [ai-coding](<https://devfeed.tech/tags/ai-coding.md>), [community](<https://devfeed.tech/tags/community.md>), [long-context](<https://devfeed.tech/tags/long-context.md>), [nlp](<https://devfeed.tech/tags/nlp.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [ranking](<https://devfeed.tech/tags/ranking.md>), [research](<https://devfeed.tech/tags/research.md>), [retrieval](<https://devfeed.tech/tags/retrieval.md>), [sentence-transformers](<https://devfeed.tech/tags/sentence-transformers.md>)

### AI overview

The article introduces six Sentence Transformers CrossEncoder rerankers built on Ettin ModernBERT encoders. It explains their distillation-based training, retrieval-then-rerank usage, quality and cost trade-offs, and support for up to 8K tokens of context.

### Source excerpt

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

## LLM 训练与推理的基本理解

DevFeed: [LLM 训练与推理的基本理解](<https://devfeed.tech/articles/llm-40974.md>)

Original publisher: [Read original article](<https://blog.joway.io/posts/deep-into-llm/>)

Author: Joway

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

Content type: tutorial

Language: zh

Sources: [Random Thoughts](<https://devfeed.tech/sources/random-thoughts.md>)

Topics: [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Language models](<https://devfeed.tech/topics/language-models.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>)

Tags: [embedding](<https://devfeed.tech/tags/embedding.md>), [encoding](<https://devfeed.tech/tags/encoding.md>), [language](<https://devfeed.tech/tags/language.md>), [large-language-model](<https://devfeed.tech/tags/large-language-model.md>), [llm](<https://devfeed.tech/tags/llm.md>), [model](<https://devfeed.tech/tags/model.md>), [query](<https://devfeed.tech/tags/query.md>), [tech](<https://devfeed.tech/tags/tech.md>), [token](<https://devfeed.tech/tags/token.md>), [value](<https://devfeed.tech/tags/value.md>)

### AI overview

This Chinese tutorial explains foundational LLM training and inference concepts, including vector operations, linear layers, Softmax, LayerNorm, tokenization, token IDs, BPE, token and positional embeddings, and the initial steps of self-attention using Q, K, and V vectors.

### Source excerpt

学习一个技术最好的方式就是能够写一片文章把这个技术的原理解释清楚，本文记录了我在阅读 《Build a Large Language Model (From Scratch)》一书以及和 Claude Code 对话过程中的笔记，仅供参考。 术语解释 向量点积 定义：向量点积为标量 a = (a1, a2, a3) b = (b1, b2, b3) a - b = a1*b1 + a2*b2 + a3*b3 几何意义： a - b = |a| |b| cos(theta) 其中 theta 是两个向量的夹角。

## A guide to Transformer architecture in modern language models

DevFeed: [A guide to Transformer architecture in modern language models](<https://devfeed.tech/articles/a-deep-dive-into-the-transformer-architecture-33578.md>)

Original publisher: [Read original article](<https://blog.algomaster.io/p/transformer-architecture>)

Author: Ashish Pratap Singh

Published: 2026-05-14T04:15:11Z

Content type: tutorial

Language: en

Sources: [AlgoMaster Newsletter](<https://devfeed.tech/sources/algomaster-newsletter.md>)

Topics: [Transformer architecture](<https://devfeed.tech/topics/transformer-architecture.md>), [LLMs](<https://devfeed.tech/topics/llms.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>)

Tags: [architecture-pattern](<https://devfeed.tech/tags/architecture-pattern.md>), [better](<https://devfeed.tech/tags/better.md>), [deep-dive](<https://devfeed.tech/tags/deep-dive.md>), [layer](<https://devfeed.tech/tags/layer.md>), [llms](<https://devfeed.tech/tags/llms.md>), [model](<https://devfeed.tech/tags/model.md>), [parallel](<https://devfeed.tech/tags/parallel.md>), [performance](<https://devfeed.tech/tags/performance.md>), [semantics](<https://devfeed.tech/tags/semantics.md>), [sequence](<https://devfeed.tech/tags/sequence.md>), [syntax](<https://devfeed.tech/tags/syntax.md>), [tokens](<https://devfeed.tech/tags/tokens.md>), [transformer-architecture](<https://devfeed.tech/tags/transformer-architecture.md>), [transformers](<https://devfeed.tech/tags/transformers.md>)

### AI overview

This tutorial explains the Transformer architecture, including its original encoder-decoder design for translation and the decoder-only variant used for modern language generation. It describes decoder components such as masked multi-head self-attention, feed-forward networks, layer normalization, and residual connections, and introduces the Pre-LayerNorm pattern.

### Source excerpt

A single 2017 research paper changed the future of AI forever and gave rise to multiple unicorn companies.

## AlphaEvolve: How our Gemini-powered coding agent is scaling impact across fields

DevFeed: [AlphaEvolve: How our Gemini-powered coding agent is scaling impact across fields](<https://devfeed.tech/articles/alphaevolve-how-our-gemini-powered-coding-agent-is-scaling-impact-across-fields-6137.md>)

Original publisher: [Read original article](<https://deepmind.google/blog/alphaevolve-impact/>)

Author: AlphaEvolve team

Published: 2026-05-06T10:43:49Z

Content type: article

Language: en

Sources: [Google DeepMind News](<https://devfeed.tech/sources/google-deepmind-news.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [coding](<https://devfeed.tech/topics/coding.md>), [Google](<https://devfeed.tech/topics/google.md>), [Optimization](<https://devfeed.tech/topics/optimization.md>), [AI Infrastructure](<https://devfeed.tech/topics/ai-infrastructure.md>), [Cache](<https://devfeed.tech/topics/cache.md>), [Hardware](<https://devfeed.tech/topics/hardware.md>), [Inference](<https://devfeed.tech/topics/inference.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [Compiler](<https://devfeed.tech/topics/compiler.md>), [AI Platform](<https://devfeed.tech/topics/ai-platform.md>), [Algorithms, Complexity](<https://devfeed.tech/topics/algorithms-complexity.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-infrastructure](<https://devfeed.tech/tags/ai-infrastructure.md>), [algorithms](<https://devfeed.tech/tags/algorithms.md>), [coding](<https://devfeed.tech/tags/coding.md>), [efficiency](<https://devfeed.tech/tags/efficiency.md>), [gemini](<https://devfeed.tech/tags/gemini.md>), [generation](<https://devfeed.tech/tags/generation.md>), [google](<https://devfeed.tech/tags/google.md>), [hardware](<https://devfeed.tech/tags/hardware.md>), [inference](<https://devfeed.tech/tags/inference.md>), [optimization](<https://devfeed.tech/tags/optimization.md>), [science](<https://devfeed.tech/tags/science.md>)

### AI overview

AlphaEvolve, a Gemini-powered coding agent, has moved beyond pilot testing into Google's core infrastructure. It is being used to optimize TPU design, cache replacement policies, Google Spanner compaction, and compiler strategies, while also improving training, inference, simulations, routing, and model optimization across commercial and scientific applications.

### Source excerpt

Explore how AlphaEvolve's Gemini-powered algorithms are driving impact across business, infrastructure, and science.

## Introducing NVIDIA Nemotron 3 Nano Omni: Long-Context Multimodal Intelligence for Documents, Audio and Video Agents

DevFeed: [Introducing NVIDIA Nemotron 3 Nano Omni: Long-Context Multimodal Intelligence for Documents, Audio and Video Agents](<https://devfeed.tech/articles/introducing-nvidia-nemotron-3-nano-omni-long-context-multimodal-intelligence-for-documents-audio-and-video-agents-7395.md>)

Original publisher: [Read original article](<https://huggingface.co/blog/nvidia/nemotron-3-nano-omni-multimodal-intelligence>)

Author: Tuomas Rintamaki; Amala Sanjay Deshmukh; Nabin Mulepati; Collin McCarthy; Pritam Biswas; Arushi Goel; Alexandre Milesi; Danial Mohseni Taheri; Kateryna Chumachenko; Isabel Hulseman; Zhehuai Chen; Kara

Published: 2026-04-28T15:58:57Z

Content type: article

Language: en

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

Topics: [multimodal](<https://devfeed.tech/topics/multimodal.md>), [Nemotron](<https://devfeed.tech/topics/nemotron.md>), [long-context](<https://devfeed.tech/topics/long-context.md>), [asr](<https://devfeed.tech/topics/asr.md>), [computer-use](<https://devfeed.tech/topics/computer-use.md>), [Mamba](<https://devfeed.tech/topics/mamba.md>), [model architecture](<https://devfeed.tech/topics/model-architecture.md>), [moe](<https://devfeed.tech/topics/moe.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>), [Nvidia](<https://devfeed.tech/topics/nvidia.md>), [Reinforcement learning](<https://devfeed.tech/topics/reinforcement-learning.md>), [NVFP4](<https://devfeed.tech/topics/nvfp4.md>)

Tags: [alternatives](<https://devfeed.tech/tags/alternatives.md>), [analysis](<https://devfeed.tech/tags/analysis.md>), [architecture](<https://devfeed.tech/tags/architecture.md>), [benchmarks](<https://devfeed.tech/tags/benchmarks.md>), [computer-use](<https://devfeed.tech/tags/computer-use.md>), [efficiency](<https://devfeed.tech/tags/efficiency.md>), [long-context](<https://devfeed.tech/tags/long-context.md>), [models](<https://devfeed.tech/tags/models.md>), [multimodal](<https://devfeed.tech/tags/multimodal.md>), [nemotron](<https://devfeed.tech/tags/nemotron.md>), [nvidia](<https://devfeed.tech/tags/nvidia.md>), [optimization](<https://devfeed.tech/tags/optimization.md>), [reasoning](<https://devfeed.tech/tags/reasoning.md>), [reinforcement-learning](<https://devfeed.tech/tags/reinforcement-learning.md>), [speed](<https://devfeed.tech/tags/speed.md>)

### AI overview

NVIDIA introduces Nemotron 3 Nano Omni, an omni-modal model for document analysis, image reasoning, speech recognition, long audio-video understanding, computer use, and general reasoning. It combines a hybrid Mamba-Transformer Mixture-of-Experts backbone with vision and audio encoders, supports long multimodal contexts, and reports strong benchmark accuracy, throughput, reasoning speed, and system efficiency.

### Source excerpt

Introducing NVIDIA Nemotron 3 Nano Omni: Long-Context Multimodal Intelligence for Documents, Audio and Video Agents - NVIDIA Nemotron 3 Nano Omni is a new omni-modal understanding model built for real-world document analysis, multiple image reasoning, automatic speech recognition, long audio-video understanding, agentic computer use, and general reasoning. - It extends the Nemotron multimodal line from a strong vision-language system to a broader text + image + video + audio model.

## Diffusion LLMs, Explained Simply

DevFeed: [Diffusion LLMs, Explained Simply](<https://devfeed.tech/articles/diffusion-llms-explained-simply-18354.md>)

Original publisher: [Read original article](<https://levelup.gitconnected.com/diffusion-llms-explained-simply-4dba963911c3?source=rss-f10e9a50984a------2>)

Author: Dr. Ashish Bamania

Published: 2026-04-24T14:23:01Z

Content type: tutorial

Language: en

Sources: [Dr. Ashish Bamania](<https://devfeed.tech/sources/dr-ashish-bamania.md>)

Topics: [Large Language Model](<https://devfeed.tech/topics/llm.md>), [text-generation](<https://devfeed.tech/topics/text-generation.md>), [Transformer](<https://devfeed.tech/topics/transformer.md>)

Tags: [artificial-intelligence](<https://devfeed.tech/tags/artificial-intelligence.md>), [data-science](<https://devfeed.tech/tags/data-science.md>), [diffusion](<https://devfeed.tech/tags/diffusion.md>), [introduction](<https://devfeed.tech/tags/introduction.md>), [llms](<https://devfeed.tech/tags/llms.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [programming](<https://devfeed.tech/tags/programming.md>), [technology](<https://devfeed.tech/tags/technology.md>), [text-generation](<https://devfeed.tech/tags/text-generation.md>), [tokens](<https://devfeed.tech/tags/tokens.md>)

### AI overview

An introductory explanation of diffusion large language models, contrasting them with autoregressive Transformer-based chatbots that generate responses sequentially, one token at a time.

### Source excerpt

A gentle but comprehensive introduction to Diffusion LLMs. Continue reading on Level Up Coding "

[Next page](<https://devfeed.tech/topics/transformer.md?cursor=WyIyMDI2LTA0LTI0VDE0OjIzOjAxKzAwOjAwIiwgIjdkZGFlYmVjLWUxMzgtNDM1MC04ODQ0LTVjMWFhNmRkNTAyMSJd>)