"test" data split
#5
by
amigliorati89
- opened
Sorry, total novice here. I was wondering why in the dataset there is no "test" split? I am trying to train with the following trainer:
trainer = Trainer(
model=model,
tokenizer=tokenizer,
args=args,
data_collator=data_collator,
train_dataset=tokenized_data["train"],
eval_dataset=tokenized_data["test"],
)
but it fails as there's no tokenized_data["test"] entry. What shoud I pass as eval_dataset? Thanks in advance