pytorch

Tag

Cards List
#pytorch

SOLAR: AI-Powered Speed-of-Light Performance Analysis

arXiv cs.LG · 10h ago Cached

SOLAR is a framework that automatically derives validated speed-of-light performance bounds from PyTorch and JAX source code using an LLM frontend and deterministic analysis, enabling headroom analysis and optimization insights for deep learning workloads.

0 favorites 0 likes
#pytorch

Kuma: compiling PyTorch models into self-contained WebGPU executables [P]

Reddit r/MachineLearning · 18h ago

Kuma is a compiler/runtime that compiles exported PyTorch models into self-contained WebGPU executables, enabling direct browser inference without Python or server dependencies.

0 favorites 0 likes
#pytorch

@PyTorch: One runtime, multiple GPU architectures, and zero vendor-specific model code. In this blog post, the TokenSpeed team @l…

X AI KOLs Following · 23h ago Cached

TokenSpeed-Kernel is a portable, high-performance kernel system for LLM inference that enables zero vendor-specific model code and supports multiple GPU architectures, achieving up to 3.6x higher throughput on AMD MI355X.

0 favorites 0 likes
#pytorch

@PyTorch: Two days. Hundreds of #AI practitioners. One community. #PyTorchCon North America is coming to San Jose, California, Oc…

X AI KOLs Following · 2d ago Cached

PyTorchCon North America will take place in San Jose, California on October 20-21, 2026, with early bird registration available until July 31.

0 favorites 0 likes
#pytorch

The annotated PyTorch training loop

Hacker News Top · 3d ago Cached

A detailed guide to building a correct PyTorch training loop, highlighting common mistakes and proper ordering of operations.

0 favorites 0 likes
#pytorch

Data-centric debugging for teams training neural nets [P]

Reddit r/MachineLearning · 4d ago

WeightsLab is an open-source, PyTorch-native tool that allows teams to pause training, inspect live loss signals, and catch data issues like mislabels and class imbalance before they affect model performance. It is designed for computer vision engineers working with images, videos, and LiDAR point clouds.

0 favorites 0 likes
#pytorch

Studying FLUX in diffusers library was hard, so I built a smaller open-source version [P]

Reddit r/MachineLearning · 5d ago Cached

A simplified open-source PyTorch implementation of FLUX diffusion transformers with verifiable line-by-line source mappings, designed for educational purposes.

0 favorites 0 likes
#pytorch

@PierceZhang34: A Machine Learning Systems Notes Repo on GitHub — The author has deeply studied machine learning systems over the past few months, mainly focusing on training and inference of large language models. This notes collection covers distributed computing, parallelization, quantization, and PyTorch internals, with most content derived from the author's experiments. 1. Distributed Technologies - covering distributed training…

X AI KOLs Timeline · 6d ago Cached

Sharing a machine learning systems notes repo on GitHub, covering distributed computing, parallelization, quantization, and PyTorch internals related to LLM training and inference. Suitable for learners interested in ML systems.

0 favorites 0 likes
#pytorch

@PyTorch: Autotuning is the backbone of Helion, PyTorch's DSL for performance portable ML kernels. Currently Helion searches util…

X AI KOLs Following · 2026-06-18 Cached

This blog explores using LLM-guided autotuning to accelerate kernel configuration search in PyTorch's Helion DSL, replacing the slower Likelihood-Free Bayesian Optimization approach.

0 favorites 0 likes
#pytorch

@ben_burtenshaw: https://x.com/ben_burtenshaw/status/2067615361428545566

X AI KOLs Timeline · 2026-06-18 Cached

A detailed tutorial on supervised fine-tuning (SFT) for training AI agents, built from scratch in pure PyTorch using Qwen3-0.6B, explaining the mechanics of next-token prediction and label masking.

0 favorites 0 likes
#pytorch

@FakeMaidenMaker: Incredible! This open-source project can significantly speed up and save VRAM for self-hosted large model inference. It has garnered 9.2K stars on GitHub, joined the PyTorch Foundation, and NVIDIA's Dynamo has integrated it. GitHub: https://github.com/LMC…

X AI KOLs Timeline · 2026-06-18 Cached

LMCache is a KV cache management layer that accelerates large model inference and reduces VRAM consumption by caching and reusing KV cache. It has received 9.2K stars and joined the PyTorch Foundation, and is integrated by NVIDIA Dynamo.

0 favorites 0 likes
#pytorch

@ZhengyangGeng: You can always trust Kaiming's quality bar. Writing, code, data, recipe, ckpt... https://github.com/PeppaKing8/minit2i-…

X AI KOLs Timeline · 2026-06-17 Cached

MiniT2I is a minimalist direct-RGB text-to-image generator using a pixel-space MM-JiT denoiser with flow matching and frozen FLAN-T5-Large text tokens, with open-source JAX/Flax and PyTorch implementations released along with checkpoints.

0 favorites 0 likes
#pytorch

@jino_rohit: understanding the torch compile stack torch.compile is a technique to speed up your pytorch code. torch.compile makes t…

X AI KOLs Timeline · 2026-06-17 Cached

The article explains the torch.compile stack in PyTorch, detailing steps from API to Dynamo, FX graph, ATen ops, and Torch Inductor for JIT compilation.

0 favorites 0 likes
#pytorch

@PyTorch: 24 hours left to nominate yourself or someone else as a PyTorch Foundation Ambassador The PyTorch Foundation Ambassador…

X AI KOLs Following · 2026-06-17 Cached

The PyTorch Foundation is calling for nominations for its Ambassador Program, which supports community leaders organizing events, creating content, mentoring, and contributing to open source. Applications are open until June 18, 2026, with a focus on underrepresented regions.

0 favorites 0 likes
#pytorch

@PyTorch: Bridging the gap between model optimization and production deployment This tutorial walks through a typical end-to-end …

X AI KOLs Following · 2026-06-16 Cached

This tutorial from NVIDIA walks through the end-to-end workflow of converting an FP8-quantized PyTorch model into a TensorRT inference engine for production deployment, covering ONNX export and performance profiling.

0 favorites 0 likes
#pytorch

owensong/Inflect-Nano-v1

Hugging Face Models Trending · 2026-06-16 Cached

Inflect-Nano-v1 is a tiny English text-to-speech model with 4.63M total inference parameters, including its vocoder, designed for local, efficient speech synthesis experiments.

0 favorites 0 likes
#pytorch

@jichiep: privacy-filter.cpp performance Vs the PyTorch implementation. Approx between 1.6x and 18x faster:

X AI KOLs Following · 2026-06-16 Cached

privacy-filter.cpp outperforms the PyTorch implementation by approximately 1.6x to 18x in performance.

0 favorites 0 likes
#pytorch

@_rohit_tiwari_: PyTorch Fundamentals: Your First Steps into Hands-on Deep Learning. Github (900+ stars): https://github.com/analyticalr…

X AI KOLs Timeline · 2026-06-16 Cached

A beginner-friendly GitHub repository covering PyTorch fundamentals, including tensor initialization, operations, indexing, and reshaping, with over 900 stars.

0 favorites 0 likes
#pytorch

@NFTCPS: You keep talking about AI, but can't even explain what a Transformer is? There's a repo that goes all out — builds a GPT from scratch without using any high-level libraries. It lays out exactly how Attention, Multi-Head, Feed-Forward, Embedding, Residual connections, and Layer Norm are pieced together. And it's not just the model; the entire pipeline is covered…

X AI KOLs Timeline · 2026-06-16 Cached

A GitHub open-source project that implements the complete GPT training pipeline from scratch, including data preprocessing, pretraining, SFT, and RLHF post-training, all based on native PyTorch. Ideal for developers who want to deeply understand the Transformer architecture.

0 favorites 0 likes
#pytorch

@PyTorch: The inaugural PyTorch Meetup Singapore brought together engineers, researchers, and community builders to talk about ev…

X AI KOLs Following · 2026-06-12 Cached

The inaugural PyTorch Meetup Singapore brought together AI practitioners for technical talks on vLLM updates, sovereign intelligence, and open-source exchange.

0 favorites 0 likes
Next →
← Back to home

Submit Feedback