PyTorch Course (2022): Part 2: Basic Networks

Поделиться
HTML-код
  • Опубликовано: 29 ноя 2024

Комментарии • 32

  • @SwirlOfColors
    @SwirlOfColors 2 года назад +9

    Fantastic tutorial, as always. It really cleared up the concepts behind neural networks for me. Can't wait for next parts. Keep on going.

  • @melkenhoning158
    @melkenhoning158 2 года назад +4

    More of this please! Great tutorial as usual

  • @m.shayaantanveerkhan3765
    @m.shayaantanveerkhan3765 7 месяцев назад

    the way he said "work of art" to every beauty of machine learning depicts that he loves machine learning so much. the whole video is "work of art" by the way best ever video i have seen on youtube

  • @iwatchedthevideo7115
    @iwatchedthevideo7115 Год назад

    Hands down a great tutorial! Helps me a bunch on my current classes. If only the lectures at school were as good as these...

  • @dimitrismit6714
    @dimitrismit6714 2 года назад +2

    I got reccomended this video, and I really enjoyed it. Very intuitive and simple explanation. Can't wait for the next part!

  • @pythonixed4448
    @pythonixed4448 2 года назад +1

    Really useful and clear breakdown of PyTorch. It’s great to be able to see best practices for setting things up.

  • @MohamadrezaSalehi-h4e
    @MohamadrezaSalehi-h4e 9 месяцев назад +1

    The Best PyTorch video I have ever seen! THANKS!

  • @ganumba11
    @ganumba11 2 года назад +1

    This was amazingly comprehensive thank you so much.

  • @coenhordijk8731
    @coenhordijk8731 2 года назад

    Great tutorial, I like your style and speed!

  • @ИванСергиенко-б9з

    thanks, its become much clearer how it works!

  • @omersayli
    @omersayli Год назад +1

    In the Idea,
    first multiplication is by a 2x8 matrix
    then by a 8x1 matrix.

  • @shubhamghosal9336
    @shubhamghosal9336 2 года назад +1

    Keep them coming

  • @RonivaldoPassosSampaio
    @RonivaldoPassosSampaio Год назад

    Thank you for such great Tutorial on Pytorch!

  • @francescol.r.3638
    @francescol.r.3638 2 года назад

    sooo cool man thank you for your clear explanation! I would really love to see other video on ML and neural network!

  • @natashasamuel9346
    @natashasamuel9346 2 года назад +1

    Great class.
    Keep up the good work.
    Thank You,
    Natasha Samuel

  • @einsteinsboi
    @einsteinsboi 2 года назад

    Fantastic explanation! Thank you.

  • @poreh6262
    @poreh6262 2 года назад +1

    U are the best man!

  • @hussainbhavnagarwala2596
    @hussainbhavnagarwala2596 Год назад

    I feel like you missed the part about transposing the weight matrix before multiplying with inputs, this kind of threw me off a bit and I had to research about how the nn.Linear actually works. Also in general the way nn.Linear works is very different from how neural networks are taught in classes so it was a bit hard to grasp right off the bat. Thanks for the explanations!

  • @sflux4593
    @sflux4593 2 года назад +1

    10:42 Aren't they still a 2d vector? It's 8-element not 8-dimensional right?

  • @rudiagnew898
    @rudiagnew898 2 года назад +2

    at 8:00, arent we multiplying by a 2x8 matrix rather than 8x2? Since multiplying a 1x2 vector with an 8x2 matrix is undefined.

    • @EC_Ritesh
      @EC_Ritesh Год назад

      same issue bro ,
      1x2 matrix can be multiplies with 2x8 matrix to yield 1x2 matrix ... I did not get it why is he doing the second step ,
      although in his first step is he trying to perform 1x2 matrix multiplication with 8x2 matrix??

  • @nicolasmagee1780
    @nicolasmagee1780 2 года назад

    Hello, I like your videos. How does `opt` know about the loss function (or value) if we didn't gave it a reference to it.

  • @aliabasnezhad7872
    @aliabasnezhad7872 2 года назад +1

    aren't you supposed to transpose the matrix before multiplying?
    1,2 array cannot be multiplied to 8,2 matrix, but it can with matrix transpose. Am I wrong?

    • @rudiagnew898
      @rudiagnew898 2 года назад +1

      yeah i was confused by this too, I think what we are actually doing is xA_1A_2 = y where A_1 is 2x8 and A_2 8x1. Notice the notation for nn.Linear(2,8) and nn.Linear(8,1). Could be wrong though

  • @itaylavi2556
    @itaylavi2556 2 года назад

    Anyone understands why the NN got "stuck" on a "wrong" output even though it reached a minimum loss function?
    My understanding is it got to a local minimum point and cant get out of there. If so - is there any other way to release it? other than setting new random values to the matrices and start over.

  • @renzy4584
    @renzy4584 2 года назад

    Nice tutorial !

  • @poreh6262
    @poreh6262 2 года назад

    u are the best!
    D.

  • @I_Unintentionally_Morph
    @I_Unintentionally_Morph 2 года назад

    ❤🤓thank u very much

  • @amirabbaskarimi4165
    @amirabbaskarimi4165 2 года назад

    It would be great if you could add a subtitle to your video

  • @amirabbaskarimi4165
    @amirabbaskarimi4165 2 года назад

    You have no words, boy

  • @HasanKarakus
    @HasanKarakus Год назад

    don't lecture ML, just tell us about library

  • @sflux4593
    @sflux4593 2 года назад +1

    10:42 Aren't they still a 2d vector? It's 8-element not 8-dimensional right?