How to use the lhotse.utils.load_yaml function in lhotse

To help you get started, we’ve selected a few lhotse examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github mpariente / AsSteroid / egs / MiniLibriMix / lhotse / local / dataset_wrapper.py View on Github external
def parse_yaml(y):
    y = load_yaml(y)

    rec_ids = {}
    for entry in y:
        key = entry["features"]["recording_id"]
        if key not in rec_ids.keys():
            rec_ids[key] = [entry["features"]["storage_path"]]
        else:
            rec_ids[key].append(entry["features"]["storage_path"])

    return rec_ids

lhotse

Data preparation for speech processing models training.

Apache-2.0
Latest version published 3 days ago

Package Health Score

82 / 100
Full package analysis

Similar packages