Classification model using Pytorch on CIFAR-10

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

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

  • @vivekkumar-zs8kk
    @vivekkumar-zs8kk Год назад +3

    please add your notebook in the discription

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

    and if i use this images, labels = next(dataiter) then it throws the error 'module' object is not callable, How to fix this?

    • @SY_A_70_Tarun_Tiwari
      @SY_A_70_Tarun_Tiwari 5 месяцев назад

      try importing nn.Module
      or check the syntax next(iter(dataloader))

    • @PrimeContent01
      @PrimeContent01 5 месяцев назад

      @@SY_A_70_Tarun_Tiwari hogya bhai project 😂😂😂😂 dont bother

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

    Thanks for you tutorial
    Can you share the link of this codes please

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

      Visit my github
      github.com/zamalali
      SUBSCRIBE! :)

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

      @@autopy9866 hello I have gone to you github I couldn't find the coded can you paste the link to it? Thanks

    • @voldepino
      @voldepino 5 месяцев назад

      @@autopy9866 hey, in your github i not found this code

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

    images, labels = dataiter.next() in this line the colab is throwing error which says _MultiProcessingDataLoaderIter' object has no attribute 'next' , How to fix this please tell me

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

      use this snippet instead:
      dataiter = iter(train_loader)
      image, label = dataiter.__next__()