Skip to content
Snippets Groups Projects
Commit 159da408 authored by Jan Buethe's avatar Jan Buethe
Browse files

fixed calculation of p0

parent 818a0496
No related branches found
No related tags found
No related merge requests found
......@@ -58,9 +58,9 @@ def dump_statistical_model(qembedding, f, fh):
print("dumping statistical model")
quant_scales = tf.math.softplus(w[:, : N]).numpy()
dead_zone = 0.05 * tf.math.softplus(w[:, N : 2 * N]).numpy()
theta = 0.5 + 0.5 * tf.math.sigmoid(w[:, 4 * N : 5 * N]).numpy()
r = tf.math.sigmoid(w[:, 5 * N : 6 * N]).numpy()
p0 = 1 - r ** (0.5 + 0.5 * theta)
p0 = tf.math.sigmoid(w[:, 4 * N : 5 * N]).numpy()
p0 = 1 - r ** (0.5 + 0.5 * p0)
quant_scales_q8 = np.round(quant_scales * 2**8).astype(np.int16)
dead_zone_q10 = np.round(dead_zone * 2**10).astype(np.int16)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment