any info about making a 2d visualization of a data tree? like printing the drawing on the left as the output of the code
@AlexMathew-h7tАй бұрын
this could be explained much better for better understanding
@kushkapadia34752 ай бұрын
Thank you so much!
@rathanakchantreachum60682 ай бұрын
Could you give me the dataset of this project?
@brettwerner95442 ай бұрын
Great video, much appreciated.
@JimBalter2 ай бұрын
"no much"? Try "not many". It's pointless to say that space is O(n) ... that's true of any kind of hashing ... or binary trees or linear search or any sort of lookup. And perfect hashing doesn't use a 2-level table ... that's absurd. And what kind of turkey calls himself "The Genius"? No actual geniuses do.
@brianngohofficial2 ай бұрын
subscribed, thanks for the simple explanation !
@agbojuleemmanuelayomide50292 ай бұрын
what does the D' in the parenthesis mean?
@MOHAMEDABDULHAMEED962 ай бұрын
Hey Kindson, Did you upload the Logistic Regression in PyTorch file to GitHub?
@KindsonTheGenius2 ай бұрын
Oh I see. I've uploaded now, you can check 😊
@MOHAMEDABDULHAMEED962 ай бұрын
@@KindsonTheGenius Thanks! You're awesome..
@Daniel-ky9ow3 ай бұрын
wait onenote? ur based
@ssekid10463 ай бұрын
your teaching is so simple thanks
@vamsimeghana82603 ай бұрын
Can we just search the key in the alist dictionary key and return True or False accordingly instead of doing the search again in visited
@LV-cn9bx3 ай бұрын
There some errors in this video. First a Binary Tree is not Binary Search Tree. For some reason the teacher has confused both. Code seems confusing at times.
@sandriaelrod-iqbal53154 ай бұрын
Thank you, Kindson!
@kirmada224 ай бұрын
Thank youu !!🙂
@devxorxp4 ай бұрын
i will wait for more videos :) pleese dont stop
@KindsonTheGenius4 ай бұрын
This is very motivating. Many thanks 😊
@Gabrieliam4 ай бұрын
Interesting tutorials, all of them! If you care for any constructive feedback the sound needs improving, it's hard to focus on the tutorial because the low frequencies are very high and there's echoing or double voice going on.
@KindsonTheGenius4 ай бұрын
Thanks for the tips! I got a new mic now 😊
@Gabrieliam4 ай бұрын
@@KindsonTheGenius Great, I think I'll watch and learn from all your tutorials in time. As for the mic, it might be that audio settings or audio post processing matter more, your microphone looks like it's decent quality. For example if you record in a large, or mostly empty room it might need some echo reduction.
@Noirie995 ай бұрын
Very good course, thanks Sir!
@kindsonmusic5 ай бұрын
Many thanks 🙏 Remember to subscribe for more like this 😊
@aspoonfulofknowledge5 ай бұрын
Great to see you back making videos !
@KindsonTheGenius5 ай бұрын
Many thanks! Sure I"m back now😊😊
@Pardhu-g5g5 ай бұрын
thank you very much sir i got conformation form our subscribers thank you very much sir
@KindsonTheGenius5 ай бұрын
Most welcome!
@Pardhu-g5g5 ай бұрын
nice explanation
@KindsonTheGenius5 ай бұрын
Thanks and welcome
@pgkgaming42295 ай бұрын
Nice explanation ❤
@KindsonTheGenius5 ай бұрын
Thank you 🙂
@pgkgaming42295 ай бұрын
Nice explanation ❤❤❤
@KindsonTheGenius5 ай бұрын
Glad it was helpful!
@jevertt5 ай бұрын
wouldn't using "np.matmul" or "@" be more clear for what you are trying to teach?
@KindsonTheGenius4 ай бұрын
Yes, but it's quite tricky remembering all the functions needed for each operation
@MayureshSatao-t6k5 ай бұрын
I was solving leetcode basic tree questions, the preorder question passed all tests in one go! but when I tried postorder it didn't -> The correct order is left, right, root
@GiftEdeh-nk2gi5 ай бұрын
🥰
@KindsonTheGenius5 ай бұрын
🙏
@ETR129355 ай бұрын
amazing playlist!
@KindsonTheGenius5 ай бұрын
Glad you like it!
@alemtsehaygebremariam91286 ай бұрын
Thank you so much your codes are very clear and helped me a lot
@KindsonTheGenius5 ай бұрын
Glad to hear that
@ojasikesari72006 ай бұрын
Really intuitive videos, must say. Just a small correction needed for PostTraversal order: it is LEFT-> RIGHT-> ROOT instead of ROOT-> RIGHT-> LEFT. Cheers!
@namalwairene37886 ай бұрын
Am lost on how you got p2 and p3 in the table
@namalwairene37886 ай бұрын
Where did u get the values in the table. were they given in the question?
@MikołajMuras-l6s6 ай бұрын
here is the code: class Node: def __init__(self, data): self.left = None self.right = None self.data = data def insert(self, data): if self.data is None: self.left = Node(data) else: self.left.insert(data) if data < self.data: if self.left in None: self.left = Node(data) else: self.left.insert(data) elif data > self.data: if self.right in None: self.right = Node(data) else: self.right.insert(data) if __name__ == "__main__": root = None("g") root.insert("c") root.insert("b") root.insert("a") root.insert("e") root.insert("g") root.insert("f") root.insert("i") root.insert("h") root.insert("j") root.insert("k")
@lusandahp6 ай бұрын
Thanks bro
@KindsonTheGenius5 ай бұрын
Welcome
@ABUUCLIFFORD6 ай бұрын
god bless you sir
@KindsonTheGenius5 ай бұрын
Many thanks.
@domillima6 ай бұрын
Why did you use 128 neurons in your first dense layer ??
@OsimenEseigbe6 ай бұрын
VERY GOOD EXPLANATION
@KindsonTheGenius5 ай бұрын
Glad you think so!
@LEOWILLIAMG21CS7 ай бұрын
Why are you dividing by 255
@JustaBean4377 ай бұрын
Hi, sorry to comment 3 years after the video, but this seems like the method you explained doesn't actually get you the shortest path because it doesn't look ahead at future costs/distances. In your example: You said A C B D A is the shortest path, with a total of 14 (1+1+5+7) But there's another path, A C D B A that has a total of 11 (1+2+5+3) because it avoids the highest cost/distance path. This simplified solution is a bit misleading.
@sahithvamsi85917 ай бұрын
not clear
@KindsonTheGenius5 ай бұрын
I think the best way to get it to sink in is to follow the video along with a notebook. Let me know if this helps
@OmaretsoguwaAtsagbede7 ай бұрын
very helpful, thanks!
@KindsonTheGenius5 ай бұрын
Glad it was helpful!
@AvitBrianMugisha7 ай бұрын
28 x 28 is not 255....
@simracingexe8 ай бұрын
Sir, would you please mind lowering the background audio its kinda hard to concentrate .Thankyou
@KindsonTheGenius5 ай бұрын
Sorry, that's true. I have fixed the background noise in a different video.
@KevinGarcia-ws1kt8 ай бұрын
Thank you very much for your video it has really helped me understand DFS, especially with how it is supposed to work with the stack.
@KindsonTheGenius5 ай бұрын
Glad it was helpful!
@lindsey42278 ай бұрын
Ive been on a wild goose chase trying to figure out how to write the equation, this was such a simple and helpful explanation. Keep up the good work!