You are on page 1of 1

import numpy - It contains among other things: a powerful N-dimensional array

object.

import pandas - pandas is a software library written for the Python programming
language for data manipulation and analysis. In particular, it offers data
structures and operations for manipulating numerical tables and time series.

matplotlib- Python 2D plotting library

keras - Dense, support the specification of their input shape via the argument
Sequential - create a seq of model

sklearn.metrics - The sklearn.metrics module implements several loss, score, and


utility functions to measure classification performance

MinMaxScaler - for normalization

TQDM - a progress bar library

numpy.random.seed(7) - the same set of numbers will appear every time.

=================================================

VERBOSE --- By setting verbose 0, 1 or 2 you just say how do you want to 'see' the
training progress for each epoch.

verbose=0 will show you nothing (silent)

verbose=1 will show you an animated progress bar like this:

progres_bar

verbose=2 will just mention the number of epoch like this:

enter image description here

===================================================

RELU activation function -> [ < 0 = 0 and >0 = X ]

You might also like