@@misterentername8869 when you hear the gong, bring your mind back to the breath. As you breath in and out, repeat your mantra, focus on the b[re]ath (little Yorkminster joke there for the kids).
Imagine if someone is falling from a failed plane without a parachute and have just 5 minutes of time to learn about how to use numpy to find out the optimal landing posture to maximize likelihood of survival, and he found this video teaching numpy in 5 minutes, when he found out the tutorial is actually longer than 5 minutes midway into the video, he would be like "damn it!"
if you use these interruptions, you should use it more strategically. for example between 2 topics, so the viewer can build up a new focus. but because of your random interruptions, i was distracted because i expected every second a new interruption.
There is a mistake in the video about the two-dimensional array. When creating a two-dimensional array, you typed: b_list = [[9,8,7,6,5,4,3], [1,2,3,4,5,6,7]] z = np.array([b_list]) However, there should be no "[ ]" in the second line, while it should be z = np.array(b_list) With your code, z is a three-dimensional numpy array instead of a two-dimensional one.
He really underestimates the attention span of his audience. "Go quicker" [interrupts every 30 seconds, and repeats how to find the type of the number 10 times]. All that aside, it's a good introduction to what you can do with numpy.
i don't care if it is not 5 min, this is freakn amazing, i love it, it is fun and educational with more interaction that keeps you engaged, just amazing
I remember watching this over a year ago. The interruptions were irritating. But Now, I can appreciate the making of this video while I seek to understand NumPy.
Great video easy to follow. I found the flip back to you and early on to the keyboard and pad distracting. Your teaching is good enough to make me watch it all after a few mins of trying to get me to keep watching. Thanks for sharing.
Yes, it is longer than 5 mins. Yes, there may be 1 too many 'breaks' for a break & a possible cause for annoyance. However, this is a great intro to "Getting Started" & it gets straight into the business of explaining the topic without trying to squeeze just enough examples to fit 5 mins. I would rather get the good stuff. It was 13 mins well spent. If it is not too much to ask, a Git repository would be great for a Newbie to dive right in. BTW, I arrived here after Pandas and Matplotlib.
There is an error in the video. In minute 3:22 If you want to convert a list to numpy array by name, just add the name between the curved brackets not the square brackets E.g. a_list=[3, 6, 9, 0, 13] Example a_array = np.array(a_list) NOT np.array([a_list] ) as you did! The problem is that what you did will make a wrong shaped array that will be cause errors when you try to reference or slice. Thanks for the rest of your video.
@@StellaKatsarou If you have the array np.array([3, 6, 9, 0, 13]) its shape will be 5*1; i.e. a vector, while the array np.array([[3, 6, 9, 0, 13]]) (Notice the double square bracket) has a shape of 1*5; i.e an array of 1 row and 5 columns. Wrong shaped means you want 1*5 you got 5*1, which are totally different in the array terms.
@@drnesr The shape of np.array([3,6,9,0,13]) is (5,) = (1,5) but not a good representation. The shape of array np.array([[3, 6, 9, 0, 13]]) is (1,5) which gives the same result as before, but this is a better representation and a Standard* way. Hope I helped
At 2:44, np.empty(3) doesn't creates an empty array. Rather it creates an array with random values. By the way, your teaching style is really fantastic. Kudos!
I found interruptions quite amazing and they helped me focus. Good video for a starter like me but wish he told how an advanced or a beginner tutorial this is.
I loved the interruptions - unlike a lot of the commenters here. Your videos are fun to watch - never boring. The geeks who don't like it can go back to reading arid programming books. Don't change a thing
I have a feeling your channel is about to explode. Every time I get recommended awesome under-the-radar channels, they seem to gain subscribers really fast (given the content keeps coming). Recommender systems... the more you know. Probably user-user similarity.
If you didn't notice the video was 13 minutes before clicking on it that's on you *shrugs* Personally I liked the entertaining side of it, you're never going to actually learn a Python library in 5 minutes, but this is a decent overview!
Very nice quality video! This is a great refresher of how NumPy could be used and how it behaves in certain situations. Thanks so much! Your work is appreciated.
Honestly, the interruptions were great. People who want an intro without introductions can go check the other millions of intros on youtube, or just read the numpy manual
Nice quick introduction!! Just what I needed to refresh my numpy after a while i did not use it!! That's what I wanted, more numpy!!! In contrast with other comments, I found the flash-interventions kind of funny and fully in line with the title and nature of this tutorial. They add the the author's personal touch and provide rhythm to this super-fast lesson!!
I beg to differ from those who said that the interruptions were annoying. He does a great work with his videos and the least that he interacts with us is by saying "NumPy! NumPy! NumPy!" and I really like that. Period.
I was actually happy for not being only 5 mins because you can't learn a library so quick and i thought it would be one of those videos that only say to you things like "Numpy is great... you should learn it, I hope you found this video help full click the like button". Nice content man thanks, very helpful for a guy that is to bored to read the documentation!
My subject coordinator recommended this video. Quote: "Good numpy intro: nice image array slicing and tips from slightly irritating guy". I found it pretty funny when I read that. After watching it, I definitely think that's an apt description.
Thank you very much, brother! This video was very informative to me. Now I feel more confident to talk about Numpy. I think I've really been numpied out haha
Nowadays we can use vscode, create a new .py file and add "# %%" to the file to create a new code cell. Then shift-enter to run that cell. Vscode does the installation.
My biggest problem has been my IDE. I haven't programmed in like 10 years and came into Python from that decade-long break with new born eyes. My first ever experience with an interpretive language and I absolutely ADORE Python. All of my prior experience was within Visual Studio, specifically VB & C# on the .NET framework. And in one year in particular we used the XNA library in conjunction with C# to create indie games on the Xbox. Tons of experience on TopCoder and BPA competition. Point is, it didn't take me long to get a grip on Python. It's a beauty. But I've been programming exclusively on a mobile IDE for Android that is just a barebones text editor with a compiler and it was enough to get acquainted with Python but it's failing me when it comes to libraries. I feel like I've hit a brick wall with learning. I can rip open source code for games and know exactly what's going on, but I'm lost when it comes to the limitations of the functions within libraries. I see they're spawning rectangles with .rect functions and I can interpret that they're feeding it X,Y coordinates for location and size, as well as mathematically calculating things like center and positional manipulation and yadda yadda yadda. I see imports like tkinter and pygame and various functions within those libraries but the extent of their use-cases is lost on me because SO much of learning libraries comes down to the assistance within an IDE. Hitting the dot key and reading out a list of all possible functions with dev notes on the specifics of their functionality. Just seeing this made me realize exactly what my problem is. I've got to switch tools. Does anyone have any advice for a combination of tools, like an IDE and maybe even add-ons that would make this process as effortless as possible? My only experience is with Visual Studio but I've heard good things about Atom / Jupyter and even things like Kite. If anyone has a quick infodump that could fill me in I would much appreciate it.
Your videos are great. I watched only two so far but I would continue watching. Keep posting. Do it your way, people shouldn't (imo) focus on the interruptions as the content is very informative and concise in your videos. Thanks!
Fantastic video, thoroughly enjoyed your entertaining delivery; unlike many other channels that make computer science utterly boring. Great work, well appreciated :-)
👌 Want to ace the Data Science Interview? Over 1000 Data Science Practice Questions with model solutions: bit.ly/30ul0nX
I want to learn first of all and then prepare for an interview.
Ty a lot fot tips!! I m beginner in Python and your videos are help me a lot! XD
interesting 5 min faster. to get learn
You should be awarded man for the efforts you make for teaching us numpy in a creative way
I wish you didn't use a url shortener for that. Hard to trust it.
If you total the time spent on interruptions, introductions, and conclusions, you get 8:37 leaving exactly 5 minutes of useful information on Numpy.
np.sum(video[video > interruption]) == 5
@@Nonsanity 😄👌👍
tbh the interruptions kept from wandering my mind, it brought my attention back
@@misterentername8869 when you hear the gong, bring your mind back to the breath. As you breath in and out, repeat your mantra, focus on the b[re]ath (little Yorkminster joke there for the kids).
Sounds like lots of calculations 💀
may be we should appreciate him for his creative thinking to teach numpy in 5 min although took around 13 minutes
It's still better that 3h
@livestupid thinkbrilliant I listened in 2x 😁LOL.
Lol
we call 'em click bait but this is the first time I'm thankful xD
@Free Bird Blue Sky thank you
Imagine if someone is falling from a failed plane without a parachute and have just 5 minutes of time to learn about how to use numpy to find out the optimal landing posture to maximize likelihood of survival, and he found this video teaching numpy in 5 minutes, when he found out the tutorial is actually longer than 5 minutes midway into the video, he would be like "damn it!"
Or he can play the vid on 2.25 playback speed.
nice one
I hate when it happens to me...
i like this scenario
@Mark Would you look at that, you learned numpy so fast that you even had time to comment this while plummeting to your death.
How many of you found it annoying when he interrupted?? although nice video
My first liked comment!😂 thanks whoever liked it
Yes, much better without.
This is the sort of thing that annoys me about face programmers. Just cut to the chase.
For me it was opposite actually. I laughed each time.
I love his creative approach and humor. He is a superb video producer. Most programmer types are immensely boring. I have become a fan of this guy.
if you use these interruptions, you should use it more strategically. for example between 2 topics, so the viewer can build up a new focus.
but because of your random interruptions, i was distracted because i expected every second a new interruption.
Exactly
no worries, i distract myself by watching other youtube videos for 10 minutes every 60 seconds
😂😂
Yeah, totally irritating. Gave it up and started looking for better quality
if you've watched 24 I can imagine Chloe sending it and Jack Bauer going like. "Damn it Chloe!"
Why is everyone complaining about the interruptions. The guy was making the video lighter and enjoyable. Very concise tutorial indeed
It'd be even faster if you didn't have to say, "Fahstah", every 20 seconds...
Hahahhaah
Lol so mean
You break my heart
Exactly lol
Yeah! It was like an annoying ad without an option to skip.
I customized the playback speed and watched it in 5 minutes. Well done, great video!
There is a mistake in the video about the two-dimensional array. When creating a two-dimensional array, you typed:
b_list = [[9,8,7,6,5,4,3], [1,2,3,4,5,6,7]]
z = np.array([b_list])
However, there should be no "[ ]" in the second line, while it should be z = np.array(b_list)
With your code, z is a three-dimensional numpy array instead of a two-dimensional one.
You're a life saver. Thank you
The interruptions were annoying :)
Af
He really underestimates the attention span of his audience.
"Go quicker" [interrupts every 30 seconds, and repeats how to find the type of the number 10 times].
All that aside, it's a good introduction to what you can do with numpy.
Could have done it in 5 minutes without the interruptions...
...but also very 'meta'. Everyone clicks the 5 minute video but it takes 10 minutes to learn.
Well, it could be a great video but you got really annoying trying to be funny.
i don't care if it is not 5 min, this is freakn amazing, i love it, it is fun and educational with more interaction that keeps you engaged, just amazing
great video for learning but kind of annoying how he keeps cutting away and saying numpy, numpy numpy
I like those
Maybe he has Tourettes?
I liked those quirky breaks. I find this guy very inspiring.
Yes very annoying
Very very very annoying. He promises at the beginning that it will take 5 minutes. Then he broke his promises.
Thanks Giles! What I could not learn in 2 years, thanks to you I learnt them in 5 minutes (13 actually). Amazing!
I liked the funny interruptions, but maybe there was too many of them. Great video btw, love learning from you!
I agree, tooooooooooooo many of them
waaaaay too many
it gets annoying after the 4th one
Really liked the use of photos. Made it more interesting a your typical numpy tutorial. Thanks!
you took 11 mins to teach me what i wanted to see. I was having the exact same reactions you were displaying in the video. thanks!
Love the cutting and the fact you lied. I only realized after the first 4 minutes, but I was hooked. Good job, and thank you.
It's 2.38 am and today is my exam.
This 13 minute vdo(better than other 1hr vdos) helped me!
guys it's actually nearly 5 minutes, just watch at speed x2 it's the speed at which he actually spoke, he just slowed it down for us. ;D
This was so much fun to watch; your style is a veritable joy to behold
hahahahaha! I do this to my nephew whenever he doesn't want to eat, " one more spoon, one more spoon" makes a whole bowl , great job
Another engineering student grateful for watching your video, thank you. Your content has arrived here in Brazil
Now you learn how to vectorize and use broadcasting rules efficiently to avoid becoming traped in python loops.
This is incredibly comprehensive and condensed. I might need to watch it in 20 minutes
I have just started an intensive five-months Data Analyst re-training. Your approach has helped me to demystify Numpy. Great job!
I remember watching this over a year ago. The interruptions were irritating.
But Now, I can appreciate the making of this video while I seek to understand NumPy.
That's 13 minutes of my life that I DON'T want back. Thanks. Brilliant idea using a photo image.
Great video easy to follow. I found the flip back to you and early on to the keyboard and pad distracting. Your teaching is good enough to make me watch it all after a few mins of trying to get me to keep watching. Thanks for sharing.
Please do one of these on Pandas and Matplotlib!!
Great channel btw.
He has both of them.
I came after those 2. Great stuff!
Bruh... Pandas in 5 minutes will be like 40 minutes.... Too big library to cover bruh
Yes, it is longer than 5 mins. Yes, there may be 1 too many 'breaks' for a break & a possible cause for annoyance. However, this is a great intro to "Getting Started" & it gets straight into the business of explaining the topic without trying to squeeze just enough examples to fit 5 mins. I would rather get the good stuff. It was 13 mins well spent.
If it is not too much to ask, a Git repository would be great for a Newbie to dive right in.
BTW, I arrived here after Pandas and Matplotlib.
I´ve just started to learn programming with python. Working with numpy is my goal. Thank you for the awesome tutorial!
Found the interruptions helpful because they got me focused, thanks for a great vid hope you make more like these
There is an error in the video. In minute 3:22
If you want to convert a list to numpy array by name, just add the name between the curved brackets not the square brackets
E.g. a_list=[3, 6, 9, 0, 13]
Example a_array = np.array(a_list)
NOT np.array([a_list] ) as you did!
The problem is that what you did will make a wrong shaped array that will be cause errors when you try to reference or slice.
Thanks for the rest of your video.
I was wondering about this. Thanks doctor.
It depends of what you want to do, you are right, but he is not wrong, i ve used arrays that way (for example with cv2).
what do you mean wrong shaped array?
@@StellaKatsarou If you have the array np.array([3, 6, 9, 0, 13]) its shape will be 5*1; i.e. a vector, while the array np.array([[3, 6, 9, 0, 13]]) (Notice the double square bracket) has a shape of 1*5; i.e an array of 1 row and 5 columns. Wrong shaped means you want 1*5 you got 5*1, which are totally different in the array terms.
@@drnesr The shape of np.array([3,6,9,0,13]) is (5,) = (1,5) but not a good representation. The shape of array np.array([[3, 6, 9, 0, 13]]) is (1,5) which gives the same result as before, but this is a better representation and a Standard* way. Hope I helped
Good introduction to Numpy. I would like it better if you didn’t stop the explanation to say “faster” in between it.
At 2:44,
np.empty(3) doesn't creates an empty array.
Rather it creates an array with random values.
By the way, your teaching style is really fantastic. Kudos!
Same..but why is this happening
Why the 1300 dislikes, i find it very very helpful
Annoying interruptions but use of photo as an array illustration was genius!
Without the interruptions, this 13 minute 5 minute video could and should've been a 12 minute 5 minute video.
Usually i increase the speed of lectures from other people but this one is really great... quick direct and with practical examples.....
Thank you. Python newbie here. Great video. Very useful to give the example with the picture as an example of numpy's operations on an array.
I found interruptions quite amazing and they helped me focus. Good video for a starter like me but wish he told how an advanced or a beginner tutorial this is.
He reminds me about my childhood and the teaching system. So smart dude❤
actually those interruptions were quite helpful for me. they kept me from losing attention and falling half asleep
I loved the interruptions - unlike a lot of the commenters here. Your videos are fun to watch - never boring. The geeks who don't like it can go back to reading arid programming books. Don't change a thing
Its like real life - "this should take a few days to learn" ... two weeks later...
lol!
Most likely but great to start with a good idea what to expect. Inspiration for the learning, you know.
Literally Learned the Numpy Packages in 10 minutes. I was learning on DataCamp and was seriously getting confused, thanks!
I have a feeling your channel is about to explode. Every time I get recommended awesome under-the-radar channels, they seem to gain subscribers really fast (given the content keeps coming). Recommender systems... the more you know. Probably user-user similarity.
If you didn't notice the video was 13 minutes before clicking on it that's on you *shrugs*
Personally I liked the entertaining side of it, you're never going to actually learn a Python library in 5 minutes, but this is a decent overview!
You made this look BOTH interesting AND funny. Thank you 😁👍
Nobody had taught numpy like this. Great job
Very nice quality video! This is a great refresher of how NumPy could be used and how it behaves in certain situations. Thanks so much! Your work is appreciated.
Honestly, the interruptions were great. People who want an intro without introductions can go check the other millions of intros on youtube, or just read the numpy manual
If he just cut the scenes where he tried to convene us that it will take more time but worth it, it would be close to 5 mins !!
Boss you kill my procrastination
And lit up my eyes for py libraries
Surely i will be your subscriber from now
I owe you very much for this vdo.
Great video. Have to watch a couple of times. A lot packed into a short video.
Thank you for the shift+enter!!! Man, i've been pressing run this whole time!!!
i found the constant cutting across to make disclaimers about the video length very distracting
It's like the short-attention-span theater version of short-attention-span theater. :) Thanks for the great, quick intro!
Video Ruined by Interruptions. Next time while showing something worth learning make sure its continuous without Interruptions.
Yes and do it slower. Else one dont remember anything
Take a chill pill. Let the guy have some fun!
I agree.
I enjoyed it, it added a more human approach to it.
imagine being this entitled.
The best teacher for Python. From my personal experience.
I did not mind the interruptions at all. I thought they were funny. Thanks for the quick tutorial !
Fantastic summary of it all. Wouldn't have minded some datasets to work through it on screen at the same time.
Nice quick introduction!! Just what I needed to refresh my numpy after a while i did not use it!! That's what I wanted, more numpy!!!
In contrast with other comments, I found the flash-interventions kind of funny and fully in line with the title and nature of this tutorial. They add the the author's personal touch and provide rhythm to this super-fast lesson!!
I wanna just say that I liked this video BECAUSE of the interruptions ahah when you disclose it won't be five minutes I laughed a lot
It was
BEST Pythonic Teacher EVER!
I love your 365 course..
Thank you very much, Sir, I came to know many things in just 5 min which is very helpful
I beg to differ from those who said that the interruptions were annoying.
He does a great work with his videos and the least that he interacts with us is by saying "NumPy! NumPy! NumPy!" and I really like that. Period.
Thanks for this practical and concrete introduction to NumPy
Sir, thank you. I like the way you teach. May god make you very rich.
Video Title: "Learn 'Numpy' in 5 minutes"
Video Length: "13:37"
Is it just me?
How can I trust a mans video if he doesn't even know that 5 < 13 ?
It's the YT equivalent of 'just the tip'
Same. That's why I disliked the video.
even if you watch it in 2x it's not 5 minutes
Just appreciate the work if you've gained from the video.
it wasn't only useful... it was SUPERB
you're the best. Continue your work...
I was actually happy for not being only 5 mins because you can't learn a library so quick and i thought it would be one of those videos that only say to you things like "Numpy is great... you should learn it, I hope you found this video help full click the like button". Nice content man thanks, very helpful for a guy that is to bored to read the documentation!
The title is so engaging and plus the way you present it . Thanks! Looking forward for more such quick learning videos.
great video! looking forward to watching your other videos! keep up the good work!
You're such a likeable amusing man! I just love your style of tutorial. Succinct, meaty and funny! Keep it up! ;)
this is easily the best summary of numpy ever
Next time don't interrupt, just let it flow.
brother gets an A+ on both being informative and annoying
interruptions are funny!!! I like this guy;s sense of humour
fantastic use of an image for numpy examples *mind blown*
Learn NUMPY in 13 minutes (With annoying interruptions!) - Best Python Library
fixed the title for ya
My subject coordinator recommended this video. Quote: "Good numpy intro: nice image array slicing and tips from slightly irritating guy". I found it pretty funny when I read that. After watching it, I definitely think that's an apt description.
Thanks for the video. The image processing was really great, I suppose the photos is of York city which u recently visited.
It is!
wooaw that bit of deal with image using matplotlib....loved that part!!
Great video. I agree with the comments on the interruptions. I look forward to seeing your other videos.
Thanks a ton! just started research in uni for data science and this really helped me grasp numpy better. You rock
I liked the interruptions :P Great Video!
Thank you very much, brother! This video was very informative to me. Now I feel more confident to talk about Numpy. I think I've really been numpied out haha
I'm so impatient these days that I fast-forwarded an "in a nutshell" video. Yeah... Maybe that's what a shitload of internet does to your brain. '-'
Rafael Pontes yup. I usually watch videos at 2x
Nowadays we can use vscode, create a new .py file and add "# %%" to the file to create a new code cell. Then shift-enter to run that cell. Vscode does the installation.
Calm down dude, no need to rush!
The interruptions were a bit annoying, we can speed up the video if we want ;-)
After waching this video tutorial, i fall in love with NumPy, now i need more NumPy, least 1 hour long video of NumPy.
I liked the interventions, its hilarious and kept the discussion friendly. Good stuff.
My biggest problem has been my IDE. I haven't programmed in like 10 years and came into Python from that decade-long break with new born eyes. My first ever experience with an interpretive language and I absolutely ADORE Python.
All of my prior experience was within Visual Studio, specifically VB & C# on the .NET framework. And in one year in particular we used the XNA library in conjunction with C# to create indie games on the Xbox. Tons of experience on TopCoder and BPA competition.
Point is, it didn't take me long to get a grip on Python. It's a beauty. But I've been programming exclusively on a mobile IDE for Android that is just a barebones text editor with a compiler and it was enough to get acquainted with Python but it's failing me when it comes to libraries.
I feel like I've hit a brick wall with learning. I can rip open source code for games and know exactly what's going on, but I'm lost when it comes to the limitations of the functions within libraries. I see they're spawning rectangles with .rect functions and I can interpret that they're feeding it X,Y coordinates for location and size, as well as mathematically calculating things like center and positional manipulation and yadda yadda yadda.
I see imports like tkinter and pygame and various functions within those libraries but the extent of their use-cases is lost on me because SO much of learning libraries comes down to the assistance within an IDE. Hitting the dot key and reading out a list of all possible functions with dev notes on the specifics of their functionality.
Just seeing this made me realize exactly what my problem is. I've got to switch tools.
Does anyone have any advice for a combination of tools, like an IDE and maybe even add-ons that would make this process as effortless as possible? My only experience is with Visual Studio but I've heard good things about Atom / Jupyter and even things like Kite. If anyone has a quick infodump that could fill me in I would much appreciate it.
Your videos are great. I watched only two so far but I would continue watching. Keep posting. Do it your way, people shouldn't (imo) focus on the interruptions as the content is very informative and concise in your videos. Thanks!
I kept watching the video until final because of his good humor
Fantastic video, thoroughly enjoyed your entertaining delivery; unlike many other channels that make computer science utterly boring. Great work, well appreciated :-)
Good demo, appreciate the effort, would prefer demo without interruption of jokes though. Thanks for sharing!