r"""Parse yaml file. Args: config_yaml (str): config yaml path Returns: yaml_dict (Dict): parsed yaml file
(config_yaml: str)
| 59 | |
| 60 | |
| 61 | def parse_yaml(config_yaml: str) -> Dict: |
| 62 | r"""Parse yaml file. |
| 63 | |
| 64 | Args: |
| 65 | config_yaml (str): config yaml path |
| 66 | |
| 67 | Returns: |
| 68 | yaml_dict (Dict): parsed yaml file |
| 69 | """ |
| 70 | |
| 71 | with open(config_yaml, "r") as fr: |
| 72 | return yaml.load(fr, Loader=yaml.FullLoader) |
| 73 | |
| 74 | |
| 75 | def get_audioset632_id_to_lb(ontology_path: str) -> Dict: |
no outgoing calls
no test coverage detected