initial commit

This commit is contained in:
2025-08-19 09:13:22 -07:00
parent 28464811d6
commit 0977a3e14d
820 changed files with 1003358 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
# Authors: The MNE-Python contributors.
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.
"""MEG reference-noise data set."""
from .refmeg_noise import data_path, get_version

View File

@@ -0,0 +1,32 @@
# Authors: The MNE-Python contributors.
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.
from ...utils import verbose
from ..utils import _data_path_doc, _download_mne_dataset, _get_version, _version_doc
@verbose
def data_path(
path=None, force_update=False, update_path=True, download=True, *, verbose=None
): # noqa: D103
return _download_mne_dataset(
name="refmeg_noise",
processor="unzip",
path=path,
force_update=force_update,
update_path=update_path,
download=download,
)
data_path.__doc__ = _data_path_doc.format(
name="refmeg_noise", conf="MNE_DATASETS_REFMEG_NOISE_PATH"
)
def get_version(): # noqa: D103
return _get_version("refmeg_noise")
get_version.__doc__ = _version_doc.format(name="refmeg_noise")