This device is not compatible.
PROJECT
Dealing With Small Datasets In ML
In this project, we'll use different techniques to decrease over-fitting in a machine learning model while keeping high accuracies.
You will learn to:
Effectively deal with small datasets
Learn about regularization
Decrease overfitting
Perform data augmentation
Skills
Machine Learning Fundamentals
Deep Neural Networks
Prerequisites
Intermediate knowledge of Python
Basics of machine learning
Technologies
Python
Tensorflow
Project Description
Machine learning models need a lot of data to train and adjust their parameters. In the case of small datasets, because of the lack of data, it becomes harder to get better results. This issue may lead to overfitting.
In this project, we’ll be given a Sequential
model with all of the boilerplate code. This model has around 95% training with 75% validation accuracy, which shows that the model is overfitted.
Throughout the project, we’ll apply different techniques to reduce overfitting while retaining high accuracy.
Project Tasks
1
Getting Started
2
Base Model
3
Reducing Overfitting