====== Forecasting Meeting Minutes for Week of November 23, 2016 ====== ** Present Tuesday: Austin, Gordon, Brieanna, Jaimie ** ====== Progress ====== * Working on debugging code/large RMSE values * Values looking more reasonable! * Problem was the reorientation of the matrix * Need to specify "F" form for reshaping * https://docs.scipy.org/doc/numpy/reference/generated/numpy.reshape.html ====== Issues with Python ===== * Confusion with notation! * Check it: Matrix and Array Notation: * np.matrix * (row, col) * indexing * np.array: * (row, col) * indexing * reshape array X w/ X.shape function * i.e. X.shape = (row, col) * reshape array X w/ np.reshape(X, (row,col)) * np.reshape(X, (row, col))