Question: Consider the following equation for gradient descent: = w - n ' g ( L , D , w ) where g is the gradient

Consider the following equation for gradient descent:
=w-n'g(L, D, w)
where g is the gradient function, L the loss function, and D, the dataset and n denotes the learning rate and the corresponding pseudo-code for the mini-batch variant:
1.
2.
for i =1 to num_iter {
shuffle (data);
for batch in get_batches (data, batch_size){
grad= eval_gradient (loss_function, batch, w);
W = w-learning_rate* grad;
}
Identify the line numbers in this code that can be parallelized. Argue how the said lines can be parallelized using a distributed shared memory model.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!