Course Features
Price
Study Method
Online | Self-paced
Course Format
Reading Material - PDF, article
Duration
11 hours, 25 minutes
Qualification
No formal qualification
Certificate
At completion
Additional info
Coming soon
- Share
Overview
This course provides a comprehensive, project-based introduction to applied machine learning using Python, with a focused emphasis on regression and classification techniques. You’ll begin with the foundational concepts of linear regression using Scikit-learn, learning how to prepare data, build models, and interpret output through real-world datasets like the Boston Housing dataset. From understanding bias-variance tradeoffs to visualising learning curves and prediction errors, you'll gain a solid grasp of regression analysis.
The course then dives into classification with logistic regression, introducing key concepts like the sigmoid function, decision boundaries, and evaluation metrics such as precision, recall, and the AUC-ROC curve. With the Titanic dataset, you'll conduct exploratory data analysis, handle missing values, apply one-hot encoding, and use recursive feature elimination for improved accuracy.
Support Vector Machines (SVM) are then explored in depth, including kernel functions and the role of feature scaling. You’ll build linear and kernel-based SVM models using the Breast Cancer dataset, gaining insights into how SVMs handle complex classification tasks.
Finally, the course covers cross-validation and hyperparameter tuning techniques, including K-Fold CV, Grid Search, and Randomised Search. You’ll learn how to avoid overfitting and improve model generalisation by applying regularisation techniques and fine-tuning hyperparameters for better performance.
Who is this course for?
This course provides a comprehensive, project-based introduction to applied machine learning using Python, with a focused emphasis on regression and classification techniques. You’ll begin with the foundational concepts of linear regression using Scikit-learn, learning how to prepare data, build models, and interpret output through real-world datasets like the Boston Housing dataset. From understanding bias-variance tradeoffs to visualising learning curves and prediction errors, you'll gain a solid grasp of regression analysis.
The course then dives into classification with logistic regression, introducing key concepts like the sigmoid function, decision boundaries, and evaluation metrics such as precision, recall, and the AUC-ROC curve. With the Titanic dataset, you'll conduct exploratory data analysis, handle missing values, apply one-hot encoding, and use recursive feature elimination for improved accuracy.
Support Vector Machines (SVM) are then explored in depth, including kernel functions and the role of feature scaling. You’ll build linear and kernel-based SVM models using the Breast Cancer dataset, gaining insights into how SVMs handle complex classification tasks.
Finally, the course covers cross-validation and hyperparameter tuning techniques, including K-Fold CV, Grid Search, and Randomised Search. You’ll learn how to avoid overfitting and improve model generalisation by applying regularisation techniques and fine-tuning hyperparameters for better performance.
Requirements
This course provides a comprehensive, project-based introduction to applied machine learning using Python, with a focused emphasis on regression and classification techniques. You’ll begin with the foundational concepts of linear regression using Scikit-learn, learning how to prepare data, build models, and interpret output through real-world datasets like the Boston Housing dataset. From understanding bias-variance tradeoffs to visualising learning curves and prediction errors, you'll gain a solid grasp of regression analysis.
The course then dives into classification with logistic regression, introducing key concepts like the sigmoid function, decision boundaries, and evaluation metrics such as precision, recall, and the AUC-ROC curve. With the Titanic dataset, you'll conduct exploratory data analysis, handle missing values, apply one-hot encoding, and use recursive feature elimination for improved accuracy.
Support Vector Machines (SVM) are then explored in depth, including kernel functions and the role of feature scaling. You’ll build linear and kernel-based SVM models using the Breast Cancer dataset, gaining insights into how SVMs handle complex classification tasks.
Finally, the course covers cross-validation and hyperparameter tuning techniques, including K-Fold CV, Grid Search, and Randomised Search. You’ll learn how to avoid overfitting and improve model generalisation by applying regularisation techniques and fine-tuning hyperparameters for better performance.
Career path
This course provides a comprehensive, project-based introduction to applied machine learning using Python, with a focused emphasis on regression and classification techniques. You’ll begin with the foundational concepts of linear regression using Scikit-learn, learning how to prepare data, build models, and interpret output through real-world datasets like the Boston Housing dataset. From understanding bias-variance tradeoffs to visualising learning curves and prediction errors, you'll gain a solid grasp of regression analysis.
The course then dives into classification with logistic regression, introducing key concepts like the sigmoid function, decision boundaries, and evaluation metrics such as precision, recall, and the AUC-ROC curve. With the Titanic dataset, you'll conduct exploratory data analysis, handle missing values, apply one-hot encoding, and use recursive feature elimination for improved accuracy.
Support Vector Machines (SVM) are then explored in depth, including kernel functions and the role of feature scaling. You’ll build linear and kernel-based SVM models using the Breast Cancer dataset, gaining insights into how SVMs handle complex classification tasks.
Finally, the course covers cross-validation and hyperparameter tuning techniques, including K-Fold CV, Grid Search, and Randomised Search. You’ll learn how to avoid overfitting and improve model generalisation by applying regularisation techniques and fine-tuning hyperparameters for better performance.
-
- Introduction to Linear Regression 00:10:00
- Regression Use Cases and Examples 00:10:00
- Different Types of Linear Regression 00:10:00
- Evaluating Model Performance 00:10:00
- Understanding the Bias-Variance Tradeoff 00:10:00
- What is sklearn and train_test_split 00:10:00
- Upgrading and Importing Python Packages 00:10:00
- Loading the Boston Housing Dataset 00:10:00
- Dataset Analysis and Exploration 00:10:00
- Exploratory Data Analysis – Pair Plot 00:10:00
- Exploratory Data Analysis – Histogram Plot 00:10:00
- EDA – Heatmap Correlation 00:10:00
- Train-Test Split and Model Training 00:10:00
- Evaluating Regression Model Accuracy 00:10:00
- Plotting Actual vs Predicted Prices 00:10:00
- Learning Curves – Part 1 00:10:00
- Learning Curves – Part 2 00:10:00
- Residual Plot for Interpretability 00:10:00
- Prediction Error Plot for Validation 00:10:00
-
- Introduction to Logistic Regression 00:10:00
- Understanding the Sigmoid Function 00:10:00
- What is a Decision Boundary? 00:10:00
- Titanic Dataset Overview 00:10:00
- Loading the Titanic Dataset 00:10:00
- Exploratory Data Analysis – Heatmap & Density Plot 00:10:00
- Handling Missing Age Values – Part 1 00:10:00
- Handling Missing Age Values – Part 2 00:10:00
- Fixing Missing Embarkation Town 00:10:00
- Data Type Correction and Value Mapping 00:10:00
- Applying One-Hot Encoding 00:10:00
- Splitting Dataset for Training 00:10:00
- Model Building and Evaluation 00:10:00
- Feature Selection using RFE 00:10:00
- Evaluating Accuracy, F1, Precision, Recall – Part 1 00:10:00
- Evaluating Metrics and ROC – Part 2 00:10:00
- Evaluating Metrics and ROC – Part 3 00:10:00
- ROC Curve and AUC Score – Part 1 00:10:00
- ROC Curve and AUC Score – Part 2 00:10:00
- ROC Curve and AUC Score – Part 3 00:10:00
- Introduction to Support Vector Machines (SVM) 00:10:00
- Understanding SVM Kernels 00:10:00
- Breast Cancer Dataset Overview 00:10:00
- Loading the Breast Cancer Dataset 00:10:00
- Visualising Cancer Data – Part 1 00:10:00
- Visualising Cancer Data – Part 2 00:10:00
- Standardising Features for SVM 00:10:00
- Train-Test Split for Model Development 00:10:00
- Building and Training a Linear SVM 00:10:00
- Applying Linear SVM on Scaled Features 00:10:00
- Exploring Polynomial, RBF, and Sigmoid Kernels 00:10:00
- Exam of Applied Machine Learning with Python: Regression and Classification 00:50:00

