# calculating gradient on large dataset is time consuming, so a better way is to calculate the gradient is to calculate in a batch size by dividing the data size ...
"It is often time-consuming to compute the gradient on entire datasets. It is a better idea to split the dataset into batches and calculate gradients on those batches. This is an implementation of ...