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
Collision with datasets import created by the following assignment statement.
datasets
datasets = load_dataset("conll2003") ... tokenized_datasets = datasets.map(tokenize_and_align_labels, batched=True) ... train_set = model.prepare_tf_dataset( tokenized_datasets["train"], shuffle=True, batch_size=batch_size, collate_fn=data_collator, ) "TFDistilBertForTokenClassification requires the 🤗 Datasets library"
Fixed simply by..
conll = load_dataset("conll2003") ... tokenized_datasets = conll.map(tokenize_and_align_labels, batched=True)
Effects:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Collision with
datasets
import created by the following assignment statement.Fixed simply by..
Effects:
The text was updated successfully, but these errors were encountered: