File: __init__.py

package info (click to toggle)
python-mne 1.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 131,492 kB
  • sloc: python: 213,302; javascript: 12,910; sh: 447; makefile: 144
file content (20 lines) | stat: -rw-r--r-- 454 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Authors: The MNE-Python contributors.
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.

"""Metrics module for compute stc-based metrics."""

from .metrics import (
    cosine_score,
    region_localization_error,
    precision_score,
    recall_score,
    f1_score,
    roc_auc_score,
    peak_position_error,
    source_estimate_quantification,
    spatial_deviation_error,
    _thresholding,
    _check_threshold,
    _uniform_stc,
)