Skip to content
New issue

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

Add tokenizer to MLM Trainer #432

Merged
merged 1 commit into from
Dec 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions chapters/en/chapter7/3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,7 @@ trainer = Trainer(
train_dataset=downsampled_dataset["train"],
eval_dataset=downsampled_dataset["test"],
data_collator=data_collator,
tokenizer=tokenizer,
)
```

Expand Down
1 change: 1 addition & 0 deletions chapters/fr/chapter7/3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -728,6 +728,7 @@ trainer = Trainer(
train_dataset=downsampled_dataset["train"],
eval_dataset=downsampled_dataset["test"],
data_collator=data_collator,
tokenizer=tokenizer,
)
```

Expand Down
1 change: 1 addition & 0 deletions chapters/ja/chapter7/3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,7 @@ trainer = Trainer(
train_dataset=downsampled_dataset["train"],
eval_dataset=downsampled_dataset["test"],
data_collator=data_collator,
tokenizer=tokenizer,
)
```

Expand Down
1 change: 1 addition & 0 deletions chapters/vi/chapter7/3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,7 @@ trainer = Trainer(
train_dataset=downsampled_dataset["train"],
eval_dataset=downsampled_dataset["test"],
data_collator=data_collator,
tokenizer=tokenizer,
)
```

Expand Down
1 change: 1 addition & 0 deletions chapters/zh-CN/chapter7/3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,7 @@ trainer = Trainer(
train_dataset=downsampled_dataset["train"],
eval_dataset=downsampled_dataset["test"],
data_collator=data_collator,
tokenizer=tokenizer,
)
```

Expand Down
2 changes: 1 addition & 1 deletion utils/generate_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def build_notebook(fname, title, output_dir="."):
installs = ["!pip install datasets evaluate transformers[sentencepiece]"]
if section_name in sections_with_accelerate:
installs.append("!pip install accelerate")
installs.append("# To run the training on TPU, you will need to uncomment the followin line:")
installs.append("# To run the training on TPU, you will need to uncomment the following line:")
installs.append(
"# !pip install cloud-tpu-client==0.10 torch==1.9.0 https://storage.googleapis.com/tpu-pytorch/wheels/torch_xla-1.9-cp37-cp37m-linux_x86_64.whl"
)
Expand Down