Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/api/tasks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ Available Tasks
Readmission Prediction <tasks/pyhealth.tasks.readmission_prediction>
Sleep Staging <tasks/pyhealth.tasks.sleep_staging>
Sleep Staging (SleepEDF) <tasks/pyhealth.tasks.SleepStagingSleepEDF>
Multi-View Time Series Task <tasks/pyhealth.tasks.multi_view_time_series_task>
Temple University EEG Tasks <tasks/pyhealth.tasks.temple_university_EEG_tasks>
Sleep Staging v2 <tasks/pyhealth.tasks.sleep_staging_v2>
Benchmark EHRShot <tasks/pyhealth.tasks.benchmark_ehrshot>
Expand Down
18 changes: 18 additions & 0 deletions docs/api/tasks/pyhealth.tasks.multi_view_time_series_task.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
pyhealth.tasks.multi_view_time_series_task
==========================================

The ``multi_view_time_series_task`` module provides a standalone task for
generating three synchronized EEG views per epoch:

- Temporal view (raw signal)
- Derivative view (first-order difference)
- Frequency view (FFT magnitude)

.. autoclass:: pyhealth.tasks.multi_view_time_series_task.MultiViewTimeSeriesTask
:members:
:undoc-members:
:show-inheritance:

.. autofunction:: pyhealth.tasks.multi_view_time_series_task.load_epoch_views

.. autofunction:: pyhealth.tasks.multi_view_time_series_task.get_view_shapes
Loading