# YTrain , YVal, YTest = np.array([int(i[1]==1) for i in YTrain]).reshape((-1,1)), np.array([int(i[1]==1) for i in YVal]).reshape((-1,1)), np.array([int(i[1]==1) for i in YTest]).reshape((-1,1))
lr,batchSize,epochs=0.01,50,10
lr,batchSize,epochs=-0.8,25,3500
nn1=nn.NeuralNetwork(lr,batchSize,epochs)
nn1=nn.NeuralNetwork(lr,batchSize,epochs)
# Add layers to neural network corresponding to inputs and outputs of given data
# Add layers to neural network corresponding to inputs and outputs of given data