Question: 1 . The following table consists of training data from an employee database. ( 3 1 ldots 3 5 )

1. The following table consists of training data from an employee database. "\(31\ldots 35\)" for age represents the age range of 31 to 35. 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{165}\) 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? (10pts)
(b) How many hidden layers, how many nodes in hidden layers do you want to design? (10pts)
c) Draw your ANN model, and label the nodes in the input and output layers. (10pts)
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 )(10pts)
```
Ex: X_train=...
Y_train=...
myANN=MLPClassifier (...)
myANN.fit(X_train, Y_train);
y_pred = myANN.predict(X_train);
```
1 . The following table consists of training data

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!