Read and Explore the Data
Dive into the first step of the Keras workflow; Reading, exploring, and preprocessing the dataset.
We'll cover the following...
The first step for developing any model is reading and exploring the data. This helps answer the questions below:
- How many features does the data have?
- Are there any missing data?
- If the answer to question 2 is yes, then how should we eliminate missing data?
Take the example of the titanic dataset. The columns of the dataset are given below:
The task is to determine the survival of a person given x features.
π Note: We will be using the
pandas
library in this lesson. Learn about the basics of pandas here.
The training and testing data are stored in the train.csv
and the test.csv
file. We should train the model on the training data and predict the ...
Access this course and 1400+ top-rated courses and projects.