Skip to content

edsnlp.pipelines.ner.disorders.helpers

get_all_pipes()

Get all comorbidity pipe names

RETURNS DESCRIPTION
_type_

description

Source code in edsnlp/pipelines/ner/disorders/helpers.py
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
def get_all_pipes():
    """
    Get all comorbidity pipe names

    Returns
    -------
    _type_
        _description_
    """
    return [
        name
        for name in registry.factories.get_all().keys()
        if ".comorbidities." in name
    ]