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
Hi there, how can I obtain a set of labels for the rare50 dataset?
In collectrare50data.py, taking the union of the train / dev / test labels gives 56 labels - is this correct?
collectrare50data.py
dev_labels_set = set(dev_labels) train_labels_set = set(train_labels) test_labels_set = set(test_labels) print(len(train_labels_set | dev_labels_set | test_labels_set)) # outputs '56' exit()
Thanks for your help.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there, how can I obtain a set of labels for the rare50 dataset?
In
collectrare50data.py
, taking the union of the train / dev / test labels gives 56 labels - is this correct?Thanks for your help.
The text was updated successfully, but these errors were encountered: