Tagged articles
4 articles
Page 1 of 1
Data STUDIO
Data STUDIO
Dec 9, 2025 · Artificial Intelligence

20 Core PyTorch Concepts to Accelerate Your AI Projects

This article walks through twenty essential PyTorch concepts—from basic Tensor creation and manipulation, through autograd and neural‑network construction, to data loading, GPU acceleration, model saving, and practical training tricks—providing concrete code examples and clear explanations for developers eager to build and deploy AI models.

AutogradDataLoaderDeep Learning
0 likes · 16 min read
20 Core PyTorch Concepts to Accelerate Your AI Projects
21CTO
21CTO
Dec 22, 2020 · Artificial Intelligence

Explore tinygrad: A Minimalist Deep Learning Framework Under 1000 Lines

tinygrad, an open‑source autograd tensor library by George Hotz, offers a compact PyTorch‑like experience in fewer than 1000 lines, with easy installation, GPU support via PyOpenCL, full EfficientNet inference, and extensible optimizers for rapid neural‑network prototyping.

AIAutogradDeep Learning
0 likes · 6 min read
Explore tinygrad: A Minimalist Deep Learning Framework Under 1000 Lines
Python Programming Learning Circle
Python Programming Learning Circle
Apr 26, 2020 · Artificial Intelligence

Understanding PyTorch Autograd: Tensors, Gradients, and Backpropagation

This article explains PyTorch's autograd system, covering tensor creation, the requires_grad flag, detaching tensors, disabling gradient tracking with no_grad, the Function class and computational graph, and demonstrates forward and backward passes with code examples illustrating gradient computation and Jacobian‑vector products.

AutogradBackpropagationPyTorch
0 likes · 6 min read
Understanding PyTorch Autograd: Tensors, Gradients, and Backpropagation