File size: 6,045 Bytes
a7c2243 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | # Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
This script calculates the EOU metrics using predictions and references in SegLST format.
Example usage:
The PREDICTION_ROOT and REFERENCE_ROOT directories should have the following structure:
<PREDICTION_ROOT>:
->dataset1/
-> sample1.json
-> sample2.json
->dataset2/
-> sample1.json
-> sample2.json
<REFERENCE_ROOT>:
->dataset1/
-> sample1.json
-> sample2.json
->dataset2/
-> sample1.json
-> sample2.json
each sample.json should contain a list of dictionaries with the following fields:
{
"session_id": str,
"start_time": float, # start time in seconds
"end_time": float, # end time in seconds
"words": str, # transcription of the utterance
"audio_filepath": str, # only in prediction
"eou_prob": float, # only in prediction, probability of EOU in range [0.1]
"eou_pred": bool, # only in prediction
"full_text": str, # only in prediction, which is the full transcription up to the end_time
}
```bash
python eval_eou_metrics.py \
--prediction $PREDICTION_ROOT \
--reference $REFERENCE_ROOT \
--multiple
```
"""
import argparse
import json
from pathlib import Path
from typing import List
from nemo.collections.asr.parts.utils.eou_utils import EOUResult, aggregate_eou_metrics, evaluate_eou
parser = argparse.ArgumentParser(description="Evaluate end of utterance predictions against reference labels.")
parser.add_argument(
"-p",
"--prediction",
type=str,
required=True,
help="Path to the directory containing the predictions.",
)
parser.add_argument(
"-r",
"--reference",
type=str,
required=True,
help="Path to the directory containing the groundtruth.",
)
parser.add_argument(
"--eob",
action="store_true",
help="Whether to evaluate end of backchannel predictions.",
)
parser.add_argument(
"--ignore_eob",
action="store_true",
help="Whether to ignore end of backchannel predictions.",
)
parser.add_argument(
"--multiple",
action="store_true",
help="Whether to evaluate multiple datasets.",
)
def load_segLST(directory: str, use_eob: bool = False, ignore_eob: bool = False) -> dict:
json_files = list(Path(directory).glob("*.json"))
segLST = {}
for json_file in json_files:
key = json_file.stem
with open(json_file, 'r') as f:
data = json.load(f)
assert isinstance(data, list), f"Data in {json_file} is not a list."
if not ignore_eob:
# get the data with the correct eob label
data = [x for x in data if (x.get("is_backchannel", False) == use_eob)]
segLST[key] = data
return segLST
def evaluate_eou_predictions(
prediction_dir: str, reference_dir: str, use_eob: bool = False, ignore_eob: bool = False
) -> List[EOUResult]:
prediction_segLST = load_segLST(prediction_dir, use_eob, ignore_eob)
reference_segLST = load_segLST(reference_dir, use_eob, ignore_eob)
eou_metrics = []
for key, reference in reference_segLST.items():
if key not in prediction_segLST:
raise ValueError(f"Key {key} in reference not found in predictions.")
prediction = prediction_segLST[key]
eou_result = evaluate_eou(
prediction=prediction, reference=reference, threshold=None, collar=0.0, do_sorting=True
)
eou_metrics.append(eou_result)
results = aggregate_eou_metrics(eou_metrics)
# add prefix to the keys of the results
prefix = Path(reference_dir).stem
prefix += "_eob" if use_eob else "_eou"
results = {f"{prefix}_{k}": v for k, v in results.items()}
return results
if __name__ == "__main__":
args = parser.parse_args()
prediction_dir = Path(args.prediction)
reference_dir = Path(args.reference)
if not prediction_dir.is_dir():
raise ValueError(f"Prediction directory {prediction_dir} does not exist or is not a directory.")
if not reference_dir.is_dir():
raise ValueError(f"Reference directory {reference_dir} does not exist or is not a directory.")
if args.multiple:
# get all subdirectories in the prediction and reference directories
prediction_dirs = sorted([x for x in prediction_dir.glob("*/") if x.is_dir()])
reference_dirs = sorted([x for x in reference_dir.glob("*/") if x.is_dir()])
if len(prediction_dirs) != len(reference_dirs):
raise ValueError(
f"Number of prediction directories {len(prediction_dirs)} must match number of reference directories {len(reference_dirs)}."
)
else:
prediction_dirs = [prediction_dir]
reference_dirs = [reference_dir]
for ref_dir, pred_dir in zip(reference_dirs, prediction_dirs):
if args.multiple and ref_dir.stem != pred_dir.stem:
raise ValueError(
f"Reference directory {ref_dir} and prediction directory {pred_dir} must have the same name."
)
results = evaluate_eou_predictions(
prediction_dir=str(pred_dir), reference_dir=str(ref_dir), use_eob=args.eob, ignore_eob=args.ignore_eob
)
# Print the results
print("==========================================")
print(f"Evaluation Results for: {pred_dir} against {ref_dir}")
for key, value in results.items():
print(f"{key}: {value:.4f}")
print("==========================================")
|