We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think this line of code
max_len_eng_sent = max([len(line) for line in eng_sentences]) max_len_fra_sent = max([len(line) for line in fra_sentences])
should be like this
max_len_eng_sent = max([len(line) for line in eng_sent]) max_len_fra_sent = max([len(line) for line in fra_sent])
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think this line of code
should be like this
The text was updated successfully, but these errors were encountered: