Tech News
Все новости AI & ML Architecture DevOps Open Source Programming Team Management Testing & QA Web

Последние новости

⚑ Сообщить о проблеме

Tech news from the best sources

Все темы AI Gear News Tech agents ai api architecture automation beginners career database devchallenge devops javascript llm machinelearning mcp opensource performance productivity programming python react security showdev testing tutorial typescript webdev
Все EN RU
EN

GPU-Accelerating MSCRED with CUDA, im2col, GEMM, and a Custom PyTorch Extension

Introduction During my M.Tech in Data Science and Artificial Intelligence at IIT Bhilai (2021–2023), I conducted thesis research on multivariate tim…

pytorchcudamachinelearningperformance
Dev.to Aug 5, 2026, 09:00 UTC
EN

Your quantized model got worse, and nothing told you

Getting a model onto a phone means exporting it, and almost always quantizing it. Both of those change the numbers. Everyone knows that part. What g…

flutterdartmachinelearningpytorch
Dev.to Aug 2, 2026, 15:14 UTC
EN

I Trained a 6.4M-Parameter Transformer From Scratch to Talk About Recipes

Every LLM-powered app I'd built up to this point followed the same recipe (pun intended): call an API, write a good prompt, wrap it in a nice UI. Th…

machinelearningpytorchllmpython
Dev.to Jul 25, 2026, 18:42 UTC
EN

Running Qwen3 Through the ExecuTorch MLX Delegate: Up to 4.52x Faster on M1 Max

Hello, everyone. There are now many ways to run an LLM on a Mac, but exporting a PyTorch model for Apple Silicon and executing it in a lightweight r…

pythonpytorchllmapplesilicon
Dev.to Jul 22, 2026, 03:57 UTC
EN

Testing PyTorch 2.13 MPS FlexAttention on M1 Max: Up to 7.83x Faster for Sparse Attention

Hello, everyone. Attention becomes expensive very quickly as more text is given to an AI model. Can a Mac GPU make it faster when every token is res…

pythonpytorchmachinelearningapplesilicon
Dev.to Jul 21, 2026, 04:03 UTC
EN

What Does `unsqueeze` Do in PyTorch? (And Why Your Model Keeps Asking For It)

You passed a single image to your model and got ValueError: expected 4D input (got 3D input) . Someone on Stack Overflow said "just add .unsqueeze(0…

pytorchpythonbeginnersdeeplearning
Dev.to Jul 19, 2026, 11:03 UTC
EN

Debugging a Python "Memory Leak" That Was Actually a Measurement Bug (ru_maxrss vs VmRSS)

I was running a pipeline for building a RAG knowledge base: crawl web articles, split them into chunks, create embeddings, and push them into Qdrant…

pythondebuggingpytorchrag
Dev.to Jul 9, 2026, 15:24 UTC
EN

Classifier-free guidance above 7.5 oversaturated our product renders

TL;DR: Classifier-free guidance above a scale of ~7.5 pushed our SDXL product renders into oversaturation and clipped highlights. Adding CFG rescale…

machinelearningcomputervisionpytorch
Dev.to Jun 26, 2026, 05:36 UTC
EN

Channels-last memory format cut our conv backbone latency 22%

TL;DR: Switching our convolutional segmentation backbone to PyTorch's channels-last memory format cut inference latency by about 22% on A100s, with…

pytorchcomputervisionmachinelearningmlops
Dev.to Jun 24, 2026, 05:36 UTC
EN

The SDXL VAE overflow that decoded black images in fp16

TL;DR: The SDXL VAE decoder pushes activations past 65504, the max value fp16 can hold, so the last decode step overflows to inf and you get a fully…

pytorchcomputervisionmachinelearningmlops
Dev.to Jun 23, 2026, 05:37 UTC
EN

Speculative decoding shifted our output distribution and evals missed it

TL;DR: We turned on speculative decoding in vLLM to cut latency on a fine-tuned 8B. Got a 1.9x throughput win. Three weeks later a customer flagged…

machinelearningllmmlopspytorch
Dev.to Jun 18, 2026, 06:31 UTC
EN

Winograd convolutions cost us 2 mAP and we didn't notice for a month

TL;DR: We turned on Winograd convolution to shave latency off a pedestrian detector running on a Cortex-A53, got a clean 18% speedup, and silently l…

computervisionpytorchmachinelearningmlops
Dev.to Jun 17, 2026, 07:22 UTC
EN

