...

/

Read and Explore the Data

Read and Explore the Data

Dive into the first step of the Keras workflow; Reading, exploring, and preprocessing the dataset.

The first step for developing any model is reading and exploring the data. This helps answer the questions below:

  1. How many features does the data have?
  2. Are there any missing data?
  3. 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.