Linear Model

Otto Dataset Analysis

Published on

Otto Dataset Analysis As a first project, I decided to pick a random dataset from Kaggle to analyse. In this project, I analysed project distributions from the Otto Group in an attempt to classify them using a 4-linear layer model. Below, I have shared the my confusion matrix, showing the class predictions vs actual results, and a basic code of my linear model. class Net(nn.Module): def __init__(self): super(Net, self).__init__() self.l1 = nn.Linear(93, 64) self.