Spaces:
Sleeping
Sleeping
bugfix
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ if __name__ == "__main__":
|
|
57 |
)
|
58 |
# Important: don't forget to set `normalize_logits=True` to obtain normalized probabilities (i.e. sum(p) = 1)
|
59 |
transition_scores = model.compute_transition_scores(outputs.sequences, outputs.scores, normalize_logits=True)
|
60 |
-
transition_proba = np.exp(transition_scores)
|
61 |
# We only have scores for the generated tokens, so pop out the prompt tokens
|
62 |
input_length = 1 if model.config.is_encoder_decoder else inputs.input_ids.shape[1]
|
63 |
generated_ids = outputs.sequences[:, input_length:]
|
|
|
57 |
)
|
58 |
# Important: don't forget to set `normalize_logits=True` to obtain normalized probabilities (i.e. sum(p) = 1)
|
59 |
transition_scores = model.compute_transition_scores(outputs.sequences, outputs.scores, normalize_logits=True)
|
60 |
+
transition_proba = np.exp(transition_scores[0])
|
61 |
# We only have scores for the generated tokens, so pop out the prompt tokens
|
62 |
input_length = 1 if model.config.is_encoder_decoder else inputs.input_ids.shape[1]
|
63 |
generated_ids = outputs.sequences[:, input_length:]
|