-
Notifications
You must be signed in to change notification settings - Fork 620
/
select_lm_params.py
40 lines (34 loc) · 1.1 KB
/
select_lm_params.py
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
import argparse
import json
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
parser = argparse.ArgumentParser(description='Select the best parameters based on the WER')
parser.add_argument('--input-path', type=str, help='Output json file from search_lm_params')
args = parser.parse_args()
with open(args.input_path) as f:
results = json.load(f)
min_results = min(results, key=lambda x: x[2]) # Find the minimum WER (alpha, beta, WER, CER)
print("Alpha: %f \nBeta: %f \nWER: %f\nCER: %f" % tuple(min_results))
alpha, beta, *_ = list(zip(*results))
alpha = np.array(sorted(list(set(alpha))))
beta = np.array(sorted(list(set(beta))))
X, Y = np.meshgrid(alpha, beta)
results = {(a, b): (w, c) for a, b, w, c in results}
WER = np.array([[results[(a, b)][0] for a in alpha] for b in beta])
fig = plt.figure()
ax = fig.gca(projection='3d')
surf = ax.plot_surface(
X,
Y,
WER,
cmap=matplotlib.cm.rainbow,
linewidth=0,
antialiased=False
)
ax.set_xlabel('Alpha')
ax.set_ylabel('Beta')
ax.set_zlabel('WER')
ax.set_zlim(5., 101.)
fig.colorbar(surf, shrink=0.5, aspect=5)
plt.show()