I see the following line of code:
n_train_batches = train_set_x.get_value(borrow=True).shape[0] / batch_size
In the line above, what exactly is the borrowing parameter? What is the advantage of adding this? FYI, train_set_x is basically a matrix that was generated using the anano.shared method.
source
share