PyTorch from Scratch — Part 1: Tensors, Gradients & Activations

Most people use PyTorch without really knowing what's happening underneath. This series breaks the foundations down into the simplest possible expla…

pytorchpythondeeplearningbeginners
Dev.to Jun 6, 2026, 14:19 UTC
EN

Why JAX Is a Much Better Backend for Quantum Circuit Simulation Than PyTorch

Modern quantum circuit simulation is not just “machine learning with complex tensors.” It involves irregular tensor contractions, sparse operators,…

jaxpytorch
Dev.to Jun 6, 2026, 05:01 UTC
EN

AI Coding Tools for Machine Learning Engineers in 2026: Jupyter, PyTorch, and the CUDA Trap

This article was originally published on aicoderscope.com ML engineers aren't software engineers who happen to write some Python. They live in noteb…

machinelearningjupyterpytorchcursor
Dev.to Jun 2, 2026, 16:36 UTC
EN

Our event-camera detector lost 6 mAP to a badly chosen accumulation window

TL;DR: We spent three weeks chasing a 6 mAP regression in an event-camera object detector. The model was fine. The bug was the accumulation window w…

computervisionmachinelearningpytorchmlops
Dev.to Jun 1, 2026, 07:21 UTC
EN

From Bayesian to deep knowledge tracing — upgrading NumPath's student model with a PyTorch LSTM

BKT told us how well a student knows subtraction-with-borrowing. It had no idea that a student who reverses digits on subtraction problems probably…

numpathadaptivelearningpytorchpython
Dev.to Jun 1, 2026, 02:26 UTC
EN

QAT vs PTQ on our edge vision model: 6 months of A/B data

TL;DR: We ran post-training quantisation (PTQ) and quantisation-aware training (QAT) side by side on the same defect-classification model deployed o…

machinelearningcomputervisionmlopspytorch
Dev.to May 28, 2026, 07:21 UTC
EN

LLM-as-judge variance broke our DPO training signal for 3 weeks

TL;DR: Our DPO pipeline used a single LLM as the preference judge. Training reward climbed every run. Production accuracy fell 4 points. The judge w…

machinelearningmlopsllmpytorch
Dev.to May 27, 2026, 06:31 UTC
EN

The bf16 grad accumulator that killed our SDXL LoRA training

TL;DR: Our SDXL LoRA fine-tune for a Photoroom product photography model trained for six days while silently corrupting its adapter weights. The cau…

machinelearningpytorchmlopscomputervision
Dev.to May 27, 2026, 05:37 UTC
EN

Prefix caching in vLLM under multi-tenant agent traffic

TL;DR: We turned on vLLM's prefix cache for our agent workloads at Nexus Labs and watched TTFT drop from 480ms to 110ms on one tenant and stay exact…

llmmlopsinfrastructurepytorch
Dev.to May 26, 2026, 06:35 UTC
EN

I Built a Diagnostic Toolkit for PyTorch Because I Was Tired of Guessing Why Models Fail

Every time a PyTorch model refuses to learn, the debugging process looks the same: Stare at the loss curve Wonder if gradients are flowing Add print…

pytorchpythonmachinelearningopensource
Dev.to May 26, 2026, 03:31 UTC
EN

Why Your PyTorch Training Crawls on a Beefy GPU (And How to Fix It)

Last month I was helping a friend debug a training loop that was running at maybe 15% GPU utilization on an A100. Fifteen percent. On a card that co…

pytorchperformancemachinelearninggpu
Dev.to May 24, 2026, 22:36 UTC
EN

Why your diffusion model is slow at batch size 1 (and what actually helps)

TL;DR: Single-image diffusion inference is bottlenecked by kernel launch overhead and attention memory traffic, not raw FLOPs. torch.compile with mo…

machinelearningpytorchcomputervisionmlops
Dev.to May 19, 2026, 05:37 UTC
EN

DDP Is Not Always Faster

That is the result of this experiment, and it is the most important thing to understand about distributed training before you reach for it. I ran my…

pythonaipytorchmachinelearning
Dev.to May 16, 2026, 12:11 UTC

© Tech News — Агрегатор новостей

English Русский
Карта сайта Правовая информация Конфиденциальность Условия использования Авторские права / Удаление Контакт DSA

Выход с сайта

Вы собираетесь открыть внешний сайт:

Продолжить →