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
The following line of code contains the wrong key for reading the action ID from the ava_train_v2.1.csv from here
action_string = action_name[int(anno_data[idx][-1])]
However changing that to,
action_string = action_name[int(anno_data[idx][6])]
will solve the problem.
The text was updated successfully, but these errors were encountered:
you are right!
Sorry, something went wrong.
No branches or pull requests
The following line of code contains the wrong key for reading the action ID from the ava_train_v2.1.csv
from here
action_string = action_name[int(anno_data[idx][-1])]
However changing that to,
action_string = action_name[int(anno_data[idx][6])]
will solve the problem.
The text was updated successfully, but these errors were encountered: