Create and activate conda environment
conda env create -f env.yaml
conda activate ibl-fm
Lorenz dataset
To use the lorenz dataset from the NDT1 paper, please download the dataset from this link.
In src/configs/trainer.yaml
, set the following path and dataset names:
dataset_dir: PATH_TO_DATA_DIR
dataset_name: lorenz
IBL datasets
In progress. Will be on huggingface.
Neural Data Transformer (NDT1) - re-implementation
The configuration for NDT1 is src/configs/ndt1.yaml
. Set the number of neurons by:
n_channels: NUM_NEURON # number of neurons recorded
To train a model, first set the model config in src/main.py
. For NDT1, set the config to:
kwargs = {
"model": "include:src/configs/ndt1.yaml"
}
Then, run the script inside of script/hpc
:
source run.sh # Train model
To evaluate a model, first set the pre-trained model path in trainer.yaml
:
pretrained_model_path: PATH_TO_DIR/models/ndt1/last_model_lorenz.pth
Then, run the associated evaluation script in script/hpc
. To run evaluation for NDT1 use:
source eval_ndt1.sh # Evaluate NDT1