Assignment 1
Assignment 1
You have to implement a two- layer neural network for classification problem or regression
problem in Python. You can use datasets from UCI repository or Kaggle. Not to use the
datasets from pandas or sklearn.
2. You have to implement a CNN network for image classification.
-------------
7. Then predict the output by giving the test data to the trained model
predictions = mlp.predict(X_test)
8. Then find the performance metrics.
from sklearn.metrics import classification_report