You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been trying to run usage.ipynb notebook. Even if I fix the error in #46 as described in #46 , the line accuracy, loss, t_step = model.fit(X_train, y_train, X_val, y_val) under 3 Graph ConvNet header gives the below error:
I have been trying to run
usage.ipynb
notebook. Even if I fix the error in #46 as described in #46 , the lineaccuracy, loss, t_step = model.fit(X_train, y_train, X_val, y_val)
under 3 Graph ConvNet header gives the below error:I changed the below line (https://github.com/mdeff/cnn_graph/blob/master/lib/models.py#L102) to fix index is out of bounds error from
indices.extend(np.random.permutation(train_data.shape[0]))
toindices.extend(np.random.permutation(self.batch_size))
.This gives the error below:
The text was updated successfully, but these errors were encountered: