edsnlp.pipelines.ner.scores.sofa.patterns
regex = ['\\bsofa\\b']
module-attribute
digits = '[^\\d]*(\\d*)'
module-attribute
after_extract = [dict(name='method_max', regex='sofa.*?(?:max{digits})'.format(digits=digits)), dict(name='method_24h', regex='sofa.*?(?:24h{digits})'.format(digits=digits)), dict(name='method_adm', regex='sofa.*?(?:admission{digits})'.format(digits=digits)), dict(name='no_method', regex='sofa.*?{digits}'.format(digits=digits))]
module-attribute
score_normalization_str = 'score_normalization.sofa'
module-attribute
score_normalization(extracted_score)
Sofa score normalization. If available, returns the integer value of the SOFA score.
Source code in edsnlp/pipelines/ner/scores/sofa/patterns.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|