PyTorch Datasets and DataLoaders - Training Set Exploration for Deep Learning and AI

preview_player
Показать описание
💡Enroll to gain access to the full course:

Exploring and preparing data for neural network programming with PyTorch. We explore our training set, show images on a plot, and touch on oversampling.

References:

🕒🦎 VIDEO SECTIONS 🦎🕒

00:30 Help deeplizard add video timestamps - See example in the description
14:08 Collective Intelligence and the DEEPLIZARD HIVEMIND

💥🦎 DEEPLIZARD COMMUNITY RESOURCES 🦎💥

👋 Hey, we're Chris and Mandy, the creators of deeplizard!

👉 Check out the website for more learning material:

💻 ENROLL TO GET DOWNLOAD ACCESS TO CODE FILES

🧠 Support collective intelligence, join the deeplizard hivemind:

🧠 Use code DEEPLIZARD at checkout to receive 15% off your first Neurohacker order
👉 Use your receipt from Neurohacker to get a discount on deeplizard courses

👀 CHECK OUT OUR VLOG:

❤️🦎 Special thanks to the following polymaths of the deeplizard hivemind:
Tammy
Mano Prime
Ling Li

🚀 Boost collective intelligence by sharing this video on social media!

👀 Follow deeplizard:

🎓 Deep Learning with deeplizard:

🎓 Other Courses:

🛒 Check out products deeplizard recommends on Amazon:

🎵 deeplizard uses music by Kevin MacLeod

❤️ Please use the knowledge gained from deeplizard content for good, not evil.
Рекомендации по теме
Комментарии
Автор

The reason for using plt.imshow(np.transpose(grid, (1, 2, 0))):
For a colored image... plt.imshow takes image dimension in following form [height width channels] ...while pytorch follows [channels height width]... so for compatibility we have to change pytorch dimensions so that channels appear at end... the standard representation of array is [axis0 axis1 axis2].... so we have to convert (0, 1, 2) to (1, 2, 0) form to make it compatible for imshow....

sulemanrasheed
Автор

This series is awesome so far, don't why there are not many people watching it.

sihanchen
Автор

Best Explanation bro!!!. Video quality and the way you show typing and then you explain is also just awesome

brainify
Автор

OK ok ok ok. Wait a sec. WHY THE FUCK does this extremely well made video (deep explanations, step by step, great audio, great references to Jeremy Howard, to the paper briefely mentioned) got only 50k jesus christ what an amazing video. Ty guys for the awesome work

simoneparvizi
Автор

That's an interesting point about the effectiveness of oversampling - we had a similar issue with an very unbalanced dataset at work and the sklearn weight-parameter didn't seem to make much difference. It's nice to see some research on it.

chronicfantastic
Автор

This video would've been amazingly useful last week when I struggled implementing my own DataLoaders/Sets :D
There's not much information about this online so it's greatly appreciated.

But please, normalize your audio, I had to crank my volume to be able to understand what was being said.

But nonetheless good job, these videos are really appreciated.

drevolan
Автор

volume can be louder. Anxiously waiting for the next episode! Ending is magnificent!

JimmyCheng
Автор

please keep making video. your content is great.

dippatel
Автор

Best on you tube. Well done and thank you. Wondering though if you'll do one for custom text datasets?

yeahorightbro
Автор

Note that the new root should be ./data as it was changed in the fashionmnist

picumtg
Автор

This video series gave me so much insight into deep learning. Thank you Deeplizard team for this amazing work.

Can someone share the video of the paper being used here?

malamals
Автор

np.transpose(grid, (1, 2, 0)) can be done in pytorch itself with grid.permute(1, 2, 0)

amitchaudhary
Автор

while I was doing on my own, label was not a tensor rather it was an int object.

panchajanya
Автор

can you do a series like this for the custom dataset, thanks?

xiangli
Автор

how! could you type so fast and precisely! or does the truth is I am typing too slow actually..

xdcedar
Автор

How do i create batches for custom datasets(non-image data) that are not part of the torchvision package? Is there any resource to learn that?

TheAnubhav
Автор

Do you have tutorial of hyperparameters for RNN.? That would be great!!!!

zhengguanwang
Автор

Hi thanks for your videos.
which version of pytorch are you using in these videos?

sinaasadiyan
Автор

Thank u very much for your great series
I guess in the blog article you missed to add image, label = sample

SamerSallam
Автор

Is that how fast & accurately you normally type codes or just a speeded replay?

yunhuaji