Close Menu
    Trending
    • AMD CEO Claims New AI Chips ‘Outperform’ Nvidia’s
    • How AI Agents “Talk” to Each Other
    • Creating Smart Forms with Auto-Complete and Validation using AI | by Seungchul Jeff Ha | Jun, 2025
    • Why Knowing Your Customer Drives Smarter Growth (and Higher Profits)
    • Stop Building AI Platforms | Towards Data Science
    • What If Your Portfolio Could Speak for You? | by Lusha Wang | Jun, 2025
    • High Paying, Six Figure Jobs For Recent Graduates: Report
    • What If I had AI in 2018: Rent the Runway Fulfillment Center Optimization
    Finance StarGate
    • Home
    • Artificial Intelligence
    • AI Technology
    • Data Science
    • Machine Learning
    • Finance
    • Passive Income
    Finance StarGate
    Home»Machine Learning»Machine Learning Roadmap. From Zero to Advanced. | by Timur Bikmukhametov | Mar, 2025
    Machine Learning

    Machine Learning Roadmap. From Zero to Advanced. | by Timur Bikmukhametov | Mar, 2025

    FinanceStarGateBy FinanceStarGateMarch 4, 2025No Comments6 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Reddit Telegram Email
    Share
    Facebook Twitter LinkedIn Pinterest Email


    Now we’re attending to the “most attention-grabbing“ half.

    My opinion is that it’s essential to know the fundamentals properly to be a strong information scientist. It doesn’t imply to be a nerd, however a great understanding of the primary rules will assist you to in each the job and succeeding in an interview.

    Within the roadmap, I counsel you get to know solely essentially the most typically used algorithms however it’s important to know them very properly. Utilizing this information, you may then proceed with different algorithms.

    Now, let’s go.

    Andrew Ng course

    It is a excellent course to get an outline of what machine studying is and what are the 2 commonest issues which might be solved by ML: regression and classification. Don’t go over the tons of different intro programs, take this.

    Word: by default, Coursera is just not free however you may ask for monetary help they usually provides you with that after consideration. I did that a number of instances again in my pupil days.

    Step 1: Videos of 3blue1brown about linear algebra

    Step 2: Tutorial of Python Linear Algebra by Pablo Caceres

    Linear ALgebra
    Determine from 3blue1brown YouTube Channel

    Step 1: Statistics Crash Course by Adriene Hill

    Step 2: Learn Statistics with Python by Ethan Weed

    There are a large quantity of algorithms however you barely use even 20% of them. I suggest you be taught the next checklist after which proceed with the remaining utilizing the data you get.

    There will probably be some intersections with Andrew Ng’s course, however it could not damage to go a bit deeper and have totally different implementations and views on the identical materials.

    Intro idea: Nando de Freitas lectures at UBC

    Python Implementation

    Regularization in linear regression

    LASSO feature selection
    LASSO Regularization and Function Choice (Picture by Author)

    Regularization is a vital idea to grasp and with linear fashions, you are able to do it simpler. There will probably be quite a lot of questions in interviews about it, so be sure to know them.

    Step 1: Nando de Freitas lectures at UBC

    Step 2: Visible rationalization with code

    Sklearn tutorial with Lasso model

    Logistic regression is a baseline algorithm for classification duties. As it’s extremely associated to the linear regression mannequin, you do not want to be taught it from scratch however you will need to perceive some necessary ideas about it.

    Intro: Logistic regression topic of mlcourse.ai

    Selected topic: odds ratio as weights interpretability

    This one it’s important to know by coronary heart, I’m sorry. I provide you with some good sources to begin.

    Gradient Boosting
    Gradient Boosting Algorithm Construction (Picture by Author)

    Step 1: Gradient Boosting topic of mlcourse.ai

    Step 2: Gradient Boosting, deeper dive

    I personally discovered loads from the unique XGBoost paper, however Natekin’s paper could be very detailed and all the time nice to return again to whenever you overlook issues.

    Step 3: Demo playground by Alex Rogozhnikov

    One other genius made a terrific visualization for us, regular folks. By the way in which, take a look at his total weblog. It’s merely superb.

    One other essential algorithm to know by coronary heart. Please, perceive the distinction between Random Forest and Gradient Boosting, I guess you get this query in 30–40% of the interviews.

    Step 1: Lectures by Nando de Freitas

    Step 2: Bagging topic on mlcourse.ai

    Link to the material

    You will have grown up, my pal. You’re able to know be taught issues from information with out understanding what’s the true label/worth. Let’s see how.

    k-Means Clustering (Picture by Author)
    1. PCA: Material from the one and famous Sebastian Rashka
    2. t-SNE
      –
      What is it and how to run it in Python
      – How to use t-SNE effectively (with great visualizations)
    3. UMAP
    PCA and t-SNE visualization (Source)

    Function choice is likely one of the most necessary subjects whenever you actually wish to enhance your mannequin, make it extra clear, and perceive the WHYs behind the predictions.

    Function significance

    Linear strategies: Chapter 5 of Interpretable Machine Studying ebook

    Tree-based methods: Youtube Raschka lecture

    Permutation feature importance: Chapter 8 of Interpretable Machine Learning book

    SHAP: SHAP library documentation

    Mannequin metrics analysis

    Okay, you match the mannequin however then what? Much more, which metric you select to your drawback? The next hyperlinks present a great overview about Execs and Cons of the primary regression and classification metrics. You may additionally typically see questions on these metrics within the interview.

    Regression metrics: H2O blog tutorial

    Classification metrics: Evidently AI blog tutorial

    Cross-validation is necessary to grasp to successfully keep away from overfitting.

    There are tons of sources on neural networks. It’s THE hottest matter. Particularly with all the thrill with LLM. For my part, to get an intro into the subject, Andrew Ng’s specialization remains to be nice. He goes step-by-step and I assure you’ll perceive the idea. From that, you may go deeper relying on the area you have an interest in.

    It has 5 courses in it, so take a deep breath.

    Convolutional Neural Community Block (Source)

    Optimization is a comparatively laborious, heavy-math matter. However it’s utilized in many sensible purposes. I extremely advise you to steadily be taught this matter, as it would open nice profession alternatives.

    That is an AWESOME useful resource on numerical optimization. Clear examples in Python with mathematical derivations of the fundamentals.

    Bayesian Optimization

    Bayesian Optimization vs Grid Search vs Random Search (Picture by Author)

    Bayesian optimization is a set of optimization strategies that permit optimization of black-box features utilizing input-output sampling.

    Source 1: Awesome playground with theory explanation by distill.pub

    Source 2: Tutorial with deep theory dive by Nando de Freitas and Co.

    Optimization with SciPy

    There are numerous optimization Python libraries you should utilize for optimization. SciPy could be very typically used for it. When you come throughout the necessity to use SciPy for this, take a look at these sources:

    Typically it’s helpful to play with parameters and see how the algorithm works. Right here is a superb playground with a few strategies.

    Extra sources

    Sign processing is usually a vital a part of an ML tasks as a result of you may have to have the ability to filter information from noise outliers and different soiled stuff.

    Paid supply:

    I extremely suggest a paid course by Mike Cohen. For this worth and high quality, I take into account it basically free. I’ve accomplished the course myself and prefer it loads. Since then, I’ve utilized a number of strategies from the course in follow.

    Free sources:

    Time Collection Filters (Picture by Author)

    In order for you absolutely free alternate options, listed here are some hyperlinks on filtering and Fourier rework.

    Imply filter

    Median filters

    Exponential smoothing

    Gaussian filter

    Fourier rework

    High and low move filters



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous Article10 Highest-Paying, ‘Little-to-No-Experience’ Side Hustles
    Next Article Generative AI and Civic Institutions
    FinanceStarGate

    Related Posts

    Machine Learning

    Creating Smart Forms with Auto-Complete and Validation using AI | by Seungchul Jeff Ha | Jun, 2025

    June 14, 2025
    Machine Learning

    What If Your Portfolio Could Speak for You? | by Lusha Wang | Jun, 2025

    June 14, 2025
    Machine Learning

    YouBot: Understanding YouTube Comments and Chatting Intelligently — An Engineer’s Perspective | by Sercan Teyhani | Jun, 2025

    June 13, 2025
    Add A Comment

    Comments are closed.

    Top Posts

    Running MLflow Projects on Azure Databricks | by Invisible Guru Jii | Mar, 2025

    March 19, 2025

    Title: Mathematics Fundamentals You Need Before Jumping into Machine Learning | by Chitranshu Sinha | May, 2025

    May 3, 2025

    Yapay Zeka Nedir? İnsanlığın Zekayı Kodlama Arzusu | by Goksel Yesiller | Feb, 2025

    February 13, 2025

    Introduction to Sequence Modeling with Transformers | by Joni Kamarainen | Feb, 2025

    February 28, 2025

    10 tax-related policies that would help Canada win

    March 25, 2025
    Categories
    • AI Technology
    • Artificial Intelligence
    • Data Science
    • Finance
    • Machine Learning
    • Passive Income
    Most Popular

    What A Trump Presidency Means For Your Finances

    February 3, 2025

    5 Digital Marketing Statistics to Improve Your Law Firm’s Strategy in 2025

    February 5, 2025

    How a 27-Year-Old’s ‘Crazy’ Side Hustle Hit $30,000 a Month

    February 15, 2025
    Our Picks

    UnitedHealth Group Offers New CEO $60M Equity Award

    May 14, 2025

    Evaluating frontier models for stealth and situational awareness | by mike | May, 2025

    May 6, 2025

    What’s next for AI and math

    June 4, 2025
    Categories
    • AI Technology
    • Artificial Intelligence
    • Data Science
    • Finance
    • Machine Learning
    • Passive Income
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us
    Copyright © 2025 Financestargate.com All Rights Reserved.

    Type above and press Enter to search. Press Esc to cancel.