edsnlp.pipelines.ner.scores.tnm.models
TnmEnum
Bases: Enum
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
16 17 18 |
|
__str__()
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
17 18 |
|
Modifier
Bases: TnmEnum
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
21 22 23 24 25 26 27 28 29 30 31 |
|
clinical = 'c'
class-attribute
histopathology = 'p'
class-attribute
histopathology2 = 'P'
class-attribute
neoadjuvant_therapy = 'y'
class-attribute
recurrent = 'r'
class-attribute
autopsy = 'a'
class-attribute
ultrasonography = 'u'
class-attribute
multifocal = 'm'
class-attribute
py = 'yp'
class-attribute
mp = 'mp'
class-attribute
Tumour
Bases: TnmEnum
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
34 35 36 37 38 39 40 41 42 |
|
unknown = 'x'
class-attribute
in_situ = 'is'
class-attribute
score_0 = '0'
class-attribute
score_1 = '1'
class-attribute
score_2 = '2'
class-attribute
score_3 = '3'
class-attribute
score_4 = '4'
class-attribute
o = 'o'
class-attribute
Specification
Bases: TnmEnum
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
45 46 47 48 49 50 |
|
a = 'a'
class-attribute
b = 'b'
class-attribute
c = 'c'
class-attribute
d = 'd'
class-attribute
x = 'x'
class-attribute
Node
Bases: TnmEnum
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
53 54 55 56 57 58 59 |
|
unknown = 'x'
class-attribute
score_0 = '0'
class-attribute
score_1 = '1'
class-attribute
score_2 = '2'
class-attribute
score_3 = '3'
class-attribute
o = 'o'
class-attribute
Metastasis
Bases: TnmEnum
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
62 63 64 65 66 67 68 69 |
|
unknown = 'x'
class-attribute
score_0 = '0'
class-attribute
score_1 = '1'
class-attribute
o = 'o'
class-attribute
score_1x = '1x'
class-attribute
score_2x = '2x'
class-attribute
ox = 'ox'
class-attribute
TNM
Bases: BaseModel
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
|
modifier: Optional[Modifier] = None
class-attribute
tumour: Optional[Tumour] = None
class-attribute
tumour_specification: Optional[Specification] = None
class-attribute
node: Optional[Node] = None
class-attribute
node_specification: Optional[Specification] = None
class-attribute
metastasis: Optional[Metastasis] = None
class-attribute
regional_nodes: Optional[int] = None
class-attribute
version: Optional[str] = None
class-attribute
version_year: Optional[int] = None
class-attribute
coerce_o(v)
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
84 85 86 87 88 |
|
validate_year(v)
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
90 91 92 93 94 95 96 97 98 99 100 |
|
norm()
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
dict(*, include=None, exclude=None, by_alias=False, skip_defaults=None, exclude_unset=False, exclude_defaults=False, exclude_none=False)
Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.
Source code in edsnlp/pipelines/ner/scores/tnm/models.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
|