Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
176 results
Why can Unsloth fine-tune LLMs like Llama 3.1 8B, Llama 3.3 70B, and Qwen 3.5 MoE 2x faster with 70% less VRAM than ...
5,725 views
3 days ago
Before any math: install PyTorch, import it, and print your first tensor — then answer the question tutorials skip. What actually sits ...
11 views
5 days ago
In this PyTorch Transfer Learning tutorial, we'll build a complete image classifier step by step using a pretrained ResNet50 model.
19 views
7 days ago
Train your first computer vision model in PyTorch — from a blank notebook to a CNN that can say frog, not cat. In this beginner ...
20 views
Conv, ReLU, pool, repeat — then flatten and a linear classifier on the end. This video assembles a real CNN in PyTorch from five ...
2 views
Your first guess about what's slow is almost always wrong, and your first stopwatch is almost always lying — because a GPU call ...
3 views
1 day ago
Fit a line with nothing but tensors, a loss, and the training loop — no nn.Module, no DataLoader, nothing hidden. That is the point: ...
0 views
What is PyTorch? A Complete Beginner's Guide (10-Minute Tutorial) Want to learn how computers recognize images, ...
12 views
Training is worth nothing until the weights survive the process that made them — and a saved model is not a program, it is a ...
90% of deep learning bugs are shape bugs. This episode gives you the exact linear algebra you actually need — scalars, vectors, ...
The bottleneck is rarely where you think it is — and in a beginner's training loop, it's often not the GPU at all. This video profiles a ...
1 view
23 hours ago
Three error messages account for most of the pain in PyTorch — shape mismatch, device mismatch, and a .grad that is None.
The gradient tells you which way is downhill. The optimizer is the rule that decides how far to actually step — and that one ...
Five lines, in this order, every single time — and every remaining video in this course is these five lines with more furniture around ...
Every future episode in this series requires one thing: a working deep learning environment. This is the exact setup I use ...
6 views
4 days ago
Nobody differentiates a neural network by hand. PyTorch records every operation you do to a tensor, then plays that record ...
4 views
The bus between your CPU and GPU really is the slowest link in the machine — that part is true, and this video measures it: 4.72 ...
5 views
Flatten a photo into one long vector and you throw away the only thing that made it a photo: that two pixels sitting next to each ...
Build a full Fashion-MNIST classifier in PyTorch — the whole pipeline (data → DataLoader → model → loss → optimizer → save) ...
9 views
Most tutorials show you how to write PyTorch syntax, but they rarely explain what actually happens under the hood when that ...
6 days ago