Download this file

22 lines (15 with data), 496 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
"""
"""
from dataclasses import dataclass
from typing import Optional
from torch_ecg.components.outputs import ClassificationOutput, SequenceLabellingOutput
__all__ = ["CINC2022Outputs"]
@dataclass
class CINC2022Outputs:
""" """
murmur_output: ClassificationOutput
outcome_output: ClassificationOutput
segmentation_output: SequenceLabellingOutput
murmur_loss: Optional[float] = None
outcome_loss: Optional[float] = None
segmentation_loss: Optional[float] = None