Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
please add your notebook in the discription
and if i use this images, labels = next(dataiter) then it throws the error 'module' object is not callable, How to fix this?
try importing nn.Moduleor check the syntax next(iter(dataloader))
@@SY_A_70_Tarun_Tiwari hogya bhai project 😂😂😂😂 dont bother
Thanks for you tutorialCan you share the link of this codes please
Visit my github github.com/zamalaliSUBSCRIBE! :)
@@autopy9866 hello I have gone to you github I couldn't find the coded can you paste the link to it? Thanks
@@autopy9866 hey, in your github i not found this code
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
use this snippet instead:dataiter = iter(train_loader)image, label = dataiter.__next__()
please add your notebook in the discription
and if i use this images, labels = next(dataiter) then it throws the error 'module' object is not callable, How to fix this?
try importing nn.Module
or check the syntax next(iter(dataloader))
@@SY_A_70_Tarun_Tiwari hogya bhai project 😂😂😂😂 dont bother
Thanks for you tutorial
Can you share the link of this codes please
Visit my github
github.com/zamalali
SUBSCRIBE! :)
@@autopy9866 hello I have gone to you github I couldn't find the coded can you paste the link to it? Thanks
@@autopy9866 hey, in your github i not found this code
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
use this snippet instead:
dataiter = iter(train_loader)
image, label = dataiter.__next__()