In this section, we will provide information about the data used for developing a multiclass classification model. We will use only one library, which is Keras.
Cardiotocogram dataset
Dataset (medical)
The dataset used in this chapter is publicly available at the UCI Machine Learning Repository maintained by the School of Information and Computer Science at the University of California. You can access this at https://archive.ics.uci.edu/ml/datasets/cardiotocography.
It is to be noted that this URL enables you to download an Excel data file. This file can be easily converted to a .csv format by saving the file as a .csv file.
For data we should use the formatting which is used for .csv, as shown in the following code:
# Read...