imvladikon commited on
Commit
5a25ece
β€’
1 Parent(s): 3121848

Upload eval.py

Browse files
Files changed (1) hide show
  1. eval.py +139 -0
eval.py ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ import argparse
3
+ import re
4
+ from typing import Dict
5
+
6
+ import torch
7
+ from datasets import Audio, Dataset, load_dataset, load_metric
8
+
9
+ from transformers import AutoFeatureExtractor, pipeline
10
+
11
+
12
+ def log_results(result: Dataset, args: Dict[str, str]):
13
+ """DO NOT CHANGE. This function computes and logs the result metrics."""
14
+
15
+ log_outputs = args.log_outputs
16
+ dataset_id = "_".join(args.dataset.split("/") + [args.config, args.split])
17
+
18
+ # load metric
19
+ wer = load_metric("wer")
20
+ cer = load_metric("cer")
21
+
22
+ # compute metrics
23
+ wer_result = wer.compute(references=result["target"], predictions=result["prediction"])
24
+ cer_result = cer.compute(references=result["target"], predictions=result["prediction"])
25
+
26
+ # print & log results
27
+ result_str = f"WER: {wer_result}\n" f"CER: {cer_result}"
28
+ print(result_str)
29
+
30
+ with open(f"{dataset_id}_eval_results.txt", "w") as f:
31
+ f.write(result_str)
32
+
33
+ # log all results in text file. Possibly interesting for analysis
34
+ if log_outputs is not None:
35
+ pred_file = f"log_{dataset_id}_predictions.txt"
36
+ target_file = f"log_{dataset_id}_targets.txt"
37
+
38
+ with open(pred_file, "w") as p, open(target_file, "w") as t:
39
+
40
+ # mapping function to write output
41
+ def write_to_file(batch, i):
42
+ p.write(f"{i}" + "\n")
43
+ p.write(batch["prediction"] + "\n")
44
+ t.write(f"{i}" + "\n")
45
+ t.write(batch["target"] + "\n")
46
+
47
+ result.map(write_to_file, with_indices=True)
48
+
49
+ def remove_niqqud(string: str) -> str:
50
+ return ''.join('' if 1456 <= ord(c) <= 1479 else c for c in string)
51
+
52
+ def normalize_text(text: str) -> str:
53
+ """DO ADAPT FOR YOUR USE CASE. this function normalizes the target text."""
54
+
55
+ chars_to_ignore_regex = '[,?.!\-\;\:"β€œ%β€˜β€οΏ½β€”β€™β€¦β€“]' # noqa: W605 IMPORTANT: this should correspond to the chars that were ignored during training
56
+ text = re.sub(chars_to_ignore_regex, "", text.lower())
57
+ text = remove_niqqud(text)
58
+
59
+ # In addition, we can normalize the target text, e.g. removing new lines characters etc...
60
+ # note that order is important here!
61
+ token_sequences_to_ignore = ["\n\n", "\n", " ", " "]
62
+
63
+ for t in token_sequences_to_ignore:
64
+ text = " ".join(text.split(t))
65
+
66
+ return text
67
+
68
+
69
+ def main(args):
70
+ # load dataset
71
+ dataset = load_dataset(args.dataset, args.config, split=args.split, use_auth_token=True)
72
+
73
+ # for testing: only process the first two examples as a test
74
+ # dataset = dataset.select(range(10))
75
+
76
+ # load processor
77
+ feature_extractor = AutoFeatureExtractor.from_pretrained(args.model_id)
78
+ sampling_rate = feature_extractor.sampling_rate
79
+
80
+ # resample audio
81
+ dataset = dataset.cast_column("audio", Audio(sampling_rate=sampling_rate))
82
+
83
+ # load eval pipeline
84
+ if args.device is None:
85
+ args.device = 0 if torch.cuda.is_available() else -1
86
+ asr = pipeline("automatic-speech-recognition", model=args.model_id, device=args.device)
87
+
88
+ # map function to decode audio
89
+ def map_to_pred(batch):
90
+ prediction = asr(
91
+ batch["audio"]["array"], chunk_length_s=args.chunk_length_s, stride_length_s=args.stride_length_s
92
+ )
93
+
94
+ batch["prediction"] = prediction["text"]
95
+ batch["target"] = normalize_text(batch["sentence"])
96
+ return batch
97
+
98
+ # run inference on all examples
99
+ result = dataset.map(map_to_pred, remove_columns=dataset.column_names)
100
+
101
+ # compute and log_results
102
+ # do not change function below
103
+ log_results(result, args)
104
+
105
+
106
+ if __name__ == "__main__":
107
+ parser = argparse.ArgumentParser()
108
+
109
+ parser.add_argument(
110
+ "--model_id", type=str, required=True, help="Model identifier. Should be loadable with πŸ€— Transformers"
111
+ )
112
+ parser.add_argument(
113
+ "--dataset",
114
+ type=str,
115
+ required=True,
116
+ help="Dataset name to evaluate the `model_id`. Should be loadable with πŸ€— Datasets",
117
+ )
118
+ parser.add_argument(
119
+ "--config", type=str, required=True, help="Config of the dataset. *E.g.* `'en'` for Common Voice"
120
+ )
121
+ parser.add_argument("--split", type=str, required=True, help="Split of the dataset. *E.g.* `'test'`")
122
+ parser.add_argument(
123
+ "--chunk_length_s", type=float, default=None, help="Chunk length in seconds. Defaults to 5 seconds."
124
+ )
125
+ parser.add_argument(
126
+ "--stride_length_s", type=float, default=None, help="Stride of the audio chunks. Defaults to 1 second."
127
+ )
128
+ parser.add_argument(
129
+ "--log_outputs", action="store_true", help="If defined, write outputs to log file for analysis."
130
+ )
131
+ parser.add_argument(
132
+ "--device",
133
+ type=int,
134
+ default=None,
135
+ help="The device to run the pipeline on. -1 for CPU (default), 0 for the first GPU and so on.",
136
+ )
137
+ args = parser.parse_args()
138
+
139
+ main(args)