Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 17, 2024
1 parent 9100487 commit af835cd
Show file tree
Hide file tree
Showing 24 changed files with 145 additions and 81 deletions.
11 changes: 9 additions & 2 deletions mne_icalabel/annotation/bids.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,14 @@ def write_components_tsv(ica: ICA, fname: Union[str, Path]):
as the community converges on the specification of BIDS-Derivatives.
"""

def mark_component(component: int, fname: Union[str, Path], method: str, label: str, author: str, strict_label: bool=True):
def mark_component(
component: int,
fname: Union[str, Path],
method: str,
label: str,
author: str,
strict_label: bool = True,
):
"""Mark a component with a label.
Parameters
Expand All @@ -59,4 +66,4 @@ def mark_component(component: int, fname: Union[str, Path], method: str, label:
Storage of ICA annotations as a ``.tsv`` file is currently experimental in the
context of BIDS-EEG Derivatives. The API and functionality is subject to change
as the community converges on the specification of BIDS-Derivatives.
"""
"""
2 changes: 1 addition & 1 deletion mne_icalabel/config.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ from typing import Callable, Optional
from .iclabel import iclabel_label_components as iclabel_label_components

ICALABEL_METHODS: dict[str, Optional[Callable]]
ICA_LABELS_TO_MNE: dict[str, str]
ICA_LABELS_TO_MNE: dict[str, str]
2 changes: 1 addition & 1 deletion mne_icalabel/datasets/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from . import icalabel as icalabel
from . import icalabel as icalabel
12 changes: 9 additions & 3 deletions mne_icalabel/datasets/icalabel/icalabel.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ from _typeshed import Incomplete

has_icalabel_testing_data: Incomplete

def data_path(path: Optional[str]=None, force_update: bool=False, update_path: bool=True, download: bool=True, verbose: Incomplete | None=None) -> Path:
def data_path(
path: Optional[str] = None,
force_update: bool = False,
update_path: bool = True,
download: bool = True,
verbose: Incomplete | None = None,
) -> Path:
"""ICA label testing data generated in conjunction with EEGLab.
Parameters
Expand All @@ -26,7 +32,7 @@ def data_path(path: Optional[str]=None, force_update: bool=False, update_path: b
it will not be downloaded and the path will be returned
as ‘’ (empty string). This is mostly used for debugging purposes
and can be safely ignored by most users.
verbose : bool | str | int | None
Control verbosity of the logging output. If ``None``, use the default
verbosity level. See the :ref:`logging documentation <tut-logging>` and
Expand All @@ -37,4 +43,4 @@ def data_path(path: Optional[str]=None, force_update: bool=False, update_path: b
-------
path : Path
Path to dataset directory.
"""
"""
2 changes: 1 addition & 1 deletion mne_icalabel/features/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .topomap import get_topomaps as get_topomaps
from .topomap import get_topomaps as get_topomaps
24 changes: 19 additions & 5 deletions mne_icalabel/features/topomap.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ from numpy.typing import NDArray
from ..utils._checks import _validate_ica as _validate_ica
from ..utils._docs import fill_doc as fill_doc

def get_topomaps(ica: ICA, picks: Incomplete | None=None, res: int=64, image_interp: str=..., border: Union[float, str]=..., extrapolate: str=...) -> dict[str, NDArray[float]]:
def get_topomaps(
ica: ICA,
picks: Incomplete | None = None,
res: int = 64,
image_interp: str = ...,
border: Union[float, str] = ...,
extrapolate: str = ...,
) -> dict[str, NDArray[float]]:
"""Generate an array of scalp topographies for the picked components.
Parameters
Expand All @@ -31,7 +38,7 @@ def get_topomaps(ica: ICA, picks: Incomplete | None=None, res: int=64, image_int
then each extrapolated point has the average value of its neighbours.
extrapolate : str
Options:
- ``'box'``
Extrapolate to four points placed to form a square encompassing all
data points, where each side of the square is three times the range
Expand All @@ -52,7 +59,14 @@ def get_topomaps(ica: ICA, picks: Incomplete | None=None, res: int=64, image_int
Dictionary of ICs topographic maps for each channel type.
"""

def _get_topomap_array(data: NDArray[float], info: Info, res: int=64, image_interp: str=..., border: Union[float, str]=..., extrapolate: str=...) -> NDArray[float]:
def _get_topomap_array(
data: NDArray[float],
info: Info,
res: int = 64,
image_interp: str = ...,
border: Union[float, str] = ...,
extrapolate: str = ...,
) -> NDArray[float]:
"""Generate a scalp topographic map (n_pixels, n_pixels).
Parameters
Expand All @@ -72,7 +86,7 @@ def _get_topomap_array(data: NDArray[float], info: Info, res: int=64, image_inte
then each extrapolated point has the average value of its neighbours.
extrapolate : str
Options:
- ``'box'``
Extrapolate to four points placed to form a square encompassing all
data points, where each side of the square is three times the range
Expand All @@ -91,4 +105,4 @@ def _get_topomap_array(data: NDArray[float], info: Info, res: int=64, image_inte
-------
topomap : array of shape (n_pixels, n_pixels)
Topographic map array.
"""
"""
4 changes: 2 additions & 2 deletions mne_icalabel/gui/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from mne.preprocessing import ICA

def label_ica_components(inst, ica: ICA, show: bool=True, block: bool=False):
def label_ica_components(inst, ica: ICA, show: bool = True, block: bool = False):
"""Launch the IC labelling GUI.
Parameters
Expand All @@ -19,4 +19,4 @@ def label_ica_components(inst, ica: ICA, show: bool=True, block: bool=False):
-------
gui : instance of ICAComponentLabeler
The graphical user interface (GUI) window.
"""
"""
9 changes: 5 additions & 4 deletions mne_icalabel/gui/_label_components.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,16 @@ class ICAComponentLabeler(QMainWindow):
ica : ICA
show : bool
"""

_inst: Incomplete
_ica: Incomplete
_labels: Incomplete
selected_labels: Incomplete
_selected_component: int

def __init__(self, inst: Union[BaseRaw, BaseEpochs], ica: ICA, show: bool=True) -> None:
...

def __init__(
self, inst: Union[BaseRaw, BaseEpochs], ica: ICA, show: bool = True
) -> None: ...
def _save_labels(self) -> None:
"""Save the selected labels to the ICA instance."""
_central_widget: Incomplete
Expand Down Expand Up @@ -98,4 +99,4 @@ class ICAComponentLabeler(QMainWindow):
Update the labels since the user might have selected one for the
currently being displayed IC.
"""
"""
2 changes: 1 addition & 1 deletion mne_icalabel/iclabel/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .features import get_iclabel_features as get_iclabel_features
from .label_components import iclabel_label_components as iclabel_label_components
from .network import run_iclabel as run_iclabel
from .network import run_iclabel as run_iclabel
2 changes: 1 addition & 1 deletion mne_icalabel/iclabel/_config.pyi
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ICLABEL_NUMERICAL_TO_STRING: dict[int, str]
ICLABEL_STRING_TO_NUMERICAL: dict[str, int]
ICLABEL_STRING_TO_NUMERICAL: dict[str, int]
22 changes: 16 additions & 6 deletions mne_icalabel/iclabel/_utils.pyi
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
from mne.io import BaseRaw
from numpy.typing import ArrayLike, NDArray

def _mne_to_eeglab_locs(raw: BaseRaw, picks: list[str]) -> tuple[NDArray[float], NDArray[float]]:
def _mne_to_eeglab_locs(
raw: BaseRaw, picks: list[str]
) -> tuple[NDArray[float], NDArray[float]]:
"""Obtain EEGLab-like spherical coordinate from EEG channel positions.
TODO: @JACOB:
Expand All @@ -25,7 +27,9 @@ def _mne_to_eeglab_locs(raw: BaseRaw, picks: list[str]) -> tuple[NDArray[float],
Degree in spherical coordinates of each EEG channel.
"""

def _pol2cart(theta: NDArray[float], rho: NDArray[float]) -> tuple[NDArray[float], NDArray[float]]:
def _pol2cart(
theta: NDArray[float], rho: NDArray[float]
) -> tuple[NDArray[float], NDArray[float]]:
"""Convert polar coordinates to cartesian coordinates.
Parameters
Expand All @@ -39,7 +43,9 @@ def _pol2cart(theta: NDArray[float], rho: NDArray[float]) -> tuple[NDArray[float
def _next_power_of_2(x) -> int:
"""Equivalent to 2^nextpow2 in MATLAB."""

def _gdatav4(x: ArrayLike, y: ArrayLike, v: ArrayLike, xq: ArrayLike, yq: ArrayLike) -> tuple[ArrayLike, ArrayLike, ArrayLike]:
def _gdatav4(
x: ArrayLike, y: ArrayLike, v: ArrayLike, xq: ArrayLike, yq: ArrayLike
) -> tuple[ArrayLike, ArrayLike, ArrayLike]:
"""GDATAV4 MATLAB 4 GRIDDATA interpolation.
Parameters
Expand Down Expand Up @@ -69,7 +75,9 @@ def _gdatav4(x: ArrayLike, y: ArrayLike, v: ArrayLike, xq: ArrayLike, yq: ArrayL
Describes interpolation using value of gradient of value in any dimension.
"""

def _mergepoints2D(x: ArrayLike, y: ArrayLike, v: ArrayLike) -> tuple[ArrayLike, ArrayLike, ArrayLike]:
def _mergepoints2D(
x: ArrayLike, y: ArrayLike, v: ArrayLike
) -> tuple[ArrayLike, ArrayLike, ArrayLike]:
"""Averages values for points that are close to each other.
Parameters
Expand All @@ -88,7 +96,9 @@ def _mergepoints2D(x: ArrayLike, y: ArrayLike, v: ArrayLike) -> tuple[ArrayLike,
v : array
"""

def _mergesimpts(data: ArrayLike, tols: list[ArrayLike], mode: str='average') -> ArrayLike:
def _mergesimpts(
data: ArrayLike, tols: list[ArrayLike], mode: str = "average"
) -> ArrayLike:
"""
Parameters
----------
Expand All @@ -99,4 +109,4 @@ def _mergesimpts(data: ArrayLike, tols: list[ArrayLike], mode: str='average') ->
Returns
-------
array
"""
"""
42 changes: 33 additions & 9 deletions mne_icalabel/iclabel/features.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ def _retrieve_eeglab_icawinv(ica: ICA) -> tuple[NDArray[float], NDArray[float]]:
weights : array
"""

def _compute_ica_activations(inst: Union[BaseRaw, BaseEpochs], ica: ICA) -> NDArray[float]:
def _compute_ica_activations(
inst: Union[BaseRaw, BaseEpochs], ica: ICA
) -> NDArray[float]:
"""Compute the ICA activations 'icaact' variable from an MNE ICA instance.
Parameters
Expand Down Expand Up @@ -83,25 +85,45 @@ def _compute_ica_activations(inst: Union[BaseRaw, BaseEpochs], ica: ICA) -> NDAr
average reference.
"""

def _eeg_topoplot(inst: Union[BaseRaw, BaseEpochs], icawinv: NDArray[float], picks: list[str]) -> NDArray[float]:
def _eeg_topoplot(
inst: Union[BaseRaw, BaseEpochs], icawinv: NDArray[float], picks: list[str]
) -> NDArray[float]:
"""Topoplot feature."""

def _topoplotFast(values: NDArray[float], rd: NDArray[float], th: NDArray[float]) -> NDArray[float]:
def _topoplotFast(
values: NDArray[float], rd: NDArray[float], th: NDArray[float]
) -> NDArray[float]:
"""Implement topoplotFast.m from MATLAB. Each topographic map is a 32x32 images."""

def _eeg_rpsd(inst: Union[BaseRaw, BaseEpochs], ica: ICA, icaact: NDArray[float]) -> NDArray[float]:
def _eeg_rpsd(
inst: Union[BaseRaw, BaseEpochs], ica: ICA, icaact: NDArray[float]
) -> NDArray[float]:
"""PSD feature."""

def _eeg_rpsd_constants(inst: Union[BaseRaw, BaseEpochs], ica: ICA) -> tuple[int, int, int, int, NDArray[int], NDArray[float], NDArray[int]]:
def _eeg_rpsd_constants(
inst: Union[BaseRaw, BaseEpochs], ica: ICA
) -> tuple[int, int, int, int, NDArray[int], NDArray[float], NDArray[int]]:
"""Compute the constants before ``randperm`` is used to compute the subset."""

def _eeg_rpsd_compute_psdmed(inst: Union[BaseRaw, BaseEpochs], icaact: NDArray[float], ncomp: int, nfreqs: int, n_points: int, nyquist: int, index: NDArray[int], window: NDArray[float], subset: NDArray[int]) -> NDArray[float]:
def _eeg_rpsd_compute_psdmed(
inst: Union[BaseRaw, BaseEpochs],
icaact: NDArray[float],
ncomp: int,
nfreqs: int,
n_points: int,
nyquist: int,
index: NDArray[int],
window: NDArray[float],
subset: NDArray[int],
) -> NDArray[float]:
"""Compute the variable 'psdmed', annotated as windowed spectrums."""

def _eeg_rpsd_format(psd: NDArray[float]) -> NDArray[float]:
"""Apply the formatting steps after 'eeg_rpsd.m'."""

def _eeg_autocorr_welch(raw: BaseRaw, ica: ICA, icaact: NDArray[float]) -> NDArray[float]:
def _eeg_autocorr_welch(
raw: BaseRaw, ica: ICA, icaact: NDArray[float]
) -> NDArray[float]:
"""Autocorrelation feature applied on raw object with at least 5 * fs samples.
MATLAB: 'eeg_autocorr_welch.m'.
Expand All @@ -113,7 +135,9 @@ def _eeg_autocorr(raw: BaseRaw, ica: ICA, icaact: NDArray[float]) -> NDArray[flo
MATLAB: 'eeg_autocorr.m'.
"""

def _eeg_autocorr_fftw(epochs: BaseEpochs, ica: ICA, icaact: NDArray[float]) -> NDArray[float]:
def _eeg_autocorr_fftw(
epochs: BaseEpochs, ica: ICA, icaact: NDArray[float]
) -> NDArray[float]:
"""Autocorrelation feature applied on epoch object.
MATLAB: 'eeg_autocorr_fftw.m'.
Expand All @@ -137,4 +161,4 @@ def _resample(ac: NDArray[float], fs: Union[int, float]) -> NDArray[float]:
Array of shape (n_comp, samples).
fs : int | float
Sampling frequency of the MNE instance.
"""
"""
9 changes: 7 additions & 2 deletions mne_icalabel/iclabel/label_components.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ from mne.preprocessing import ICA
from .features import get_iclabel_features as get_iclabel_features
from .network import run_iclabel as run_iclabel

def iclabel_label_components(inst: Union[BaseRaw, BaseEpochs], ica: ICA, inplace: bool=True, backend: Optional[str]=None):
def iclabel_label_components(
inst: Union[BaseRaw, BaseEpochs],
ica: ICA,
inplace: bool = True,
backend: Optional[str] = None,
):
"""Label the provided ICA components with the ICLabel neural network.
ICLabel is designed to classify ICs fitted with an extended infomax ICA
Expand Down Expand Up @@ -54,4 +59,4 @@ def iclabel_label_components(inst: Union[BaseRaw, BaseEpochs], ica: ICA, inplace
References
----------
.. footbibliography::
"""
"""
9 changes: 7 additions & 2 deletions mne_icalabel/iclabel/network/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ from typing import Optional

from numpy.typing import ArrayLike, NDArray

def run_iclabel(images: ArrayLike, psds: ArrayLike, autocorr: ArrayLike, backend: Optional[str]='pytorch') -> NDArray:
def run_iclabel(
images: ArrayLike,
psds: ArrayLike,
autocorr: ArrayLike,
backend: Optional[str] = "pytorch",
) -> NDArray:
"""Run the ICLabel network on the provided set of features.
The features are un-formatted and are as-returned by
Expand All @@ -26,4 +31,4 @@ def run_iclabel(images: ArrayLike, psds: ArrayLike, autocorr: ArrayLike, backend
The predicted numerical probability values for all labels in ICLabel output.
Columns are ordered with ``'Brain'``, ``'Muscle'``, ``'Eye'``,
``'Heart'``, ``'Line Noise'``, ``'Channel Noise'``, and ``'Other'``.
"""
"""
2 changes: 1 addition & 1 deletion mne_icalabel/iclabel/network/onnx.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ def _format_input_for_onnx(topo: ArrayLike, psd: ArrayLike, autocorr: ArrayLike)
"""Format the features to the correct shape and type for ONNX."""

def _run_iclabel(images: ArrayLike, psds: ArrayLike, autocorr: ArrayLike) -> NDArray:
"""Run ICLabel using onnx."""
"""Run ICLabel using onnx."""
Loading

0 comments on commit af835cd

Please sign in to comment.