I have a quick question about the right formatting of input for the decoders.SimpleRNNClassification (and similar classes). In the docstring I read:
X_train: numpy 3d array of shape [n_samples,n_time_bins,n_neurons]
This is the neural data.
See example file for an example of how to format the neural data correctly
But in your usage example notebook (central_concepts_in_ML_for_decoding.ipynb
) the input X_train is formatted as [n_samples,n_neurons,n_time_bins].
Which one is correct?