DS005491#
Categorized Free Recall with Open-Loop Stimulation at Encoding
Access recordings and metadata through EEGDash.
Citation: Haydn G. Herrema, Michael J. Kahana (2024). Categorized Free Recall with Open-Loop Stimulation at Encoding. 10.18112/openneuro.ds005491.v1.0.0
Modality: ieeg Subjects: 19 Recordings: 370 License: CC0 Source: openneuro Citations: 0.0
Metadata: Complete (100%)
Quickstart#
Install
pip install eegdash
Access the data
from eegdash.dataset import DS005491
dataset = DS005491(cache_dir="./data")
# Get the raw object of the first recording
raw = dataset.datasets[0].raw
print(raw.info)
Filter by subject
dataset = DS005491(cache_dir="./data", subject="01")
Advanced query
dataset = DS005491(
cache_dir="./data",
query={"subject": {"$in": ["01", "02"]}},
)
Iterate recordings
for rec in dataset:
print(rec.subject, rec.raw.info['sfreq'])
If you use this dataset in your research, please cite the original authors.
BibTeX
@dataset{ds005491,
title = {Categorized Free Recall with Open-Loop Stimulation at Encoding},
author = {Haydn G. Herrema and Michael J. Kahana},
doi = {10.18112/openneuro.ds005491.v1.0.0},
url = {https://doi.org/10.18112/openneuro.ds005491.v1.0.0},
}
About This Dataset#
Categorized Free Recall with Open-Loop Stimulation at Encoding
Description
This dataset contains behavioral events and intracranial electrophysiological recordings from a categorized free recall task with open-loop stimulation at encoding. The experiment consists of participants studying a list of words, presented visually one at a time, completing simple arithmetic problems that function as a distractor, and then freely recalling the words from the just-presented list in any order. The data was collected at clinical sites across the country as part of a collaboration with the Computational Memory Lab at the University of Pennsylvania.
The word lists in this paradigm follow a specific semantic construction. Each word comes from one of 25 semantic categories, and each list of 12 items contains 6 pairs of same-category words from 3 different categories. This means that each list has 4 words from 3 semantic categories, and in each half of the list there will be 1 pair of words from each category. For example, if a list contains words from categories A, B, and C, a possible list construction would be:
A1 - A2 - B1 - B2 - C1 - C2 - A3 - A4 - C3 - C4 - B3 - B4
This study contains open-loop electrical stimulation of the brain during encoding. There is no stimulation during the distractor or retrieval phases. Stimulation is delivered to a single electrode at a time, with locations chosen in the hippocampus and entorhinal cortex. Stimulation parameters are included in the behavioral events tsv files, denoting the anode/cathode labels, amplitude, pulse frequency, pulse width, and pulse count.
20 of the 25 lists in a session are randomly assigned as stimulation lists. On these lists, stimulation occurs on alternating two-word blocks, meaning 6 of the 12 words are presented with stimulation. Stimulation starts 200 ms prior to the onset of the first word in the block and lasts for 4.6 seconds, ending 200-450 ms after the offset of the second word (depending on the inter-stimulus interval). Half of the stimulation lists begin with a stimulation on pair and half begin with a stumulation off pair, but the order of these conditions is random. A stimulation list that begins with a stimulation on pair would look as follows (with bold indicating stimulation):
1 - 2| 3 - 4 |**5 - 6**| 7 - 8 |**9 - 10** | 11 - 12
To Note
The iEEG recordings are labeled either “monopolar” or “bipolar.” The monopolar recordings are referenced (typically a mastoid reference), but should always be re-referenced before analysis. The bipolar recordings are referenced according to a paired scheme indicated by the accompanying bipolar channels tables.
Each subject has a unique montage of electrode locations. MNI and Talairach coordinates are provided when available.
Recordings done with the Blackrock system are in units of 250 nV, while recordings done with the Medtronic system are estimated through testing to have units of 0.1 uV. We have completed the scaling to provide values in V.
Contact
For questions or inquiries, please contact sas-kahana-sysadmin@sas.upenn.edu.
Dataset Information#
Dataset ID |
|
Title |
Categorized Free Recall with Open-Loop Stimulation at Encoding |
Year |
2024 |
Authors |
Haydn G. Herrema, Michael J. Kahana |
License |
CC0 |
Citation / DOI |
|
Source links |
OpenNeuro | NeMAR | Source URL |
Copy-paste BibTeX
@dataset{ds005491,
title = {Categorized Free Recall with Open-Loop Stimulation at Encoding},
author = {Haydn G. Herrema and Michael J. Kahana},
doi = {10.18112/openneuro.ds005491.v1.0.0},
url = {https://doi.org/10.18112/openneuro.ds005491.v1.0.0},
}
Found an issue with this dataset?
If you encounter any problems with this dataset (missing files, incorrect metadata, loading errors, etc.), please let us know!
Technical Details#
Subjects: 19
Recordings: 370
Tasks: 1
Channels: 126 (10), 64 (10), 88 (8), 93 (6), 85 (6), 104 (4), 163 (4), 113 (4), 116 (4), 133 (4), 155 (4), 146 (2), 177 (2), 127 (2), 96 (2), 92 (2), 72 (2), 68 (2), 119 (2), 16 (2), 112 (2), 130 (2), 115 (2), 14 (2), 80 (2), 70 (2), 110 (2), 124 (2), 78 (2), 128 (2)
Sampling rate (Hz): 500.0 (78), 1600.0 (12), 999.0 (8), 1000.0 (4)
Duration (hours): 0.0
Pathology: Not specified
Modality: Visual
Type: Memory
Size on disk: 22.5 GB
File count: 370
Format: BIDS
License: CC0
DOI: doi:10.18112/openneuro.ds005491.v1.0.0
API Reference#
Use the DS005491 class to access this dataset programmatically.
- class eegdash.dataset.DS005491(cache_dir: str, query: dict | None = None, s3_bucket: str | None = None, **kwargs)[source]#
Bases:
EEGDashDatasetOpenNeuro dataset
ds005491. Modality:ieeg; Experiment type:Memory; Subject type:Unknown. Subjects: 19; recordings: 51; tasks: 1.- Parameters:
cache_dir (str | Path) – Directory where data are cached locally.
query (dict | None) – Additional MongoDB-style filters to AND with the dataset selection. Must not contain the key
dataset.s3_bucket (str | None) – Base S3 bucket used to locate the data.
**kwargs (dict) – Additional keyword arguments forwarded to
EEGDashDataset.
- data_dir#
Local dataset cache directory (
cache_dir / dataset_id).- Type:
Path
- query#
Merged query with the dataset filter applied.
- Type:
dict
- records#
Metadata records used to build the dataset, if pre-fetched.
- Type:
list[dict] | None
Notes
Each item is a recording; recording-level metadata are available via
dataset.description.querysupports MongoDB-style filters on fields inALLOWED_QUERY_FIELDSand is combined with the dataset filter. Dataset-specific caveats are not provided in the summary metadata.References
OpenNeuro dataset: https://openneuro.org/datasets/ds005491 NeMAR dataset: https://nemar.org/dataexplorer/detail?dataset_id=ds005491
Examples
>>> from eegdash.dataset import DS005491 >>> dataset = DS005491(cache_dir="./data") >>> recording = dataset[0] >>> raw = recording.load()
See Also#
eegdash.dataset.EEGDashDataseteegdash.dataset