Neural_Decoding icon indicating copy to clipboard operation
Neural_Decoding copied to clipboard

A python package that includes many methods for decoding neural activity

Results 8 Neural_Decoding issues
Sort by recently updated
recently updated
newest added

The parameters defined in the XGboost fit function (decoders.py line 725-730) are no longer consistent with XGBoost library. 'objective': linearregression has been deprecated in favor of 'reg:squarederror', and the parameters...

When running the LSTM decoder in ManyDecoders_FullData and Keras with the TF backend I am experiencing a memory leak. The problem is well known. What seems to work is to...

Hi, I am getting this error when trying to run the reconstruction using the NaiveBayesDecoder for example_data_hc.pickle There is no error when trying to run it on the example data...

from exp. neuroscientists at the MPI for Brain Research I have learned that they commonly use Bayesian regressors for decoding. Therefore, I thought it might be helpful to add them...

I'm trying to get the tutorials to run, but I am having issues with 2 of the decoders. When running cell 4C (xgboost), I get this error on line 686...

When using Neural_Decoding.decoders, there is an error when importing `from keras.utils import np_utils`. I resolved this by substituting `from keras.utils import np_utils` with `from keras.utils import to_categorical` since only the...

When I fiting DNN model in the Examples_decoders_hc.ipynb, it comes an error below: FailedPreconditionError Traceback (most recent call last) Input In [93], in () 2 model_dnn=DenseNNDecoder(units=100,dropout=0.25,num_epochs=10) 4 #Fit model ---->...