Close Menu
    Facebook LinkedIn YouTube WhatsApp X (Twitter) Pinterest
    Trending
    • How small businesses can leverage AI
    • Robots-Blog | Humanoide Robotik aus Deutschland: igus bringt neuen Serviceroboter auf den Markt
    • GM reimagines Hummer off-roader with California ideas unit
    • London’s DEScycle secures over €10 million in grant funding to scale critical metals recovery platform
    • How to Edit, Merge, and Split PDFs With Free Online Tools
    • Florida crackdown targets illegal machines in Sarasota
    • Audiophile-Oriented Noble Audio Debuts More Affordable Osprey Earbuds
    • New radio bursts detected from binary stars
    Facebook LinkedIn WhatsApp
    Times FeaturedTimes Featured
    Tuesday, June 2
    • Home
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    • More
      • AI
      • Robotics
      • Industries
      • Global
    Times FeaturedTimes Featured
    Home»Artificial Intelligence»The Machine Learning and Deep Learning “Advent Calendar” Series: The Blueprint
    Artificial Intelligence

    The Machine Learning and Deep Learning “Advent Calendar” Series: The Blueprint

    Editor Times FeaturedBy Editor Times FeaturedNovember 30, 2025No Comments7 Mins Read
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr WhatsApp Email
    Share
    Facebook Twitter LinkedIn Pinterest Telegram Email WhatsApp Copy Link


    , it is extremely simple to coach any mannequin. And the coaching course of is at all times executed with the seemingly similar technique match. So we get used to this concept that coaching any mannequin is comparable and easy.

    With autoML, Grid search, and Gen AI, “coaching” machine studying fashions may be executed with a easy “immediate”.

    However the actuality is that, once we do mannequin.match, behind every mannequin, the method may be very totally different. And every mannequin itself works very otherwise with the info.

    We will observe two very totally different traits, virtually in two reverse instructions:

    • On the one hand, we practice, use, manipulate, and predict with fashions (similar to generative fashions) increasingly more advanced.
    • Then again, we aren’t at all times able to explaining easy fashions (similar to linear regression, linear discriminant classifier), and recalculating outcomes by hand.

    It is very important perceive the fashions we use. And the easiest way to grasp them is to implement them ourselves. Some folks do it with Python, R, or different programming languages. However there may be nonetheless a barrier for many who don’t program. And these days, understanding AI is crucial for everybody. Furthermore, utilizing a programming language can even disguise some operations behind already current features. And it isn’t visually defined, which means that every operation just isn’t clearly proven, for the reason that operate is coded then run, to solely give the outcomes.

    So one of the best device to discover, in my view, is Excel. With the formulation that clearly present each step of the calculations.

    In truth, once we obtain a dataset, most non-programmers will open it in Excel to grasp what’s inside. This is quite common within the enterprise world.

    Even many information scientists, myself included, use Excel to take a fast look. And when it’s time to clarify the outcomes, displaying them instantly in Excel is usually the best means, particularly in entrance of executives.

    In Excel, every thing is seen. There isn’t a “black field”. You possibly can see each method, each quantity, each calculation.

    This helps rather a lot to grasp how the fashions actually work, with out shortcuts.

    Additionally, you don’t want to put in something. Only a spreadsheet.

    I’ll publish a collection of articles about how you can perceive and implement machine studying and deep studying fashions in Excel.

    For the “Introduction Calendar”, I’ll publish one article per day.

    Generated by Gemini: “Introduction Calendar” of AI

    Who is that this collection for?

    For college students who’re learning, I feel that these articles supply a sensible perspective. It’s to make sense of advanced formulation.

    For ML or AI builders, who, generally, haven’t studied concept — however now, with out difficult algebra, chance, or statistics, you may open the black field behind mannequin.match. As a result of for all fashions, you do mannequin.match. However in actuality, the fashions may be very totally different.

    That is additionally for managers who could not have all of the technical background, however to whom Excel will give all of the intuitive concepts behind the fashions. Subsequently, mixed with your online business experience, you may higher choose if machine studying is absolutely mandatory, and which mannequin could be extra appropriate.

    So, in abstract, It’s to raised perceive the fashions, the coaching of the fashions, the interpretability of the fashions, and the hyperlinks between totally different fashions.

    Construction of the articles

    From a practitioner’s perspective, we normally categorize the fashions within the following two classes: supervised studying and unsupervised studying.

    Then for supervised studying, we have now regression and classification. And for unsupervised studying, we have now clustering and dimensionality discount.

    Overview of machine studying fashions from a practioner’s perspective – picture by writer

    However you certainly already discover that some algorithms could share the identical or comparable method, similar to KNN classifier vs. KNN regressor, determination tree classifier vs. determination tree regressor, linear regression vs. “linear classifier”.

    A regression tree and linear regression have the identical goal, that’s, to do a regression job. However once you attempt to implement them in Excel, you will note that the regression tree could be very near the classification tree. And linear regression is nearer to a neural community.

    And generally folks confuse Okay-NN with Okay-means. Some could argue that their objectives are utterly totally different, and that complicated them is a newbie’s mistake. BUT, we additionally must admit that they share the identical method of calculating distances between the info factors. So there’s a relationship between them.

    The identical goes for isolation forest, as we are able to see that in random forest there is also a “forest”.

    So I’ll set up all of the fashions from a theoretical perspective. There are three essential approaches, and we’ll clearly see how these approaches are applied in a really totally different means in Excel.

    This overview will assist us to navigate by way of all of the totally different fashions, and join the dots between lots of them.

    Overview of machine studying fashions organised by theoritial approaches – picture by writer
    • For distance-based fashions, we’ll calculate native or international distances, between a brand new statement and the coaching dataset.
    • For tree primarily based fashions, we have now to outline the splits or guidelines that can be used to make classes of the options.
    • For math features, the concept is to use weights to options. And to coach the mannequin, the gradient descent is principally used.
    • For deep studying fashions, we’ll that the primary level is about characteristic engineering, to create ample illustration of the info.

    For every mannequin, we’ll attempt to reply these questions.

    Basic questions concerning the mannequin:

    • What’s the nature of the mannequin?
    • How is the mannequin educated?
    • What are the hyperparameters of the mannequin?
    • How can the identical mannequin method be used for regression, classification, and even clustering?

    How options are modelled:

    • How are categorical options dealt with?
    • How are lacking values managed?
    • For steady options, does scaling make a distinction?
    • How can we measure the significance of 1 characteristic?

    How can we qualify the significance of the options? This query may also be mentioned. It’s possible you’ll know that packages like LIME and SHAP are extremely popular, and they’re model-agnostic. However the reality is that every mannequin behaves fairly otherwise, and it is usually attention-grabbing, and essential to interpret instantly with the mannequin.

    Relationships between totally different fashions

    Every mannequin can be in a separate article, however we’ll focus on the hyperlinks with different fashions.

    We may also focus on the relationships between totally different fashions. Since we actually open every “black field”, we may also know how you can make theoretical enchancment to some fashions.

    • KNN and LDA (Linear Discriminant Evaluation) are very shut. The primary makes use of a neighborhood distance, and the latter makes use of a world distance.
    • Gradient boosting is identical as gradient descent, solely the vector area is totally different.
    • Linear regression can also be a classifier.
    • Label encoding may be, kind of, used for categorical characteristic, and it may be very helpful, very highly effective, however it’s important to select the “labels” correctly.
    • SVM could be very near linear regression, even nearer to ridge regression.
    • LASSO and SVM use one comparable precept to pick out options or information factors. Have you learnt that the second S in LASSO is for choice?

    For every mannequin, we additionally will focus on one explicit level that the majority conventional programs will miss. I name it the untaught lesson of the machine studying mannequin.

    Mannequin coaching vs hyperparameter tuning

    In these articles, we’ll focus solely on how the fashions work and the way they’re educated. We is not going to focus on hyperparameter tuning, as a result of the method is actually the identical for each mannequin. We sometimes use grid search.

    Listing of articles

    Under there can be an inventory, which I’ll replace by publishing one article per day, starting December 1st!

    See you very quickly!

    …



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Editor Times Featured
    • Website

    Related Posts

    Escaping the Valley of Choice in BI

    June 2, 2026

    Ensuring Data Integrity with Cryptographic Hashing and the Ethereum Blockchain

    June 1, 2026

    RAG Is Not Machine Learning, and the ML Toolkit Solves the Wrong Problem

    June 1, 2026

    How to Combine Claude Code and Codex for Maximum Coding Power

    June 1, 2026

    It’s the Lessons We Learned Along the Way. Or, Is It?

    June 1, 2026

    Proxy-Pointer RAG: Eliminating Wasteful Entity & Relations Extraction in Knowledge Graphs

    May 31, 2026

    Comments are closed.

    Editors Picks

    How small businesses can leverage AI

    June 2, 2026

    Robots-Blog | Humanoide Robotik aus Deutschland: igus bringt neuen Serviceroboter auf den Markt

    June 2, 2026

    GM reimagines Hummer off-roader with California ideas unit

    June 2, 2026

    London’s DEScycle secures over €10 million in grant funding to scale critical metals recovery platform

    June 2, 2026
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    About Us
    About Us

    Welcome to Times Featured, an AI-driven entrepreneurship growth engine that is transforming the future of work, bridging the digital divide and encouraging younger community inclusion in the 4th Industrial Revolution, and nurturing new market leaders.

    Empowering the growth of profiles, leaders, entrepreneurs businesses, and startups on international landscape.

    Asia-Middle East-Europe-North America-Australia-Africa

    Facebook LinkedIn WhatsApp
    Featured Picks

    Finland confirms dates and processes for opening up gambling market

    January 21, 2026

    London’s First Concepts raises €871.7k to build “taste-aware” AI operating system for creative agencies

    March 17, 2026

    Meta investors settle $8bn lawsuit with Zuckerberg over Facebook privacy

    July 17, 2025
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    Copyright © 2024 Timesfeatured.com IP Limited. All Rights.
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us

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