Тёмный

Introduction to PyTorch 

PyTorch
Подписаться 55 тыс.
Просмотров 238 тыс.
50% 1

In the first video of this series, we give a broad overview of the parts of the PyTorch toolchain, including: Tensors, automatic gradient computation, model building basics, data loading abstractions, model training, and deployment for inference. This video is meant as a survey, with each topic being covered in more depth in subsequent videos.
Download all notebooks here: pytorch-tutori...
Download individual notebooks here:
1. Tensors - 04:45 to 07:50
pytorch-tutori...
2. Autograd - 08:00 to 9:50
3. A simple model - 10:00 to 14:00
pytorch-tutori...
4. Datasets - 14:00 to 17:10
pytorch-tutori...
5. Training loop - 17:10 to 21:00
pytorch-tutori...

Опубликовано:

 

29 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 72   
@mosa36
@mosa36 2 года назад
The colors make it really hard to read the slides
@d.mort.
@d.mort. 3 года назад
This was quite a good rapid intro video. Thank you very much!
@Tina-gj9qw
@Tina-gj9qw 2 года назад
I got a “name ‘transform’ is not defined”when creating a CIFAR10 dataset on 15:14. Still wondering how to fix this.
@Tina-gj9qw
@Tina-gj9qw 2 года назад
i got it:i forgot to run some cells above😓
@emmanuelakpet4735
@emmanuelakpet4735 6 месяцев назад
Am I the only one that feels the display brightness is too low?
@jeffg4686
@jeffg4686 2 года назад
PyTorch only has 27K subscribers ?
@manuelplank5406
@manuelplank5406 2 года назад
Love how he roasts his CPU while training
@rmajdodin
@rmajdodin 2 года назад
7:04 it should be (torch.rand(2,2) -0.5) * 2, otherwise it works like torch.rand(2,2) -1, because of operator precedence
@ryanhoward5999
@ryanhoward5999 2 года назад
If PyTorch is so smart, why can't you use it to increase your video BRIGHTNESS GODD!!!
@luisfelipecarreira
@luisfelipecarreira 5 месяцев назад
If you didn't pay, why are you complaining about a knowledge being shared for free? It's not that dark...
@deehzee
@deehzee 2 года назад
Very hard to read the slide due to unfortunate choices of font colors (no contrast)
@mikeanthony773
@mikeanthony773 Год назад
I think the brightness is too low. This is how a monitor looks with no backlight. You can see at 3:20ish the slide suddenly becomes bright and readable and then the video stays that way.
@nafisaanjum1146
@nafisaanjum1146 3 года назад
0:00 Intro 0:52 PyTorch Installation 1:32 What is PyTorch 3:51 Tensors 7:56 Autograd 10:00 A simple model 14:00 Datasets 17:00 Training Loop 21:15 Deployment
@tanmoymazumder664
@tanmoymazumder664 2 года назад
thanks mate
@dr_flunks
@dr_flunks Год назад
19:25 The roomba joins the chat
@chucksaber8332
@chucksaber8332 Год назад
loss.backward() does not compute at 9:42 lol
@felixx2012
@felixx2012 5 месяцев назад
For me "images, labels = dataiter.next()" returns the following error: "AttributeError: '_MultiProcessingDataLoaderIter' object has no attribute 'next'". I fixed this by changing the line to "images, labels = next(dataiter)" which I think is the correct implementation. But I am still confused, surely an official tutorial video is not mistaken.
@vaibhavverma7962
@vaibhavverma7962 3 месяца назад
thanks, worked for me too
@user-or7ji5hv8y
@user-or7ji5hv8y 3 года назад
Audio volume is a bit low.
@drmosfet
@drmosfet Год назад
I have to turn up the volume to hear you, When the commercial come on the audio levels or high enough to wake up every one in the house.
@kalok87
@kalok87 2 года назад
Hello, something might be wrong there. at 11:01 we have the C1 size (28*28), and the code in the comment said "# 1 input image channel (black & white), 6 output channels, 3x3 square convolution". But apply a 3*3 window on 32*32 input will get 30*30 output. I think the graph describes the structure in the original paper which was using 5*5 window at C1.
@PRonYouTube
@PRonYouTube Год назад
Is there a typo ~ 15:10 when the image normalization is done? if we're seeking to achieve an average of 0, shouldn't the first tuple passed in be (0, 0, 0) instead of (0.5, 0.5, 0.5)?
@RajarshiBandopadhyay
@RajarshiBandopadhyay Год назад
Is it just my machine, or is this video kinda dark?
@heera_ai
@heera_ai 2 месяца назад
@11:35 LeNet model for the 32X32 one channel images. import torch import torch.nn as nn import torch.nn.functional as F class LeNet(nn.Module): def __init__(self): super(LeNet, self).__init__() self.conv1 = nn.Conv2d(1, 6,3) self.conv2 = nn.Conv2d(6, 16, 3) self.fc1 = nn.Linear(16*6*6, 120) self.fc2 = nn.Linear(120, 84) self.fc3 = nn.Linear(84,10) self.relu = F.relu def forward(self , x): x = self.conv1(x) #input shape 32X32 -> ouput shape 30X30 x = self.relu(x) x = F.max_pool2d(x ,2) #input shape 30X30 -> ouput shape 15X15 x = self.conv2(x) #input shape 15X15 -> ouput shape 13X13 x = self.relu(x) x = F.max_pool2d(x ,2) #input shape 13X13 -> ouput shape 6X6 x = torch.flatten(x) x = self.fc1(x) x = self.relu(x) x = self.fc2(x) x = self.relu(x) x = self.fc3(x) return x net = LeNet() input_image = torch.rand(1, 1, 32, 32) output = net(input_image) output
@niyongaboeric
@niyongaboeric 2 года назад
I like the introduction video as I could see how you can use Pytorch to train model, visualize results and deploying in production. You helped me and I just want to say thank you.
@aimatters5600
@aimatters5600 Год назад
increase your browser window man. hard to read
@josechavez8754
@josechavez8754 2 года назад
HI, I get this error when runnung the dataset notebook. "URLError: " Can it be fixed?
@needmusic790
@needmusic790 Год назад
WHY THE VIDEO IS SO DARK?
@mikeanthony773
@mikeanthony773 Год назад
Some kind of issue with the upload or brightness or something. It goes away at 3:20.
@emrek1
@emrek1 3 года назад
I think in code segment 6 the first line should be r1 = (torch.rand(2,2)-0.5) * 2 otherwise it will be equivalent to r1 = torch.rand(2,2) - 1
@rohith2454
@rohith2454 2 года назад
yes , I was wondering the same, glad to see your comment
@nicolasaragon1078
@nicolasaragon1078 10 месяцев назад
I found this helpful. Thanks for sharing this tutorial! I found a problem in the Autograd section, which could be corrected. I'm using Pytorch2.1.1 and it seems that `loss.backdward()` requires that the tensors get constructed with `requires_grad=True`. I checked the documentation and it seems that this is the default, but it didn't work for me until I specified the value explicitly.
@heera_ai
@heera_ai 2 месяца назад
@7:14 r = (torch.rand(2,2) - 0.5) * 2 # normalize values to -1. to 1. r = torch.rand(2,2) - 0.5 * 2 # generates random values in range of [-1., 0.] @8:00 Set requires_grad = True example: x = torch.rand(1, 10, requires_grad = True)
@interesting_stuffs
@interesting_stuffs Год назад
good videos but audio quality in these videos is very poor, anyway to improve it?
@davidmurphy563
@davidmurphy563 Год назад
Obviously this is a year old and the narrator probably won't see this but a zoomed in view would make this infinitely more accessible on mobile. Great video regardless.
@CaptainKokomoGaming
@CaptainKokomoGaming Год назад
Where do I run these commands??? I am trying to teach myself this stuff on the fly but my wings are on fire. I only want to learn ths stuff to stop the damn cuda errors on my Stable Diffusion local install. It's driving me nuts! I don't know where to put the "torch.cuda.empty_cache()" either. Can someone please help me?
@heera_ai
@heera_ai 2 месяца назад
@8:00 Set requires_grad = True example: x = torch.rand(1, 10, requires_grad = True)
@kavorka8855
@kavorka8855 7 месяцев назад
the video's dim, very difficult to follow
@scaredyfish
@scaredyfish Год назад
16:54 I get an error on dataiter.next() - next(dataiter) works
@johnhellewell9550
@johnhellewell9550 Год назад
worked for me, thank you
@xiangliangxia5559
@xiangliangxia5559 6 месяцев назад
I have the same error
@user-or7ji5hv8y
@user-or7ji5hv8y 3 года назад
Does PyTorch have something equivalent to TensorFlow Probability?
@pouyanebrahimilialekol2197
@pouyanebrahimilialekol2197 2 года назад
Thanks for the video. If the CIFAR10 dataset isn't downloading by the code, you may for as below: import ssl ssl._create_default_https_context = ssl._create_unverified_context trainset = torchvision.datasets.CIFAR10(root='./data', train=True, download=True, transform=transform)
@deeptisinha7348
@deeptisinha7348 2 месяца назад
Slides are not readable.
@dibyaranjansahoo4552
@dibyaranjansahoo4552 2 года назад
o boy is the noise because of model training 😏
@clearmind9817
@clearmind9817 2 года назад
It is only reading the scripts! We can read them too! Unfortunately not a perfect tutorial 😒
@Sirvaiya
@Sirvaiya 3 года назад
thanks a lot. very good video. It was littleee fast i think. And best thing was there was no ad for me :)
@Sirvaiya
@Sirvaiya 3 года назад
Hope to see more like these :)
@Raminder1984
@Raminder1984 Год назад
great video. in the net class at 18.03 needs num_flat_features function without which it wont run looks like.
@imperfect7719
@imperfect7719 Год назад
what is this interface that starts from 4:35 ? where am I gonna actually write this codes if iam onto building some model using Pytorch?
@Schaelpy
@Schaelpy 10 месяцев назад
It is a Jupyter Notebook. You can write Python code basically everywhere with a terminal but an IDEs is recommended. Or for beginners, Google Colab and Kaggle are good choices
@golgiwaffles
@golgiwaffles Год назад
I dont seem to understand the AutoGrad aspect as im doing this with no prior ML/DL knowledge. Am i on the right track, or must i learn something prior to his
@morancium
@morancium Год назад
i thiiink you should have atleast basic understanding of backpropogation
@yolowex6876
@yolowex6876 Год назад
For God's sake please increase your text size
@Schaelpy
@Schaelpy 10 месяцев назад
Loved that Video! Thank you so much
@istvanszepesi-nagy2516
@istvanszepesi-nagy2516 Год назад
nice "how to read the text" tutorial!
@da-hn
@da-hn 2 года назад
1729, the hipster version of 42
@angelsancheese
@angelsancheese 3 года назад
Thank you for the video
@pullrequest1296
@pullrequest1296 3 года назад
Glad to see 720p back.
@whatRedditSaysToday
@whatRedditSaysToday Год назад
Is this synthetic voice?
@BlackHermit
@BlackHermit 2 года назад
Great introduction! Thanks
@satvikvenkatesh
@satvikvenkatesh 2 года назад
An excellent tutorial!! Thank you.
@Yilgrimage
@Yilgrimage Год назад
It really help a lot!😀
@samrasoli
@samrasoli Год назад
useful
@yuanjizhang9753
@yuanjizhang9753 3 года назад
How does torchscript compare to onnx?
@PurtiRS
@PurtiRS 11 месяцев назад
Low brightness, low contrast, low readability, low volume, content is good, but I don't like the mouth sounds in between the words, very distracting, and these are pronounced because I have to increase the volume too high to listen to the content. Kya official video banayega re tu.
@NishantKumar-mp9zg
@NishantKumar-mp9zg 3 года назад
There is a background noise that continuously comes forth . It's a static sound that occurs in the second last module. Request you to kindly check it out .
@felixn.7397
@felixn.7397 3 года назад
Probably his graphics card doing the training :P
@NishantKumar-mp9zg
@NishantKumar-mp9zg 3 года назад
@@felixn.7397 Might be :p