Aryan Chaudhary

Results 2 issues of Aryan Chaudhary

class NesterovAcceleratedGradient(): def __init__(self, learning_rate=0.001, momentum=0.4): self.learning_rate = learning_rate self.momentum = momentum self.w_updt = None#np.array([]) def update(self, w, grad_func): # Calculate the gradient of the loss a bit further down...

After installing the required libraries. I have been trying to execute your pipeline. It is giving Segmentation fault (core dumped) every time. Can you pls share requirement.txt and also ideas...