No Reviews found for this course.
Is this certificate recognized?
Yes, our premium certificate and transcript are widely recognized and accepted by embassies worldwide, particularly by the UK embassy. This adds credibility to your qualification and enhances its value for professional and academic purposes.
I am a beginner. Is this course suitable for me?
Yes, this course is designed for learners of all levels, including beginners. The content is structured to provide step-by-step guidance, ensuring that even those with no prior experience can follow along and gain valuable knowledge.
I am a professional. Is this course suitable for me?
Yes, professionals will also benefit from this course. It covers advanced concepts, practical applications, and industry insights that can help enhance existing skills and knowledge. Whether you are looking to refine your expertise or expand your qualifications, this course provides valuable learning.
Does this course have an expiry date?
No, you have lifetime access to the course. Once enrolled, you can revisit the materials at any time as long as the course remains available. Additionally, we regularly update our content to ensure it stays relevant and up to date.
How do I claim my free certificate?
I trust you’re in good health. Your free certificate can be located in the Achievement section. The option to purchase a CPD certificate is available but entirely optional, and you may choose to skip it. Please be aware that it’s crucial to click the “Complete” button to ensure the certificate is generated, as this process is entirely automated.
Does this course have assessments and assignments?
Yes, the course includes both assessments and assignments. Your final marks will be determined by a combination of 20% from assignments and 80% from assessments. These evaluations are designed to test your understanding and ensure you have grasped the key concepts effectively.
Is this course accredited?
We are a recognized course provider with CPD, UKRLP, and AOHT membership. The logos of these accreditation bodies will be featured on your premium certificate and transcript, ensuring credibility and professional recognition.
Will I receive a certificate upon completion?
Yes, you will receive a free digital certificate automatically once you complete the course. If you would like a premium CPD-accredited certificate, either in digital or physical format, you can upgrade for a small fee.
Course Features
Price
Study Method
Online | Self-paced
Course Format
Reading Material - PDF, article
Duration
11 hours, 25 minutes
Qualification
No formal qualification
Certificate
At completion
Additional info
Coming soon
- Share
Executive Assistant
Course Line237$1,020.10Original price was: $1,020.10.$31.21Current price is: $31.21.Project Management Professional (PMP) Certification Prep
Course Line237$1,020.10Original price was: $1,020.10.$31.21Current price is: $31.21.PAT Testing: Key Techniques for Safe Electrical Equipment Inspection Edit
Course Line244$1,020.10Original price was: $1,020.10.$31.21Current price is: $31.21.