Several minibatch parameters

Thanks, will try with this. However your example

X = np.repeat(np.arange(100), 5).reshape(100, 5)
y = np.arange(100)
xm = pm.Minibatch(X)
ym = pm.Minibatch(y)
print(xm.eval(), ym.eval())

confirms that minibatches should be synchronized, so maybe there is something wrong on my side.

1 Like