Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with BLEU Score Calculation in train.py and Suggested Fix #36

Open
Xie-yx opened this issue Mar 7, 2025 · 0 comments
Open

Issue with BLEU Score Calculation in train.py and Suggested Fix #36

Xie-yx opened this issue Mar 7, 2025 · 0 comments

Comments

@Xie-yx
Copy link

Xie-yx commented Mar 7, 2025

Hi @hkproj,

I found an issue with the BLEU score calculation in train.py.
The torchmetrics.BLEUScore() function expects a list of reference sentences but receives a single sentence instead.
Here is the original code:

expected = []
expected.append(target_text)

bleu = metric(predicted, expected)

The corrected version is as follows:

expected = []
expected_list = []

expected.append(target_text)
expected_list.append([target_text])

bleu = metric(predicted, expected_list)

Thank you for your code and videos! They help me a lot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant