October 2018
Intermediate to advanced
134 pages
2h 39m
English
Now, let's return to our Jupyter Notebook.
We will now import the dataset and the libraries into our Jupyter Notebook using the following steps:

Here, we have the ARFF file and the text version that we just saved, as well as our Jupyter Notebook. Let's get started with this.
import sysimport pandas as pdimport sklearnimport kerasprint 'Python: {}'.format(sys.version)print 'Pandas: {}'.format(pd.__version__)print 'Sklearn: ...Read now
Unlock full access