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 there is a typo in line 107: prepare_data = lambda data: (to_seq(data[0]), to_seq(data[1]), data[2]) as data[3] has the labels.
The text was updated successfully, but these errors were encountered:
is not a typo, data[3] it will be the 4th column and you use only 3 data fields. The data[2] gets the labels from the get_data module.
Sorry, something went wrong.
No branches or pull requests
I think there is a typo in line 107:
prepare_data = lambda data: (to_seq(data[0]), to_seq(data[1]), data[2])
as data[3] has the labels.
The text was updated successfully, but these errors were encountered: