How I would learn Machine Learning (if I could start over)

Поділитися
Вставка
  • Опубліковано 24 лис 2024

КОМЕНТАРІ • 486

  • @wozskiyeh9651
    @wozskiyeh9651 2 роки тому +485

    1. Math 1:00
    2. Python 2:00
    3. Machine Learning TECH STACK 2:37
    4. Machine Learning Courses 3:35
    5. Hands - On & Data Preparation 4:45
    6. Practice & Build Portfolio 5:19
    7. Specialize & Create Blog 6:15
    Awesome! Thank you for sharing.

    • @pogo55555
      @pogo55555 Рік тому +5

      Thank you. May your thoughtfulness be rewarded a thousand times.

    • @Bobfahrer
      @Bobfahrer Рік тому +7

      … but the videos has chapters.. 🤨

    • @lolsamet9225
      @lolsamet9225 Рік тому +2

      W pfp

    • @AFuller2020
      @AFuller2020 Рік тому +1

      Thank you

    • @smaransure2234
      @smaransure2234 Рік тому +2

      learning machine learning is quite fun

  • @cisforcoding
    @cisforcoding Рік тому +804

    (Note to Self - How I would learn Machine Learning)
    01:00 1. Math: Khan Academy
    Recommended Courses:
    - Multi-Variable Calculus
    - Differential Equations
    - Linear Algebra
    - Statistics and Probability
    02:00 2. Python
    Recommended Courses
    - FreeCodeCamp: Python in 4-Hours Full Course
    - FreeCodeCamp: Intermediate Python in 6-Hours
    02:37 3. Machine Learning TECH STACK
    Most important Python libraries for Machine Learning, Data Science, and Data Visualization
    Optional: Can be picked up later when doing the ML course.
    Use for every project, which is why he recommends doing them now to build a base.
    Follow a free crash course for now, pick up more advanced concepts later if needed.
    - NumPy: Base for everything: Python Engineer - NumPy Crash Course Complete Tutorial
    - Pandas: Data handling: Keith Gali - Complete Python Pandas Data Science Tutorial
    - MatPlotLib: Visualization: FreeCodeCamp - MatPlotLib Crash Course
    --------------------------- The following MachineLearning courses aren't yet needed
    - Tensor Flow
    - Scikit Learn
    - PyCharge ???
    03:35 4. Machine Learning Courses
    - Machine Learning Specialization by Andrew Ng (Coursera)
    - Implement algorithm from scratch using his 'ML from SCRATCH' playlist
    - ML from Scratch Playlist by Python Engineer (Assembly AI)
    04:45 5. Hands - On & Data Preparation
    Kaggle Courses
    - Intro to Machine Learning
    - Intermediate Machine Learning
    05:19 6. Practice & Build Portfolio
    Kaggle: Competitions
    - They provide lots of datasets, platform to evaluate, and a community.
    06:15 7. Specialize & Create Blog
    - NLP
    - PyTorch / Tensor Flow
    - MLOps
    06:52 Start a VLOG
    - Tutorial
    - Share what you've learned
    - Share the projects you've built
    - Problems faced and how you have solved them
    - Write about a topic
    07:24 Books
    - Machine Learning with PyTorch and SckiKit-Learn by Raschka
    - Hands-On Machine Learning with SciKit-Learn, Keras & TensorFlow by Geron

  • @Glimmer-t44
    @Glimmer-t44 Рік тому +164

    Nice, I was struggling to decide what to learn first? This field is so overwhelming for beginners. Thanks for explaining out everything so clearly.

    • @AssemblyAI
      @AssemblyAI  Рік тому +11

      Very welcome!

    • @phil97n
      @phil97n Рік тому

      How did you proceed?

    • @humayoonkhan2797
      @humayoonkhan2797 Рік тому

      Hi Puneet, how did you learning ML go? I am starting to explore my options in this area.

    • @samaddss1
      @samaddss1 11 місяців тому

      Hey did you learn any math

  • @zaire419
    @zaire419 Рік тому +361

    Trying out this roadmap March 1st 2023. Will update everyone 6months from then. I’m already a software engineer so I’ll be skipping the coding steps and the math will be refreshers but far from a data scientist or data analyst for that matter. Hope everything works out. See you guys in the future!

  • @ammo7204
    @ammo7204 Рік тому +10

    starting this roadmap from today. wish me luck!
    hope everyone else also achieves their goal.

  • @InwardGaze
    @InwardGaze Рік тому +47

    I really value this plan...you don't understand. There's so many people who quit at the jump because people in the industry give very broad steps. This is a very clear plan with flexibility to go even deeper into each resource and step. Also, for starters, you even said 3 months. Some may say that is unrealistic but as a Math major with no CS experience but a heavy interest in AI theoretically, the drive is already there. Learning can't be rushed but it can definitely be integrated quickly with the right resources. I plan on putting at least 10 hours each week into this journey. Thanks again man!

    • @tjcogger1974
      @tjcogger1974 Рік тому +4

      How's it going so far?

    • @bunpagans
      @bunpagans Рік тому

      How’s your learning journey been ? You must be at the end of it. Give us an update. I am planning on joining the same journey

    • @ameynarwadkar7924
      @ameynarwadkar7924 Рік тому

      Give an update bro, I'm also Math major with a lot of interest in AI and on this journey rn.

    • @tjcogger1974
      @tjcogger1974 Рік тому

      @@ameynarwadkar7924 well, since OP is MIA, I'll give you my update. For context, I have a bachelor's in electromechanical engineering, so I skipped the math courses for now. I also have a ton of experience using MatLab, so I already have a solid fundamentals on coding logic, objects, and loops.
      Since I left my comment, I've gotten through the beginner python courses, half of the intermediate Python course, and I'm starting on the ML Tech Stack this weekend.
      The beginner python course was very helpful. He goes through some of the Python fundamentals by coming up with real-world problems, and then using the concepts he shows you to solve those problems. A word of advice: after he explains what he's about to do at the beginning of each tutorial, pause the video, and see if you can do it yourself. Be persistent. Then play the video, and compare what you built to what he shows you. It will take you much longer to get through the video this way, but I think it's a much more effective way to learn for most people.
      After the beginner course, I refined some of the basics by building my own simple programs of things I came up with. Example: I built a program that calculates a list of prime numbers in a user defined range, I wrote a script that approximates pi using a random number generator, I wrote an algorithm that calculates the largest number in a list of randomly generated integers.... Stuff like that. Simple logic puzzles that will help build your confidence and refine some of the basics in a practical context.
      I got about halfway through the "intermediate" video and realized it was kind of a waste of time for me. He doesn't actually discuss any intermediate concepts. He just lists off a whole bunch of miscellaneous functions that you may or may not use. He doesn't discuss where the functions would be used, or demonstrate how to solve a problem using the functions.... He just explains the function's syntax, and moves on. And frankly, I'm not going to remember 90% of it anyway, so I decided to skip the rest. I figure if there's a new function I need to use in the future, I'll just Google the syntax and proper use when I need it. But that's just me, and how I learn. If you're one of those people who have a photographic memory, or you plan on making syntax flashcards or something, then maybe this video will be useful to you. But personally I don't learn that way.
      The "ML Tech Stack" I'm just starting now, so I can't really speak to that yet. I plan on breezing through that pretty quickly. And I can give you another update once I start the actual ML stuff.

    • @SomogyiCosmin
      @SomogyiCosmin Рік тому +1

      Tell us where u at?

  • @saremish
    @saremish Рік тому +9

    Very effective steps! I have been following this roadmap for the past couple of months, and I am happy with the progress I have made

  • @andreypopov6166
    @andreypopov6166 Рік тому +14

    Thanks for the great learning plan. I would just add that for Multivariable Calculus, Single variable calculus is needed. And as an option instead of "Statistics Probability" i would use an ordered learning path: "Combinatorics -> Probability -> Statistics"

    • @adekanbioluwaseun219
      @adekanbioluwaseun219 Рік тому

      Hi Andrey, are you already an ML Engineer?

    • @andreypopov6166
      @andreypopov6166 Рік тому +1

      @@adekanbioluwaseun219 Hi. Not yet. I would say i've just start to learn the Math and Python. I am not sure i will became a ML engineer, but along the journey i will definitively pick up a lot of skills.

    • @yashdaftari6627
      @yashdaftari6627 Рік тому

      @@andreypopov6166 I think the same but I'm just starting, for now, should i just do the courses patrick mentioned in order?

    • @Sam-rz8ke
      @Sam-rz8ke 8 місяців тому

      Hi. How long did it took you guys to complete the math studies

  • @WhiteNoises
    @WhiteNoises Рік тому +20

    This is just what I was looking for! I was overwhelmed with the amount of resources out there, so it is incredibly useful to have a solid roadmap going forward. Thank you!

    • @romzeek
      @romzeek 7 місяців тому

      all you had to do was to poop and drink some coffee...

  • @nicekhan8552
    @nicekhan8552 Рік тому +5

    One of the most luxurious pieces of advice I've ever heard ( or watched)
    Thank you, Patrick.

  • @Jaeoh.woof765
    @Jaeoh.woof765 Рік тому +1

    Thanks for the video. I have learned lots of ML-related stuff in the past several months, but I feel like the way I have learned is NOT the the best way. The way you suggested makes more sense.

  • @ranjanadissanayaka5390
    @ranjanadissanayaka5390 11 місяців тому +2

    Hi Sir, Thanks so much for this roadmap. I want to learn AI & Machine Learning but I had no idea on how to do so. But your video explains everything I need to do. Thanks so much.

    • @jamesojih8050
      @jamesojih8050 11 місяців тому +1

      Can we connect? I want to learn also, and a learning partner won’t hurt

    • @ranjanadissanayaka5390
      @ranjanadissanayaka5390 11 місяців тому

      @@jamesojih8050 I'm currently busy learning other technologies. So, I wont be able to start on AI at this moment.

  • @sakshamkr1
    @sakshamkr1 Рік тому +2

    Intro to Statistical Learning by Gareth James and others is a great book for learning the statistical part for basics.

  • @ahafeezs
    @ahafeezs Рік тому +6

    Amazing how machine learning algorithm in UA-cam works, I was just thinking about ML earlier today and in the evening I got this video recommendation. ☀🔨

  • @julesf7857
    @julesf7857 Рік тому +1

    I liked this video and saved it. Made me also notice something about IT people: they don't breathe! I was listening to an IT specialist on TV yesterday, he didn't even listen to the Qs of the interviewer my head hurts its even unsettling

  • @quant_sheep
    @quant_sheep Рік тому +3

    My leaning map is below,hope it can help anybody
    i begin my python learning in 12,2022. I quickly read a book in 72h. After that I began to learn on Kaggle. I make my coding skills better(some basic pandas numpy and matplotlib) and learn some basic ml.
    After that I find that my data analysis skill is not good enough to clean the data. I read the book called python for data analysis. I finished it in 2,2023.
    From 3,2023 to now I am reading the ml part of hands on ml. I hope to finish it in next week. This book give us some real world views. After that it’s time to learn the math inside the ml.

  • @aminehadjmeliani72
    @aminehadjmeliani72 2 роки тому +6

    One of the most luxurious advice I've ever heard ( or watched)
    Thank you Patrick

  • @rons2722
    @rons2722 Рік тому +9

    This outline is phenomenal - thank you!

  • @kevinshen0807
    @kevinshen0807 Рік тому +20

    This man just single handedly planned my life, what a legend!

  • @etsc2825
    @etsc2825 11 місяців тому +2

    Heads up regarding the math course recommendations - you can't just do things like Multivariable Calculus out of the blue without proper background. That's the equivalent of Calculus 3 at my school, so I recommend completing Calculus 1 and 2 before knocking out the Multivariable course or any of the others for that matter - best of luck knocking out the course requirements!

  • @arthurferreira7997
    @arthurferreira7997 Рік тому +3

    Great video! I was completely lost on how to start learning about AI. I am a finance major, and I realized that if I don't learn it now, I will probably get left behind.

  • @afizs
    @afizs 2 роки тому +33

    Great roadmap Patrick! It would be great if add few examples projects to practise. Most of the ML learners find it challenging to find projects.

  • @krzysztofkosecki
    @krzysztofkosecki Рік тому +4

    Also starting with this roadmap today, for now refreshing math. Hope I can get through this 100%!

    • @abdel8819
      @abdel8819 9 місяців тому +1

      How is it going bro?

    • @krzysztofkosecki
      @krzysztofkosecki 9 місяців тому

      @abdel8819 slowly! But made some progress, started with Andrew Ng courses and trained my first model already;)

  • @EricaHill-l8w
    @EricaHill-l8w Рік тому

    This outline is phenomenal - thank you!. This outline is phenomenal - thank you!.

  • @alexjbriiones
    @alexjbriiones Рік тому

    Your suggestion to create a blog is simply genius.

  • @emirhankyaa
    @emirhankyaa 9 місяців тому +1

    I am starting to follow this roadmap on April 12th. I will update my status every month. Good luck everyone!

    • @miffinalpha3447
      @miffinalpha3447 6 місяців тому

      Удача тебе, судя по всему, не помогла

  • @intelectualoides8429
    @intelectualoides8429 4 місяці тому +1

    Hello guys, I am ready to become an ML engineer, I'm going to follow this path, and I'll be updating my progress, f*ck motivation, this is about habits. Let's go.

  • @shizarizvi3343
    @shizarizvi3343 Рік тому +1

    The blog tip is great! Gonna use that for sure inshAllah :)))

  • @leatheljamie
    @leatheljamie Рік тому

    Youre awesome, no bullshit, litteraly just helping people, thank you.

  • @TheOriginalJohnDoe
    @TheOriginalJohnDoe Рік тому +6

    I think the most underrated part is the math. I myself study Artificial Intelligence in university, which is a bit different and more advanced than simply machine learning. We take 12 courses upfront before starting 'the real deal' machine learning. We learn linear algebra, calculus, bayesian statistics, logic and I absolutely love the way our major is structured in this way, because now that we're doing machine learning, everything makes sense and with this knowledge you really learn on what data you can apply which model. You don't learn that online. They simply say: "for these problems, you simply use these models", which is okay for data scientists, but not for people who study AI themselves within the research field.

    • @abhijithjb4067
      @abhijithjb4067 Рік тому

      Can you share the link for the course curicculum or syllabus?

    • @randomly2888
      @randomly2888 11 місяців тому

      what university do you go to

  • @SHREK2
    @SHREK2 Рік тому +1

    I come from an excel/SQL/R background and am recently unemployed (by choice). Starting this from math stage beginning July 19, 2023.

  • @matheusdepaula687
    @matheusdepaula687 Рік тому

    Thank you for the video, I was lost on how to start

  • @grandchickenlord
    @grandchickenlord Рік тому +2

    Thanks for this. I’ve got a physics ms, so I have a lot of the math, and some basic python(I enjoy Python but really only had time to learn it while using it for physics stuff), and I’ve been looking at where to go next to better understand machine learning.

  • @anatoliyzavdoveev4252
    @anatoliyzavdoveev4252 Рік тому +1

    Thank you Patrik!!! Amazing intro for ML topic🙏🙏

  • @MiroKrotky
    @MiroKrotky 2 роки тому +1

    Now i know where to learn and in what order TY

  • @HS-dn5uu
    @HS-dn5uu Рік тому +1

    Thanks for the advice. I’m going to apply your approach in my learning. It sounded feasible and well-though 🙏

  • @EddieK007
    @EddieK007 Рік тому +1

    Fantastic. Short, to the point and clear!

  • @roystout9751
    @roystout9751 Рік тому +739

    You do not need to know the math to learn machine learning,, however, you will never be a pioneer in machine learning if you do not know the math.

    • @yoursubconscious
      @yoursubconscious Рік тому +39

      me: yes! no crazy math required!
      also me: completes your comment 😮🫣

    • @heyman620
      @heyman620 Рік тому +55

      ​​​​​​​@@yoursubconscious And "a little math" is a joke, you need Math, Physics or CS degree. If you don't have a science degree I would really suggest picking another field. Picking ML without learning at least economy level math is like being a short basketball player. I have (well, almost) a CS masters + as much experience as the guy in the video and plan to study an additional Math degree. The only option to skip it is to self study a lot of Math, but I consider it the same as having a degree. Truth is, most people from humanities think that advanced math is something else than it really is, so they might think they studied math, yet they have 0 intuition. TLDR go study Math or go be a software engineer, it might be even more interesting.

    • @yoursubconscious
      @yoursubconscious Рік тому +9

      @@heyman620 - every helpful and intuitive. 🙏 thank you, really!

    • @for-the-love-of-maths
      @for-the-love-of-maths Рік тому +11

      Currently I am a PhD maths student.
      But I am not into this coding thing
      I am going to start learning this ML and AI as I need these all for some research purpose .
      Are all these things too difficult
      Like coding ai and Ml?

    • @AcceleratedVelocity
      @AcceleratedVelocity Рік тому +3

      Ok, so you tottaly don't need to derive the error with respect to the trainable parameters to see how you should update the parameters, nor should you learn linear algebra to understand crosscorrelation or convolution or dot products or matrix multiplication, nor shall you learn probability. just stop capping 🧢🧢🧢.

  • @StaticBlaster
    @StaticBlaster Рік тому +2

    Any science, engineering, technology field will require a foundation of strong math skills, so it's VERY important to brush up on these skills or learn them in a university setting before moving on to the next steps of programming in python. Then you'll learn about python data structures and apply what you've learned to implementing machine learning algorithms. And so on!

  • @rsoorajs
    @rsoorajs 8 місяців тому

    This is exact i was looking for. Thank you so much

  • @ed23333
    @ed23333 Рік тому

    True and honest roadmap, thanks a lot!!

  • @e.i.l.9584
    @e.i.l.9584 Рік тому

    Omg perfect for my self made pre-master!!

  • @pogo55555
    @pogo55555 Рік тому

    Awesome. Go for it. Can’t wait to hear updates.

  • @JReuben111
    @JReuben111 Рік тому

    I've been learning AI for 20 years and I still have much to learn - IMHO, doubltful that someone could grok a critical mass of these concepts in 3 months. There is a world of difference from being able to ETL a dataset or fine tune a commodotized HF pipeline + tokenizer, and engineer a novel model architecture.

  • @debashreewaddadar1468
    @debashreewaddadar1468 Рік тому

    Thank you so much Patrick for your insights and guidance. The links you have provided are really helpful. Thanks again!

  • @MudassirKhan-mi8vu
    @MudassirKhan-mi8vu Рік тому +1

    Your voice is so f***ing sharp.

  • @spencerantoniomarlen-starr3069

    Anyone who says you don't need to understand calculus or matrix algebra to learn basic machine learning algorithms and methods (LASSO, Ridge, sample splitting, k-fold cross validation, Stepwise Regression, Random Forest, K-Nearest Neighbors) is technically correct it is possible. Anyone who says this about advanced methods like neural networks and deep neural networks (deep learning) is also correct, but there's a catch, the explanations of what a neural network is, and why/how it works you can find on the internet which can be understood by someone without calculus or matrix algebra are RIDICULOUSLY tedious and painful and overly complicated.
    Once you already understand that math and what standard/classical multiple (linear) regression analysis in statistics and econometrics is before learning machine learning as I did. What a neural network is just becomes something you can understand within a paragraph or two lol

  • @ereh5616
    @ereh5616 11 місяців тому +1

    Awesome content ! Thank you so much for sharing it

  • @sergiwsxd1622
    @sergiwsxd1622 Рік тому +5

    Hi guys! I'm starting today this roadmap. I'll be updating my journey in this comment so I don't get demotivated. See ya!

    • @sergiwsxd1622
      @sergiwsxd1622 Рік тому +3

      Ok, now I'm realising I just have to remember the math stuff. I'll give each course (multivariable calculus, differential equations, linear algebra and statistics probability) a week. In a month from now, I should have a strong math foundations

    • @sergiwsxd1622
      @sergiwsxd1622 Рік тому +3

      A week went by and I'm just starting with multivariable calculus (life has been hard). I said that I would give each math course one week, but man I love math. I will finish every course instead of just learning the basics because something tells me that I will need that information later when I finish the machine learning journey

    • @sergiwsxd1622
      @sergiwsxd1622 Рік тому +2

      Now that the second week has passed, I can now say that I'm concerned about the time I have spent studying. I have multivariable calculus on pause because I have to study linear algebra to understand every concept needed. Also, I didn't mention this, but I'm supposed to build an AI for a bet I did with a friend. I might jump straight to coding before finishing math to speed up things. See ya next week!

    • @sergiwsxd1622
      @sergiwsxd1622 Рік тому +2

      Third week completed and guess what, I'm still with maths. I've got a new hobbie (jugger) and you could say that I sure am procrastinating, statement that is true BUT progress is being made. Will I be able to learn the coding part in one month so I can study math for 2 months now? Probably not, but it's worth the risk

    • @sergiwsxd1622
      @sergiwsxd1622 Рік тому +5

      A month has been completed. Linear algebra is about to be finished and I'll finish multivariable calculus in a week or two. I can't wait to start coding :(
      Differential equations and statistics probability haven't been touched yet, but their time will come, I guess...

  • @skyr-inf
    @skyr-inf 2 роки тому +5

    Thank you so much. This is extremely valuable.

  • @singhshredz
    @singhshredz Рік тому +9

    Wonderful video! Very useful information was presented :)

  • @hounddog1
    @hounddog1 2 роки тому +1

    Thank u! This is a great roadmap.

  • @joshismyhandle
    @joshismyhandle Рік тому +1

    Very helpful. Thanks for sharing your experiences

  • @mohammadanassiddiqui1231
    @mohammadanassiddiqui1231 Рік тому

    Nice informative video and helped me build a roadmap. Thanks!!!

  • @Rip_Alpha_Omega
    @Rip_Alpha_Omega Рік тому

    finally i now undrestand machine learning well
    thank you so much!!!!!!!!!!!

  • @DanielShamany
    @DanielShamany Рік тому +2

    This is literally what I needed to be able to start learning ML and move away from Full Stack Engineering.

    • @curiously-cinnamon
      @curiously-cinnamon Рік тому +2

      Why do you want to move away from Full Stack Engineering? I'm a fresher who's being trained in full stack, and I'm wondering if it's the best way to go for me. Can you tell me what has turned you away from Full Stack?

  • @ishansheth3005
    @ishansheth3005 Рік тому +3

    Really good video for beginners in AI like me at least :)

  • @RajanProgrammer
    @RajanProgrammer Рік тому

    Very Good Explanation. Great Video. Thank You for you ❤

  • @hdominguez79
    @hdominguez79 Рік тому

    Thank you for making this video. It's very helpful.

  • @zoc2
    @zoc2 Рік тому

    This is a very good guideline. Thank you.

  • @nwabuakwuadoh611
    @nwabuakwuadoh611 Рік тому

    Thanks a lot for this detailed breakdown.

  • @LuisFernandoGaido
    @LuisFernandoGaido Рік тому +1

    I will love you forever because of this video.

  • @bleacherz7503
    @bleacherz7503 2 роки тому +3

    Nice job - can you do a deep learning path ? You

  • @anandkurella260
    @anandkurella260 Рік тому +1

    Starting on July 1st 2023 , keep liking and responding to my comment with your goals so we can all comeback here and update our progress 🙌

  • @City__Walker
    @City__Walker 10 місяців тому

    numpy is exactly what you need for mathematics. There is a book on linear algebra and Python. Not take book for Theoretical Linear Alghebra (it not for programmers)

  • @matijaxzivkovic8843
    @matijaxzivkovic8843 Рік тому +1

    Sir, thank you for this video. Sir you are very inspiring.

  • @senthilkumarpalanisamy365
    @senthilkumarpalanisamy365 Рік тому

    Amazing sir, thanks much. Please do more.

  • @devadethan9234
    @devadethan9234 Рік тому

    imma start my journey here

  • @lenderzconstable
    @lenderzconstable Рік тому

    I saved this video. I’m going to use it in my pursuit. I heard linear algebra is a recommended math to learn. Can anyone vouch for this?

  • @YAWPonthemic
    @YAWPonthemic Рік тому +3

    Will let you know. But I’m extremely motivated 🤓

    • @AssemblyAI
      @AssemblyAI  Рік тому +1

      That's awesome to hear! Good luck with learning

  • @dannuttle9005
    @dannuttle9005 Рік тому

    I like the general approach given here, and I am familiar with many of the learning resources and recommend them. However, I do not think it is reasonable to learn all of the material listed here in seven months. That would be rushing things, to put it mildly. With each topic--math, general programming, ML stacks, ML--you would learn to complete exercises, but not how to address new sitatuions. It takes longer than seven months, in my opinion, even if you devote yourself 100%.

  • @germanrocha6186
    @germanrocha6186 4 місяці тому

    Thank you for the advice!

  • @paramparekh6922
    @paramparekh6922 Рік тому

    Strong Suggestion: Make a video for "beauty in the underlying math of ML..."

  • @yashdaftari6627
    @yashdaftari6627 Рік тому

    can you make a video elaborating how to build a more effective portfolio in ml and which platform to use?

  • @varunpratapsingh6138
    @varunpratapsingh6138 Рік тому +1

    Thanks 👍🏻

  • @welcomelallaala
    @welcomelallaala Рік тому

    Great Guidance, thanks a lot!!

  • @rodblues6832
    @rodblues6832 Рік тому +3

    Nice, I’m starting Andrew Ng’s course next month, did the optional linear algebra and calculus prerequisites, so glad I did. Honestly, if you skip the math, you’re really going to sell yourself short.

    • @pagadalasumanth7969
      @pagadalasumanth7969 Рік тому

      I'm about to start the math part... you think by completing all the math modules will help me to start my AI journey?

    • @rodblues6832
      @rodblues6832 Рік тому

      @@pagadalasumanth7969 Yes, definitely. The mathematics classes are not completely necessary for the ML specialization, and they're actually more difficult than the ML Specialization, but because I took those prereqs, the ML class makes WAY more sense than without them.

    • @Ihsannurulimansfd
      @Ihsannurulimansfd Рік тому

      Where did you learn the maths from? Can I know

    • @rodblues6832
      @rodblues6832 Рік тому

      @@Ihsannurulimansfd Coursera has a series on the maths.

    • @Ihsannurulimansfd
      @Ihsannurulimansfd Рік тому

      @@rodblues6832 Ah, I've tried linear algebra on that maybe 4 months ago. On week 2 or 3, I found it really difficult to understand and I think it's explained vaguely (talking about eigenvalues and eigenvectors), so I gave up...

  • @anirbanc88
    @anirbanc88 Рік тому

    can you do the video on MLops, thank you for this amazing video, grateful

  • @АндрійСеменко-ж2э

    Very clear and an informative video

  • @kenchang3456
    @kenchang3456 Рік тому +1

    Yes, this was helpful. Thank you very much.

  • @danny74550
    @danny74550 2 роки тому +2

    I imagine a fairly applicable skill set.

  • @motema_mpembe
    @motema_mpembe Рік тому

    Very helpful, indeed.Thank you!

  • @AstaWatches
    @AstaWatches Рік тому

    Thank you for your work!

  • @slimbaron704
    @slimbaron704 5 місяців тому

    Thanks man, it’s very helpful

  • @satujodasrivathsav3050
    @satujodasrivathsav3050 Рік тому

    Math. Thank fudging god. So many of the well known tech UA-cam data scientists cover the same topic, unfortunately they are just glorified business analysts (no disrespect to BAs or DAs their profound knowledge in domain and data is what drives the industry). However, a true data scientist is a statistician/mathematician first. Programming is literally a language. I cannot be more literal when I say language, just as English , Latin, Sanskrit are languages to communicate, programming is simililar. Python has a lot of “vocabulary” (libraries),accommodating machine learning, we can implement any ml algo using any language. That’s it. If you have a proper mathematician and a proper coder that’s the ultimate combo. Design the algo code the basics, give to a proper coder and they will optimize it the compute. Cheers mate. Subbed.

  • @ozkurede
    @ozkurede Рік тому

    Okay, this will be interesting.
    I am starting tomorrow, July 15, 2023, and hope to complete all by the end of August. So, about 45 days. We'll see how it goes.

  • @luisguimaraes7348
    @luisguimaraes7348 Рік тому +1

    This video is amazing

  • @ronboyd9
    @ronboyd9 Рік тому

    Andrew Ng has a great Machine Learning course on Coursera.

  • @cdcvq9513
    @cdcvq9513 Рік тому

    Do not be tired

  • @khalidelgazzar
    @khalidelgazzar 11 місяців тому

    This is a great video. Thank you 😊

  • @pjakobsen
    @pjakobsen Рік тому

    Great video, thank you so much.

  • @marco.nascimento
    @marco.nascimento Рік тому +1

    Great advice!!

  • @RadioactiveChutney
    @RadioactiveChutney 5 місяців тому

    Note for me:
    Follow this edhi expert level lo undi AI engineer kosam

  • @commanderchiefmaster
    @commanderchiefmaster 10 місяців тому

    This was helpful. Subscribed

  • @edwardlin2941
    @edwardlin2941 Рік тому +1

    Very helpful, thank you

  • @cheahanqi964
    @cheahanqi964 Рік тому

    Awesome incredible advice! TQ so much

  • @knowledgeseeker97
    @knowledgeseeker97 Рік тому

    its very helpful and thanks for the information

  • @natetodd2545
    @natetodd2545 Рік тому

    very helpful, thank you!

  • @heshankumarasinghe3159
    @heshankumarasinghe3159 Рік тому

    Thank you for this video...

  • @AI_Boost
    @AI_Boost Рік тому

    Thx, You are amazing!