Spaces:
Sleeping
Sleeping
attempted bugfix
Browse files
app.py
CHANGED
@@ -19,10 +19,16 @@ if __name__ == "__main__":
|
|
19 |
|
20 |
# Define your color-coding labels; if prob > x, then label = y; Sorted in descending probability order!
|
21 |
probs_to_label = [
|
|
|
22 |
(0.8, "p >= 80%"),
|
|
|
|
|
23 |
(0.5, "p >= 50%"),
|
|
|
|
|
24 |
(0.2, "p >= 20%"),
|
25 |
-
(0.
|
|
|
26 |
]
|
27 |
|
28 |
label_to_color = {
|
@@ -42,7 +48,7 @@ if __name__ == "__main__":
|
|
42 |
)
|
43 |
# Important: don't forget to set `normalize_logits=True` to obtain normalized probabilities (i.e. sum(p) = 1)
|
44 |
transition_scores = model.compute_transition_scores(outputs.sequences, outputs.scores, normalize_logits=True)
|
45 |
-
transition_proba = np.exp(transition_scores)
|
46 |
# We only have scores for the generated tokens, so pop out the prompt tokens
|
47 |
input_length = 1 if model.config.is_encoder_decoder else inputs.input_ids.shape[1]
|
48 |
generated_ids = outputs.sequences[:, input_length:]
|
|
|
19 |
|
20 |
# Define your color-coding labels; if prob > x, then label = y; Sorted in descending probability order!
|
21 |
probs_to_label = [
|
22 |
+
(0.9, "p >= 90%"),
|
23 |
(0.8, "p >= 80%"),
|
24 |
+
(0.7, "p >= 70%"),
|
25 |
+
(0.6, "p >= 60%"),
|
26 |
(0.5, "p >= 50%"),
|
27 |
+
(0.4, "p >= 40%"),
|
28 |
+
(0.3, "p >= 30%"),
|
29 |
(0.2, "p >= 20%"),
|
30 |
+
(0.1, "p >= 10%"),
|
31 |
+
(0.0, "p >= 00%")
|
32 |
]
|
33 |
|
34 |
label_to_color = {
|
|
|
48 |
)
|
49 |
# Important: don't forget to set `normalize_logits=True` to obtain normalized probabilities (i.e. sum(p) = 1)
|
50 |
transition_scores = model.compute_transition_scores(outputs.sequences, outputs.scores, normalize_logits=True)
|
51 |
+
transition_proba = np.exp(transition_scores[0])
|
52 |
# We only have scores for the generated tokens, so pop out the prompt tokens
|
53 |
input_length = 1 if model.config.is_encoder_decoder else inputs.input_ids.shape[1]
|
54 |
generated_ids = outputs.sequences[:, input_length:]
|