Question: 1 . The following table consists of training data from an employee database. ( 3 1 ldots 3 5 )
The following table consists of training data from an employee database. ldots for age represents the age range of to For a given row entry, count represents the number of data tuples having the values for department, status, age, and salary given in that row. There are a total of mathbf data records.
Let status be the class label attribute.
Design a multilayer neural network MLP for the given data.
a How to encode the categorical data, ordinal data in geneal? And specifically how are you going to code department, age, salary? pts
b How many hidden layers, how many nodes in hidden layers do you want to design? pts
c Draw your ANN model, and label the nodes in the input and output layers. pts
d Implement the multilayer neural network obtained above, show the code to train the model with selection of parameters like activation, initialization, the learning rate, optimizer, etc. Just for home work purposes, you can assume this is the training data, you have another set of data for testing pts
Ex: Xtrain
Ytrain
myANNMLPClassifier
myANN.fitXtrain, Ytrain;
ypred myANN.predictXtrain;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
