1 Answered Questions for the topic deep learning

Deep Learning Python Machine Learning

10/08/21

I have a SGD perceptron training algorithm. I would like to modify this code to include different batch sizes with 5-fold cross validation.

def perce_online(X,y,w_ini,rho):  (l,N) = np.shape(X)  max_iter=500000  w=np.reshape(w_ini,(3,1));  iter=0;  mis_clas=N;  while mis_clas>0 and iter<max_iter:    mis_clas=0    for i in range(N... more

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.