I'm using this tutorial as example to build my caffe custom training function. On section 15 there is the following code:
def train():
niter = 200
test_interval = 25
train_loss = zeros(niter)
test_acc = zeros(int(np.ceil(niter / test_interval)))
### HERE ###
output = zeros((niter, 8, 10))
### ###
On line 8 there is an ndarray
(output), what is the meaning of this code and it demensions. What is the meaning of (niter, 8, 10)
. Why niter
, why 8 and why 10? Should I change this array according to my own data set? If yes, what dimension should I use? Can someone explain me it?