-
Notifications
You must be signed in to change notification settings - Fork 11
/
train.py
183 lines (141 loc) · 4.53 KB
/
train.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# %%
# from huggingface_hub import interpreter_login
# interpreter_login()
# %%
import warnings
import evaluate
import numpy as np
from datasets import load_dataset
from transformers import AutoTokenizer
warnings.filterwarnings("ignore")
# %% [markdown]
# # Setup config
# %%
MODEL_NAME = "vinai/bartpho-syllable"
MAX_LENGTH = 256
# %% [markdown]
# # Download dataset
# %%
# Tải bộ dataset
dataset = load_dataset("bmd1905/vi-error-correction-2.0")
# %%
dataset
# %%
# # reduce dataset for testing
# dataset["train"] = dataset["train"].select(range(1_000))
# dataset["test"] = dataset["test"].select(range(1_000))
# %%
dataset["train"][-1]
# %%
# Example
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
input = dataset["train"][-1]["input"]
output = dataset["train"][-1]["output"]
# Sử dụng tokenizer để mã hóa dữ liệu đầu vào
inputs = tokenizer(input, text_target=output, max_length=MAX_LENGTH, truncation=True)
inputs, len(inputs["input_ids"])
# %% [markdown]
# # Tokenize dataset
# %%
def preprocess_function(examples):
# Tokenize the text and apply truncation
return tokenizer(
examples["input"],
text_target=examples["output"],
max_length=MAX_LENGTH,
truncation=True,
)
# Apply tokenization in a batched manner for efficiency
tokenized_datasets = dataset.map(
preprocess_function,
batched=True,
remove_columns=dataset["train"].column_names,
)
# %% [markdown]
# # Model
# %%
from transformers import AutoModelForSeq2SeqLM
model = AutoModelForSeq2SeqLM.from_pretrained(MODEL_NAME)
# %% [markdown]
# # Metric
# %%
from transformers import DataCollatorForSeq2Seq
data_collator = DataCollatorForSeq2Seq(tokenizer, model=model)
# %%
import evaluate
metric = evaluate.load("sacrebleu")
# %%
predictions = [
"Nếu làm được như vậy thì chắc chắn sẽ không còn trường nào tùy tiện thu tiền cao, gây sự lo lắng của phụ huynh và ai không có tiền thì không cần đóng."
]
references = [
[
"Nếu làm được như vậy thì chắc chắn sẽ không còn trường nào tùy tiện thu tiền cao, gây sự lo lắng của phụ huynh và ai không có tiền thì không cần đóng."
]
]
metric.compute(predictions=predictions, references=references)
# %%
predictions = [
"Nếu làm được như vậy thì chắc chắn sẽ khôTng còn trường nà tùy tiện tu tiềncaogây sự lo hắng của phụ huynh và ai khÔng có tiền thì kông cần dong"
]
references = [
[
"Nếu làm được như vậy thì chắc chắn sẽ không còn trường nào tùy tiện thu tiền cao, gây sự lo lắng của phụ huynh và ai không có tiền thì không cần đóng."
]
]
metric.compute(predictions=predictions, references=references)
# %%
def compute_metrics(eval_preds):
preds, labels = eval_preds
# In case the model returns more than the prediction logits
if isinstance(preds, tuple):
preds = preds[0]
decoded_preds = tokenizer.batch_decode(preds, skip_special_tokens=True)
# Replace -100s in the labels as we can't decode them
labels = np.where(labels != -100, labels, tokenizer.pad_token_id)
decoded_labels = tokenizer.batch_decode(labels, skip_special_tokens=True)
# Some simple post-processing
decoded_preds = [pred.strip() for pred in decoded_preds]
decoded_labels = [[label.strip()] for label in decoded_labels]
result = metric.compute(predictions=decoded_preds, references=decoded_labels)
return {"sacrebleu": result["score"]}
# %% [markdown]
# # Fine-tuning the model
# %%
from transformers import Seq2SeqTrainingArguments
args = Seq2SeqTrainingArguments(
do_train=True,
do_eval=True,
output_dir="bmd1905/vietnamese-correction-2.0",
num_train_epochs=10,
learning_rate=1e-5,
per_device_train_batch_size=12,
per_device_eval_batch_size=12 * 4,
gradient_accumulation_steps=4,
evaluation_strategy="steps",
eval_steps=20_000,
save_strategy="steps",
logging_steps=20_000,
save_total_limit=5,
predict_with_generate=True,
fp16=True,
push_to_hub=True,
)
# %%
from transformers import Seq2SeqTrainer
trainer = Seq2SeqTrainer(
model,
args,
train_dataset=tokenized_datasets["train"],
eval_dataset=tokenized_datasets["test"],
data_collator=data_collator,
tokenizer=tokenizer,
compute_metrics=compute_metrics,
)
trainer.evaluate()
# %%
trainer.train()
# %%
trainer.evaluate()
# %%
trainer.push_to_hub(tags="text2text-generation", commit_message="Training complete")