Lab 5 Specification-3
Lab 5 Specification-3
Notebook name:
binaryClassification_perceptron_FNN_task.ipynb
Task 2. First, learn from the Demo given by your tutor, which demonstrates
o how to load a dataset stored in a local csv file, which defines a simple multi-
class classification problem of predicting the class label of a given wine.
o how to separate the given dataset into inputs and outputs using a different
way (iloc() method),
o how to split it into train and test datasets, and
o how to apply a feedforward neural network model to solve a three-class
classification problem
Then, complete the following notebook by filling up the blanks marked with “Add
your code here”.
Notebook name:
regression_FNN_task.ipynb
Datasets used:
1) HousingData.csv ((local csv file, provided in the package)) and
2) Linnerud dataset, which is about the physical exercise and available in sklearn
datasets, accessed through a 3rd party loader (load_linnerud()).
Task 4. First, Learn from the Demo given by your tutor, which demonstrates
o how to transform the given time series dataset into the format that can be
used by a recurrent neural network (RNN) and a Long short-term
memory (LSTM) network
o how to apply a RNN or LSTM models to predict the next value in a time
series
Then, complete the following notebook by filling up the blanks marked with “Add
your code here”.
Notebook name:
TimeSeries_RNN_LSTM_task.ipynb