forked from facebookresearch/nougat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lightning_module.py
254 lines (230 loc) · 8.91 KB
/
lightning_module.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
"""
Donut
Copyright (c) 2022-present NAVER Corp.
MIT License
Copyright (c) Meta Platforms, Inc. and affiliates.
"""
import math
import random
from pathlib import Path
import numpy as np
import lightning.pytorch as pl
import torch
from lightning.pytorch.utilities import rank_zero_only
from torch.nn.utils.rnn import pad_sequence
from torch.optim.lr_scheduler import LambdaLR
from torch.utils.data import DataLoader
from nougat import NougatConfig, NougatModel
from nougat.metrics import get_metrics
class NougatModelPLModule(pl.LightningModule):
def __init__(self, config):
super().__init__()
self.validation_step_outputs = []
self.config = config
if self.config.get("model_path", False):
self.model = NougatModel.from_pretrained(
self.config.model_path,
input_size=self.config.input_size,
max_length=self.config.max_length,
align_long_axis=self.config.align_long_axis,
window_size=self.config.window_size,
encoder_layer=self.config.encoder_layer,
decoder_layer=self.config.decoder_layer,
patch_size=self.config.patch_size,
embed_dim=self.config.embed_dim,
num_heads=self.config.num_heads,
hidden_dimension=self.config.hidden_dimension,
ignore_mismatched_sizes=True,
)
else:
self.model = NougatModel(
config=NougatConfig(
input_size=self.config.input_size,
max_length=self.config.max_length,
align_long_axis=self.config.align_long_axis,
window_size=self.config.window_size,
encoder_layer=self.config.encoder_layer,
decoder_layer=self.config.decoder_layer,
tokenizer_file=self.config.tokenizer,
patch_size=self.config.patch_size,
embed_dim=self.config.embed_dim,
num_heads=self.config.num_heads,
hidden_dimension=self.config.hidden_dimension,
)
)
def training_step(self, batch, batch_idx):
image_tensors, decoder_input_ids, attention_masks = list(), list(), list()
if batch is None:
return
for batch_data in batch:
if batch_data is None or batch_data[0] is None:
continue
image_tensors.append(batch_data[0])
decoder_input_ids.append(batch_data[1])
attention_masks.append(batch_data[2])
image_tensors = torch.cat(image_tensors)
decoder_input_ids = torch.cat(decoder_input_ids)
attention_masks = torch.cat(attention_masks)
loss = self.model(image_tensors, decoder_input_ids, attention_masks)[0]
if loss is not None:
self.log_dict({"train/loss": loss}, sync_dist=True)
return loss
def validation_step(self, batch, batch_idx, dataset_idx=0):
if batch is None:
return
image_tensors, decoder_input_ids, _ = batch
if image_tensors is None:
return
markdown = pad_sequence(
decoder_input_ids,
batch_first=True,
)
preds = self.model.inference(
image_tensors=image_tensors,
return_attentions=False,
)["predictions"]
gts = self.model.decoder.tokenizer.batch_decode(
markdown, skip_special_tokens=True
)
metrics = get_metrics(gts, preds, pool=False)
scores = {
"val/" + key: sum(values) / len(values) for key, values in metrics.items()
}
self.validation_step_outputs.append(scores)
return scores
def on_validation_epoch_end(self):
if (
self.validation_step_outputs is not None
and len(self.validation_step_outputs) >= 1
):
self.log_dict(self.validation_step_outputs[0], sync_dist=True)
self.validation_step_outputs.clear()
def configure_optimizers(self):
def _get_device_count():
if torch.cuda.is_available():
return torch.cuda.device_count()
elif torch.backends.mps.is_available():
# Can MPS have more than one device?
return 1
return 1
max_iter = None
if int(self.config.get("max_epochs", -1)) > 0:
assert (
len(self.config.train_batch_sizes) == 1
), "Set max_epochs only if the number of datasets is 1"
steps = self.config.num_training_samples_per_epoch
max_iter = (self.config.max_epochs * steps) / max(
1,
(
self.config.train_batch_sizes[0]
* _get_device_count()
* self.config.get("num_nodes", 1)
),
)
if int(self.config.get("max_steps", -1)) > 0:
max_iter = (
min(self.config.max_steps, max_iter)
if max_iter is not None
else self.config.max_steps
)
assert max_iter is not None
optimizer = torch.optim.AdamW(self.parameters(), lr=self.config.lr)
scheduler = {
"scheduler": self.exponential_scheduler(
optimizer,
self.config.warmup_steps,
self.config.lr,
self.config.get("min_lr", 5e-5),
self.config.get("gamma", 0.9996),
),
"name": "learning_rate",
"interval": "step",
"frequency": self.config.get("lr_step", 1),
}
return [optimizer], [scheduler]
@staticmethod
def cosine_scheduler(optimizer, training_steps, warmup_steps):
def lr_lambda(current_step):
if current_step < warmup_steps:
return current_step / max(1, warmup_steps)
progress = current_step - warmup_steps
progress /= max(1, training_steps - warmup_steps)
return max(0.0, 0.5 * (1.0 + math.cos(math.pi * progress)))
return LambdaLR(optimizer, lr_lambda)
@staticmethod
def exponential_scheduler(optimizer, warmup_steps, lr, min_lr=5e-5, gamma=0.9999):
def lr_lambda(x):
if x > warmup_steps or warmup_steps <= 0:
if lr * gamma ** (x - warmup_steps) > min_lr:
return gamma ** (x - warmup_steps)
else:
return min_lr / lr
else:
return x / warmup_steps
return LambdaLR(optimizer, lr_lambda=lr_lambda)
def get_progress_bar_dict(self):
items = super().get_progress_bar_dict()
items.pop("v_num", None)
items["exp_name"] = f"{self.config.get('exp_name', '')}"
items["exp_version"] = f"{self.config.get('exp_version', '')}"
return items
@rank_zero_only
def on_save_checkpoint(self, checkpoint):
save_path = (
Path(self.config.result_path)
/ self.config.exp_name
/ self.config.exp_version
)
self.model.save_pretrained(save_path)
self.model.decoder.tokenizer.save_pretrained(save_path)
class NougatDataPLModule(pl.LightningDataModule):
def __init__(self, config):
super().__init__()
self.config = config
self.train_batch_sizes = self.config.train_batch_sizes
self.val_batch_sizes = self.config.val_batch_sizes
self.train_datasets = []
self.val_datasets = []
self.g = torch.Generator()
self.g.manual_seed(self.config.seed)
def train_dataloader(self):
loaders = [
DataLoader(
torch.utils.data.ConcatDataset(self.train_datasets),
batch_size=self.train_batch_sizes[0],
num_workers=self.config.num_workers,
pin_memory=True,
worker_init_fn=self.seed_worker,
generator=self.g,
shuffle=True,
collate_fn=self.ignore_none_collate,
)
]
return loaders
def val_dataloader(self):
loaders = [
DataLoader(
torch.utils.data.ConcatDataset(self.val_datasets),
batch_size=self.val_batch_sizes[0],
pin_memory=True,
shuffle=True,
collate_fn=self.ignore_none_collate,
)
]
return loaders
@staticmethod
def seed_worker(wordker_id):
worker_seed = torch.initial_seed() % 2**32
np.random.seed(worker_seed)
random.seed(worker_seed)
@staticmethod
def ignore_none_collate(batch):
if batch is None:
return
try:
batch = [x for x in batch if x is not None and x[0] is not None]
if len(batch) == 0:
return
return torch.utils.data.dataloader.default_collate(batch)
except AttributeError:
pass