Pre-defined datasets#

Pre-defined demo and benchmark datasets.

This package contains actual implementations of datasets. If you want to add a commonly used (and public dataset) to CEBRA, this is the right package to do it. Datasets here can be loaded e.g. for testing, reproducing reference results and benchmarking. When contributing to this package, you should ensure that the data is publicly available under a suitable license.

This module is a registry and currently contains the options [‘demo-discrete’, ‘demo-continuous’, ‘demo-mixed’, ‘demo-discrete-multisession’, ‘demo-continuous-multisession’, ‘demo-continuous-unified’, ‘allen-movie-one-ca-VISp-10-train-10-111’, ‘allen-movie-one-ca-VISp-10-train-10-222’, ‘allen-movie-one-ca-VISp-10-train-10-333’, ‘allen-movie-one-ca-VISp-10-train-10-444’].

To retrieve a list of options, call:

>>> print(cebra.datasets.get_options())
['demo-discrete', 'demo-continuous', 'demo-mixed', ...]

To obtain an initialized instance, call cebra.datasets.init, defined in cebra.registry.add_helper_functions(). The first parameter to provide is the datasets name to use, which is one of the available options presented above. Then the required positional arguments specific to the module are provided, if needed.

You can register additional options by defining and registering classes with a name. To do that, you can add a decorator on top of it: @cebra.datasets.register("my-cebra-datasets").

Later, initialize your class similarly to the pre-defined options, using cebra.datasets.init with the datasets name set to my-cebra-datasets.

Note that these customized options will not be automatically added to this docstring.

Synthetic datasets#

class cebra.datasets.gaussian_mixture.ContinuousGaussianMixtureDataset(noise='poisson')#

Bases: SingleSessionDataset

A dataset of synthetically generated continuous labels and the corresponding 2D latents and 100D noisy observations.

Parameters:

noise (str) – The applied noise distribution applied.

property continuous_index#

The continuous index, if available.

The continuous index along with a similarity metric is used for drawing positive and/or negative samples.

Returns:

Tensor of shape (N,d), representing the index for all N samples in the dataset.

class cebra.datasets.gaussian_mixture.ContinuousGaussianMixtureDataset_continuous_gaussian_mixture_gaussian(*args, **kwargs)#

Bases: ContinuousGaussianMixtureDataset

A dataset of synthetically generated continuous labels and the corresponding 2D latents and 100D noisy observations.

Parameters:

noise – The applied noise distribution applied.

class cebra.datasets.gaussian_mixture.ContinuousGaussianMixtureDataset_continuous_gaussian_mixture_laplace(*args, **kwargs)#

Bases: ContinuousGaussianMixtureDataset

A dataset of synthetically generated continuous labels and the corresponding 2D latents and 100D noisy observations.

Parameters:

noise – The applied noise distribution applied.

class cebra.datasets.gaussian_mixture.ContinuousGaussianMixtureDataset_continuous_gaussian_mixture_poisson(*args, **kwargs)#

Bases: ContinuousGaussianMixtureDataset

A dataset of synthetically generated continuous labels and the corresponding 2D latents and 100D noisy observations.

Parameters:

noise – The applied noise distribution applied.

class cebra.datasets.gaussian_mixture.ContinuousGaussianMixtureDataset_continuous_gaussian_mixture_refractory_poisson(*args, **kwargs)#

Bases: ContinuousGaussianMixtureDataset

A dataset of synthetically generated continuous labels and the corresponding 2D latents and 100D noisy observations.

Parameters:

noise – The applied noise distribution applied.

class cebra.datasets.gaussian_mixture.ContinuousGaussianMixtureDataset_continuous_gaussian_mixture_uniform(*args, **kwargs)#

Bases: ContinuousGaussianMixtureDataset

A dataset of synthetically generated continuous labels and the corresponding 2D latents and 100D noisy observations.

Parameters:

noise – The applied noise distribution applied.

Rat Hippocampus dataset#

Rat hippocampus dataset

References

  • Grosmark, A.D., and Buzsáki, G. (2016). Diversity in neural firing dynamics supports both rigid and learned

    hippocampal sequences. Science 351, 1440–1443.

  • Chen, Z., Grosmark, A.D., Penagos, H., and Wilson, M.A. (2016). Uncovering representations of sleep-associated

    hippocampal ensemble spike activity. Sci. Rep. 6, 32193.

  • Grosmark, A.D., Long J. and Buzsáki, G. (2016); Recordings from hippocampal area CA1, PRE, during and POST novel spatial learning. CRCNS.org. http://dx.doi.org/10.6080/K0862DC5

class cebra.datasets.hippocampus.SingleRatDataset(name='achilles', root='data', download=True)#

Bases: SingleSessionDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track.

Neural data is spike counts binned into 25ms time window and the continuous behavior label is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left.

Parameters:

name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

property continuous_index#

The continuous index, if available.

The continuous index along with a similarity metric is used for drawing positive and/or negative samples.

Returns:

Tensor of shape (N,d), representing the index for all N samples in the dataset.

decode(x_train, y_train, x_test, y_test)#

kNN decoding function.

Perform a kNN decoding for n_neighbors = 1,4,9,26,25 with the given train set and test set.

Parameters:
  • x_train – The train set data

  • y_train – The train set label

  • x_test – The test set data

  • y_test – The test set label

class cebra.datasets.hippocampus.SingleRatTrialSplitDataset(name='achilles', split_no=0, split=None, root='data')#

Bases: SingleRatDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with 3-fold splits.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left. The neural and behavior recordings are parsed into trials (a round trip from one end of the track) and the trials are split into a train, valid and test set with k=3 nested cross validation.

Parameters:
  • name – The name of a rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • split_no – The k for k-fold split. Choose among 0, 1, 2.

  • split – The split to use. Choose among ‘train’, ‘valid’, ‘test’, ‘all’, and ‘wo_test’ (all trials except test split).

class cebra.datasets.hippocampus.SingleRatCorruptDataset(name, seed, root='data')#

Bases: SingleRatDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.MultipleRatsTrialSplitDataset(split_no=0, split=None)#

Bases: DatasetCollection

4 rats hippocampus tetrode recording while the rat navigates on a linear track with 3-fold splits.

Neural and behavior recordings of 4 rats. For each rat, neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left. Neural and behavior recordings of each rat are parsed into trials (a round trip from one end of the track) and the trials are split into a train, valid and test set with k=3 nested cross validation.

Parameters:
  • split_no – The k for k-fold split. Choose among 0, 1, and 2.

  • split – The split to use. Choose among ‘train’, ‘valid’, ‘test’, ‘all’, and ‘wo_test’ (all trials except test split).

class cebra.datasets.hippocampus.MultipleRatsTrialSplitDataset_rat_hippocampus_multisubjects_3fold_trial_split_0(*args, **kwargs)#

Bases: MultipleRatsTrialSplitDataset

4 rats hippocampus tetrode recording while the rat navigates on a linear track with 3-fold splits.

Neural and behavior recordings of 4 rats. For each rat, neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left. Neural and behavior recordings of each rat are parsed into trials (a round trip from one end of the track) and the trials are split into a train, valid and test set with k=3 nested cross validation.

Parameters:
  • split_no – The k for k-fold split. Choose among 0, 1, and 2.

  • split – The split to use. Choose among ‘train’, ‘valid’, ‘test’, ‘all’, and ‘wo_test’ (all trials except test split).

class cebra.datasets.hippocampus.MultipleRatsTrialSplitDataset_rat_hippocampus_multisubjects_3fold_trial_split_1(*args, **kwargs)#

Bases: MultipleRatsTrialSplitDataset

4 rats hippocampus tetrode recording while the rat navigates on a linear track with 3-fold splits.

Neural and behavior recordings of 4 rats. For each rat, neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left. Neural and behavior recordings of each rat are parsed into trials (a round trip from one end of the track) and the trials are split into a train, valid and test set with k=3 nested cross validation.

Parameters:
  • split_no – The k for k-fold split. Choose among 0, 1, and 2.

  • split – The split to use. Choose among ‘train’, ‘valid’, ‘test’, ‘all’, and ‘wo_test’ (all trials except test split).

class cebra.datasets.hippocampus.MultipleRatsTrialSplitDataset_rat_hippocampus_multisubjects_3fold_trial_split_2(*args, **kwargs)#

Bases: MultipleRatsTrialSplitDataset

4 rats hippocampus tetrode recording while the rat navigates on a linear track with 3-fold splits.

Neural and behavior recordings of 4 rats. For each rat, neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left. Neural and behavior recordings of each rat are parsed into trials (a round trip from one end of the track) and the trials are split into a train, valid and test set with k=3 nested cross validation.

Parameters:
  • split_no – The k for k-fold split. Choose among 0, 1, and 2.

  • split – The split to use. Choose among ‘train’, ‘valid’, ‘test’, ‘all’, and ‘wo_test’ (all trials except test split).

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_0(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_1(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_10(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_100(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_101(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_102(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_103(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_104(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_105(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_106(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_107(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_108(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_109(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_11(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_110(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_111(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_112(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_113(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_114(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_115(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_116(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_117(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_118(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_119(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_12(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_120(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_121(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_122(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_123(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_124(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_125(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_126(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_127(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_128(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_129(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_13(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_130(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_131(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_132(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_133(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_134(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_135(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_136(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_137(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_138(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_139(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_14(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_140(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_141(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_142(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_143(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_144(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_145(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_146(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_147(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_148(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_149(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_15(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_150(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_151(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_152(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_153(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_154(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_155(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_156(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_157(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_158(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_159(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_16(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_160(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_161(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_162(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_163(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_164(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_165(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_166(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_167(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_168(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_169(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_17(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_170(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_171(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_172(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_173(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_174(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_175(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_176(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_177(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_178(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_179(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_18(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_180(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_181(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_182(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_183(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_184(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_185(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_186(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_187(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_188(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_189(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_19(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_190(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_191(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_192(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_193(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_194(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_195(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_196(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_197(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_198(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_199(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_2(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_20(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_200(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_201(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_202(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_203(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_204(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_205(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_206(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_207(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_208(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_209(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_21(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_210(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_211(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_212(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_213(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_214(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_215(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_216(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_217(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_218(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_219(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_22(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_220(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_221(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_222(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_223(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_224(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_225(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_226(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_227(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_228(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_229(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_23(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_230(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_231(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_232(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_233(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_234(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_235(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_236(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_237(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_238(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_239(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_24(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_240(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_241(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_242(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_243(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_244(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_245(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_246(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_247(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_248(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_249(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_25(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_250(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_251(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_252(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_253(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_254(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_255(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_256(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_257(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_258(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_259(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_26(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_260(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_261(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_262(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_263(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_264(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_265(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_266(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_267(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_268(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_269(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_27(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_270(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_271(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_272(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_273(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_274(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_275(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_276(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_277(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_278(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_279(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_28(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_280(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_281(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_282(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_283(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_284(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_285(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_286(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_287(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_288(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_289(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_29(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_290(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_291(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_292(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_293(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_294(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_295(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_296(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_297(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_298(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_299(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_3(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_30(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_300(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_301(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_302(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_303(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_304(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_305(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_306(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_307(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_308(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_309(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_31(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_310(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_311(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_312(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_313(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_314(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_315(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_316(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_317(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_318(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_319(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_32(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_320(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_321(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_322(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_323(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_324(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_325(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_326(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_327(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_328(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_329(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_33(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_330(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_331(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_332(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_333(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_334(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_335(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_336(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_337(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_338(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_339(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_34(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_340(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_341(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_342(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_343(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_344(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_345(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_346(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_347(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_348(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_349(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_35(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_350(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_351(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_352(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_353(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_354(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_355(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_356(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_357(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_358(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_359(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_36(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_360(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_361(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_362(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_363(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_364(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_365(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_366(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_367(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_368(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_369(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_37(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_370(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_371(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_372(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_373(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_374(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_375(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_376(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_377(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_378(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_379(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_38(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_380(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_381(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_382(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_383(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_384(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_385(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_386(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_387(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_388(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_389(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_39(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_390(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_391(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_392(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_393(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_394(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_395(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_396(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_397(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_398(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_399(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_4(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_40(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_400(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_401(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_402(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_403(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_404(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_405(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_406(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_407(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_408(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_409(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_41(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_410(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_411(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_412(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_413(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_414(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_415(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_416(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_417(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_418(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_419(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_42(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_420(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_421(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_422(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_423(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_424(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_425(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_426(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_427(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_428(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_429(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_43(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_430(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_431(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_432(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_433(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_434(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_435(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_436(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_437(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_438(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_439(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_44(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_440(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_441(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_442(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_443(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_444(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_445(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_446(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_447(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_448(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_449(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_45(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_450(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_451(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_452(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_453(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_454(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_455(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_456(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_457(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_458(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_459(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_46(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_460(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_461(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_462(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_463(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_464(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_465(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_466(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_467(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_468(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_469(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_47(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_470(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_471(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_472(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_473(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_474(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_475(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_476(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_477(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_478(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_479(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_48(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_480(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_481(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_482(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_483(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_484(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_485(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_486(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_487(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_488(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_489(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_49(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_490(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_491(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_492(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_493(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_494(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_495(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_496(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_497(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_498(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_499(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_5(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_50(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_500(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_501(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_502(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_503(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_504(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_505(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_506(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_507(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_508(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_509(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_51(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_510(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_511(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_512(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_513(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_514(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_515(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_516(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_517(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_518(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_519(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_52(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_520(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_521(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_522(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_523(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_524(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_525(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_526(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_527(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_528(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_529(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_53(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_530(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_531(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_532(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_533(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_534(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_535(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_536(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_537(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_538(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_539(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_54(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_540(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_541(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_542(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_543(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_544(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_545(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_546(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_547(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_548(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_549(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_55(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_550(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_551(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_552(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_553(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_554(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_555(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_556(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_557(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_558(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_559(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_56(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_560(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_561(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_562(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_563(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_564(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_565(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_566(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_567(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_568(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_569(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_57(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_570(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_571(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_572(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_573(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_574(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_575(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_576(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_577(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_578(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_579(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_58(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_580(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_581(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_582(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_583(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_584(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_585(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_586(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_587(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_588(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_589(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_59(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_590(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_591(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_592(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_593(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_594(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_595(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_596(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_597(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_598(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_599(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_6(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_60(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_600(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_601(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_602(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_603(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_604(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_605(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_606(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_607(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_608(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_609(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_61(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_610(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_611(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_612(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_613(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_614(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_615(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_616(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_617(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_618(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_619(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_62(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_620(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_621(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_622(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_623(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_624(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_625(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_626(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_627(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_628(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_629(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_63(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_630(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_631(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_632(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_633(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_634(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_635(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_636(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_637(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_638(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_639(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_64(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_640(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_641(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_642(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_643(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_644(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_645(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_646(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_647(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_648(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_649(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_65(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_650(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_651(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_652(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_653(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_654(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_655(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_656(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_657(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_658(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_659(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_66(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_660(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_661(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_662(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_663(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_664(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_665(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_666(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_667(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_668(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_669(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_67(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_670(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_671(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_672(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_673(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_674(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_675(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_676(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_677(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_678(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_679(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_68(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_680(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_681(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_682(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_683(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_684(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_685(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_686(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_687(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_688(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_689(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_69(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_690(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_691(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_692(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_693(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_694(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_695(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_696(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_697(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_698(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_699(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_7(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_70(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_700(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_701(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_702(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_703(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_704(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_705(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_706(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_707(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_708(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_709(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_71(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_710(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_711(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_712(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_713(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_714(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_715(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_716(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_717(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_718(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_719(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_72(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_720(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_721(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_722(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_723(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_724(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_725(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_726(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_727(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_728(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_729(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_73(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_730(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_731(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_732(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_733(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_734(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_735(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_736(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_737(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_738(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_739(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_74(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_740(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_741(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_742(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_743(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_744(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_745(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_746(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_747(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_748(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_749(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_75(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_750(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_751(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_752(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_753(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_754(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_755(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_756(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_757(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_758(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_759(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_76(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_760(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_761(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_762(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_763(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_764(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_765(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_766(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_767(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_768(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_769(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_77(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_770(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_771(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_772(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_773(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_774(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_775(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_776(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_777(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_778(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_779(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_78(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_780(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_781(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_782(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_783(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_784(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_785(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_786(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_787(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_788(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_789(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_79(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_790(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_791(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_792(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_793(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_794(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_795(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_796(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_797(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_798(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_799(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_8(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_80(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_800(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_801(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_802(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_803(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_804(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_805(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_806(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_807(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_808(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_809(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_81(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_810(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_811(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_812(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_813(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_814(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_815(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_816(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_817(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_818(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_819(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_82(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_820(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_821(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_822(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_823(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_824(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_825(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_826(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_827(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_828(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_829(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_83(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_830(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_831(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_832(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_833(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_834(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_835(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_836(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_837(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_838(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_839(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_84(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_840(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_841(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_842(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_843(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_844(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_845(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_846(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_847(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_848(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_849(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_85(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_850(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_851(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_852(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_853(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_854(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_855(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_856(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_857(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_858(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_859(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_86(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_860(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_861(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_862(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_863(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_864(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_865(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_866(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_867(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_868(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_869(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_87(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_870(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_871(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_872(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_873(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_874(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_875(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_876(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_877(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_878(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_879(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_88(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_880(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_881(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_882(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_883(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_884(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_885(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_886(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_887(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_888(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_889(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_89(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_890(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_891(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_892(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_893(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_894(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_895(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_896(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_897(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_898(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_899(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_9(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_90(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_900(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_901(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_902(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_903(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_904(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_905(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_906(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_907(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_908(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_909(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_91(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_910(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_911(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_912(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_913(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_914(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_915(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_916(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_917(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_918(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_919(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_92(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_920(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_921(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_922(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_923(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_924(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_925(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_926(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_927(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_928(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_929(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_93(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_930(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_931(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_932(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_933(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_934(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_935(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_936(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_937(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_938(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_939(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_94(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_940(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_941(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_942(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_943(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_944(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_945(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_946(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_947(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_948(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_949(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_95(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_950(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_951(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_952(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_953(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_954(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_955(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_956(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_957(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_958(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_959(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_96(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_960(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_961(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_962(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_963(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_964(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_965(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_966(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_967(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_968(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_969(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_97(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_970(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_971(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_972(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_973(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_974(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_975(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_976(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_977(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_978(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_979(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_98(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_980(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_981(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_982(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_983(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_984(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_985(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_986(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_987(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_988(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_989(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_99(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_990(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_991(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_992(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_993(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_994(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_995(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_996(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_997(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_998(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_achilles_corrupt_999(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_0(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_1(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_10(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_100(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_101(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_102(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_103(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_104(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_105(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_106(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_107(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_108(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_109(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_11(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_110(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_111(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_112(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_113(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_114(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_115(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_116(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_117(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_118(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_119(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_12(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_120(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_121(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_122(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_123(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_124(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_125(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_126(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_127(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_128(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_129(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_13(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_130(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_131(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_132(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_133(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_134(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_135(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_136(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_137(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_138(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_139(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_14(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_140(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_141(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_142(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_143(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_144(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_145(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_146(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_147(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_148(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_149(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_15(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_150(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_151(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_152(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_153(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_154(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_155(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_156(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_157(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_158(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_159(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_16(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_160(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_161(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_162(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_163(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_164(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_165(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_166(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_167(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_168(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_169(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_17(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_170(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_171(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_172(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_173(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_174(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_175(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_176(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_177(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_178(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_179(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_18(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_180(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_181(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_182(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_183(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_184(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_185(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_186(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_187(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_188(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_189(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_19(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_190(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_191(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_192(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_193(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_194(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_195(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_196(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_197(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_198(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_199(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_2(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_20(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_200(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_201(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_202(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_203(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_204(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_205(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_206(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_207(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_208(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_209(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_21(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_210(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_211(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_212(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_213(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_214(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_215(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_216(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_217(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_218(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_219(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_22(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_220(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_221(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_222(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_223(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_224(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_225(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_226(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_227(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_228(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_229(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_23(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_230(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_231(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_232(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_233(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_234(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_235(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_236(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_237(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_238(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_239(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_24(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_240(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_241(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_242(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_243(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_244(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_245(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_246(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_247(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_248(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_249(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_25(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_250(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_251(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_252(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_253(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_254(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_255(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_256(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_257(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_258(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_259(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_26(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_260(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_261(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_262(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_263(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_264(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_265(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_266(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_267(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_268(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_269(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_27(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_270(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_271(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_272(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_273(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_274(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_275(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_276(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_277(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_278(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_279(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_28(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_280(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_281(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_282(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_283(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_284(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_285(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_286(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_287(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_288(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_289(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_29(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_290(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_291(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_292(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_293(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_294(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_295(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_296(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_297(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_298(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_299(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_3(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_30(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_300(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_301(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_302(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_303(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_304(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_305(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_306(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_307(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_308(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_309(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_31(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_310(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_311(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_312(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_313(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_314(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_315(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_316(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_317(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_318(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_319(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_32(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_320(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_321(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_322(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_323(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_324(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_325(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_326(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_327(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_328(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_329(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_33(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_330(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_331(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_332(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_333(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_334(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_335(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_336(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_337(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_338(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_339(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_34(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_340(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_341(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_342(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_343(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_344(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_345(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_346(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_347(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_348(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_349(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_35(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_350(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_351(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_352(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_353(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_354(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_355(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_356(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_357(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_358(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_359(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_36(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_360(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_361(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_362(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_363(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_364(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_365(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_366(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_367(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_368(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_369(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_37(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_370(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_371(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_372(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_373(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_374(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_375(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_376(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_377(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_378(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_379(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_38(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_380(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_381(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_382(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_383(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_384(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_385(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_386(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_387(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_388(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_389(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_39(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_390(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_391(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_392(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_393(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_394(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_395(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_396(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_397(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_398(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_399(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_4(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_40(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_400(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_401(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_402(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_403(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_404(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_405(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_406(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_407(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_408(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_409(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_41(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_410(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_411(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_412(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_413(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_414(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_415(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_416(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_417(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_418(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_419(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_42(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_420(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_421(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_422(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_423(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_424(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_425(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_426(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_427(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_428(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_429(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_43(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_430(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_431(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_432(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_433(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_434(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_435(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_436(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_437(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_438(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_439(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_44(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_440(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_441(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_442(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_443(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_444(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_445(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_446(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_447(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_448(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_449(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_45(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_450(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_451(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_452(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_453(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_454(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_455(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_456(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_457(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_458(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_459(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_46(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_460(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_461(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_462(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_463(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_464(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_465(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_466(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_467(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_468(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_469(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_47(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_470(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_471(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_472(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_473(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_474(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_475(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_476(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_477(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_478(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_479(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_48(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_480(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_481(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_482(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_483(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_484(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_485(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_486(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_487(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_488(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_489(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_49(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_490(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_491(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_492(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_493(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_494(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_495(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_496(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_497(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_498(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_499(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_5(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_50(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_500(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_501(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_502(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_503(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_504(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_505(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_506(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_507(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_508(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_509(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_51(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_510(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_511(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_512(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_513(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_514(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_515(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_516(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_517(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_518(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_519(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_52(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_520(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_521(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_522(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_523(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_524(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_525(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_526(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_527(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_528(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_529(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_53(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_530(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_531(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_532(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_533(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_534(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_535(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_536(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_537(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_538(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_539(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_54(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_540(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_541(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_542(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_543(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_544(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_545(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_546(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_547(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_548(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_549(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_55(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_550(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_551(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_552(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_553(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_554(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_555(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_556(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_557(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_558(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_559(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_56(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_560(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_561(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_562(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_563(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_564(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_565(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_566(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_567(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_568(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_569(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_57(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_570(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_571(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_572(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_573(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_574(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_575(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_576(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_577(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_578(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_579(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_58(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_580(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_581(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_582(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_583(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_584(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_585(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_586(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_587(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_588(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_589(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_59(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_590(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_591(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_592(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_593(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_594(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_595(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_596(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_597(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_598(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_599(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_6(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_60(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_600(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_601(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_602(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_603(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_604(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_605(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_606(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_607(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_608(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_609(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_61(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_610(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_611(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_612(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_613(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_614(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_615(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_616(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_617(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_618(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_619(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_62(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_620(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_621(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_622(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_623(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_624(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_625(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_626(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_627(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_628(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_629(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_63(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_630(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_631(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_632(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_633(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_634(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_635(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_636(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_637(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_638(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_639(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_64(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_640(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_641(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_642(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_643(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_644(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_645(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_646(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_647(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_648(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_649(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_65(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_650(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_651(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_652(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_653(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_654(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_655(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_656(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_657(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_658(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_659(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_66(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_660(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_661(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_662(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_663(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_664(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_665(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_666(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_667(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_668(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_669(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_67(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_670(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_671(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_672(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_673(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_674(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_675(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_676(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_677(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_678(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_679(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_68(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_680(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_681(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_682(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_683(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_684(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_685(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_686(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_687(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_688(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_689(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_69(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_690(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_691(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_692(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_693(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_694(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_695(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_696(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_697(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_698(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_699(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_7(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_70(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_700(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_701(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_702(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_703(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_704(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_705(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_706(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_707(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_708(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_709(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_71(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_710(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_711(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_712(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_713(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_714(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_715(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_716(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_717(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_718(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_719(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_72(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_720(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_721(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_722(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_723(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_724(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_725(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_726(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_727(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_728(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_729(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_73(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_730(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_731(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_732(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_733(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_734(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_735(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_736(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_737(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_738(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_739(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_74(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_740(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_741(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_742(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_743(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_744(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_745(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_746(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_747(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_748(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_749(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_75(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_750(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_751(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_752(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_753(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_754(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_755(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_756(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_757(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_758(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_759(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_76(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_760(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_761(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_762(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_763(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_764(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_765(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_766(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_767(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_768(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_769(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_77(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_770(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_771(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_772(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_773(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_774(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_775(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_776(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_777(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_778(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_779(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_78(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_780(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_781(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_782(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_783(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_784(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_785(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_786(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_787(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_788(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_789(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_79(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_790(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_791(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_792(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_793(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_794(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_795(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_796(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_797(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_798(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_799(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_8(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_80(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_800(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_801(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_802(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_803(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_804(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_805(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_806(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_807(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_808(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_809(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_81(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_810(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_811(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_812(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_813(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_814(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_815(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_816(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_817(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_818(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_819(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_82(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_820(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_821(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_822(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_823(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_824(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_825(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_826(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_827(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_828(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_829(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_83(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_830(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_831(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_832(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_833(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_834(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_835(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_836(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_837(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_838(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_839(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_84(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_840(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_841(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_842(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_843(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_844(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_845(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_846(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_847(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_848(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_849(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_85(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_850(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_851(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_852(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_853(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_854(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_855(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_856(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_857(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_858(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_859(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_86(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_860(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_861(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_862(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_863(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_864(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_865(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_866(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_867(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_868(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_869(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_87(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_870(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_871(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_872(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_873(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_874(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_875(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_876(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_877(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_878(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_879(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_88(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_880(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_881(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_882(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_883(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_884(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_885(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_886(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_887(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_888(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_889(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_89(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_890(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_891(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_892(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_893(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_894(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_895(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_896(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_897(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_898(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_899(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_9(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_90(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_900(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_901(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_902(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_903(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_904(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_905(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_906(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_907(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_908(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_909(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_91(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_910(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_911(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_912(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_913(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_914(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_915(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_916(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_917(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_918(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_919(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_92(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_920(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_921(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_922(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_923(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_924(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_925(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_926(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_927(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_928(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_929(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_93(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_930(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_931(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_932(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_933(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_934(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_935(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_936(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_937(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_938(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_939(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_94(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_940(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_941(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_942(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_943(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_944(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_945(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_946(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_947(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_948(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_949(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_95(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_950(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_951(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_952(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_953(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_954(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_955(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_956(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_957(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_958(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_959(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_96(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_960(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_961(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_962(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_963(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_964(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_965(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_966(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_967(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is structured as 3D array consists of position, right, and left and it is shuffled in random orders.

Parameters:
  • name – The name of the rat to use. Choose among ‘achilles’, ‘buddy’, ‘cicero’ and ‘gatsby’.

  • seed – The random seed to set the shuffling.

class cebra.datasets.hippocampus.SingleRatCorruptDataset_rat_hippocampus_buddy_corrupt_968(*args, **kwargs)#

Bases: SingleRatCorruptDataset

A single rat hippocampus tetrode recording while the rat navigates on a linear track with a shuffled behavior label.

Neural data is spike counts binned into 25ms time window and the behavior is position and the running direction (left, right) of a rat. The behavior label is