Skip to content

Parser yaml

parse_yaml(args) ยค

Internal function for parsing a YAML file to a valid configuration dictionary.

Source code in aucmedi/automl/parser_yaml.py
29
30
31
32
33
34
35
36
37
38
39
40
41
42
def parse_yaml(args):
    """ Internal function for parsing a YAML file to a valid configuration
    dictionary.
    """
    # Extract filepath to YAML configuration file

    # verify existence

    # read yaml file

    # convert variables

    # Return valid configs
    pass