| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298 |
- # Copyright 2021 Microsoft Research The HuggingFace Inc. team. All rights reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """PyTorch LayoutLMv2 model."""
- import math
- import torch
- from torch import nn
- from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
- from ... import initialization as init
- from ...activations import ACT2FN
- from ...modeling_layers import GradientCheckpointingLayer
- from ...modeling_outputs import (
- BaseModelOutput,
- BaseModelOutputWithPooling,
- QuestionAnsweringModelOutput,
- SequenceClassifierOutput,
- TokenClassifierOutput,
- )
- from ...modeling_utils import PreTrainedModel
- from ...processing_utils import Unpack
- from ...pytorch_utils import apply_chunking_to_forward
- from ...utils import auto_docstring, is_detectron2_available, logging, requires_backends
- from ...utils.generic import TransformersKwargs, can_return_tuple, merge_with_config_defaults
- from ...utils.output_capturing import capture_outputs
- from .configuration_layoutlmv2 import LayoutLMv2Config
- # soft dependency
- if is_detectron2_available():
- import detectron2
- from detectron2.modeling import META_ARCH_REGISTRY
- # This is needed as otherwise their overload will break sequential loading by overwriting buffer over and over. See
- # https://github.com/facebookresearch/detectron2/blob/9604f5995cc628619f0e4fd913453b4d7d61db3f/detectron2/layers/batch_norm.py#L83-L86
- detectron2.layers.batch_norm.FrozenBatchNorm2d._load_from_state_dict = torch.nn.Module._load_from_state_dict
- logger = logging.get_logger(__name__)
- class LayoutLMv2Embeddings(nn.Module):
- """Construct the embeddings from word, position and token_type embeddings."""
- def __init__(self, config):
- super().__init__()
- self.word_embeddings = nn.Embedding(config.vocab_size, config.hidden_size, padding_idx=config.pad_token_id)
- self.position_embeddings = nn.Embedding(config.max_position_embeddings, config.hidden_size)
- self.x_position_embeddings = nn.Embedding(config.max_2d_position_embeddings, config.coordinate_size)
- self.y_position_embeddings = nn.Embedding(config.max_2d_position_embeddings, config.coordinate_size)
- self.h_position_embeddings = nn.Embedding(config.max_2d_position_embeddings, config.shape_size)
- self.w_position_embeddings = nn.Embedding(config.max_2d_position_embeddings, config.shape_size)
- self.token_type_embeddings = nn.Embedding(config.type_vocab_size, config.hidden_size)
- self.LayerNorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
- self.dropout = nn.Dropout(config.hidden_dropout_prob)
- self.register_buffer(
- "position_ids", torch.arange(config.max_position_embeddings).expand((1, -1)), persistent=False
- )
- def _calc_spatial_position_embeddings(self, bbox):
- try:
- left_position_embeddings = self.x_position_embeddings(bbox[:, :, 0])
- upper_position_embeddings = self.y_position_embeddings(bbox[:, :, 1])
- right_position_embeddings = self.x_position_embeddings(bbox[:, :, 2])
- lower_position_embeddings = self.y_position_embeddings(bbox[:, :, 3])
- except IndexError as e:
- raise IndexError("The `bbox` coordinate values should be within 0-1000 range.") from e
- h_position_embeddings = self.h_position_embeddings(bbox[:, :, 3] - bbox[:, :, 1])
- w_position_embeddings = self.w_position_embeddings(bbox[:, :, 2] - bbox[:, :, 0])
- spatial_position_embeddings = torch.cat(
- [
- left_position_embeddings,
- upper_position_embeddings,
- right_position_embeddings,
- lower_position_embeddings,
- h_position_embeddings,
- w_position_embeddings,
- ],
- dim=-1,
- )
- return spatial_position_embeddings
- class LayoutLMv2SelfAttention(nn.Module):
- def __init__(self, config):
- super().__init__()
- if config.hidden_size % config.num_attention_heads != 0 and not hasattr(config, "embedding_size"):
- raise ValueError(
- f"The hidden size ({config.hidden_size}) is not a multiple of the number of attention "
- f"heads ({config.num_attention_heads})"
- )
- self.fast_qkv = config.fast_qkv
- self.num_attention_heads = config.num_attention_heads
- self.attention_head_size = int(config.hidden_size / config.num_attention_heads)
- self.all_head_size = self.num_attention_heads * self.attention_head_size
- self.has_relative_attention_bias = config.has_relative_attention_bias
- self.has_spatial_attention_bias = config.has_spatial_attention_bias
- if config.fast_qkv:
- self.qkv_linear = nn.Linear(config.hidden_size, 3 * self.all_head_size, bias=False)
- self.q_bias = nn.Parameter(torch.zeros(1, 1, self.all_head_size))
- self.v_bias = nn.Parameter(torch.zeros(1, 1, self.all_head_size))
- else:
- self.query = nn.Linear(config.hidden_size, self.all_head_size)
- self.key = nn.Linear(config.hidden_size, self.all_head_size)
- self.value = nn.Linear(config.hidden_size, self.all_head_size)
- self.dropout = nn.Dropout(config.attention_probs_dropout_prob)
- def compute_qkv(self, hidden_states):
- if self.fast_qkv:
- qkv = self.qkv_linear(hidden_states)
- q, k, v = torch.chunk(qkv, 3, dim=-1)
- if q.ndimension() == self.q_bias.ndimension():
- q = q + self.q_bias
- v = v + self.v_bias
- else:
- _sz = (1,) * (q.ndimension() - 1) + (-1,)
- q = q + self.q_bias.view(*_sz)
- v = v + self.v_bias.view(*_sz)
- else:
- q = self.query(hidden_states)
- k = self.key(hidden_states)
- v = self.value(hidden_states)
- return q, k, v
- def forward(
- self,
- hidden_states,
- attention_mask=None,
- rel_pos=None,
- rel_2d_pos=None,
- **kwargs: Unpack[TransformersKwargs],
- ):
- batch_size = hidden_states.shape[0]
- query, key, value = self.compute_qkv(hidden_states)
- # (B, L, H*D) -> (B, H, L, D)
- query_layer = query.view(batch_size, -1, self.num_attention_heads, self.attention_head_size).transpose(1, 2)
- key_layer = key.view(batch_size, -1, self.num_attention_heads, self.attention_head_size).transpose(1, 2)
- value_layer = value.view(batch_size, -1, self.num_attention_heads, self.attention_head_size).transpose(1, 2)
- query_layer = query_layer / math.sqrt(self.attention_head_size)
- # [BSZ, NAT, L, L]
- attention_scores = torch.matmul(query_layer, key_layer.transpose(-1, -2))
- if self.has_relative_attention_bias:
- attention_scores += rel_pos
- if self.has_spatial_attention_bias:
- attention_scores += rel_2d_pos
- attention_scores = attention_scores.float().masked_fill_(
- attention_mask.to(torch.bool), torch.finfo(attention_scores.dtype).min
- )
- attention_probs = nn.functional.softmax(attention_scores, dim=-1, dtype=torch.float32).type_as(value_layer)
- # This is actually dropping out entire tokens to attend to, which might
- # seem a bit unusual, but is taken from the original Transformer paper.
- attention_probs = self.dropout(attention_probs)
- context_layer = torch.matmul(attention_probs, value_layer)
- context_layer = context_layer.permute(0, 2, 1, 3).contiguous()
- new_context_layer_shape = context_layer.size()[:-2] + (self.all_head_size,)
- context_layer = context_layer.view(*new_context_layer_shape)
- return context_layer, attention_probs
- class LayoutLMv2Attention(nn.Module):
- def __init__(self, config):
- super().__init__()
- self.self = LayoutLMv2SelfAttention(config)
- self.output = LayoutLMv2SelfOutput(config)
- def forward(
- self,
- hidden_states,
- attention_mask=None,
- rel_pos=None,
- rel_2d_pos=None,
- **kwargs: Unpack[TransformersKwargs],
- ):
- residual = hidden_states
- attention_output, _ = self.self(
- hidden_states,
- attention_mask,
- rel_pos=rel_pos,
- rel_2d_pos=rel_2d_pos,
- **kwargs,
- )
- attention_output = self.output(attention_output, residual)
- return attention_output
- class LayoutLMv2SelfOutput(nn.Module):
- def __init__(self, config):
- super().__init__()
- self.dense = nn.Linear(config.hidden_size, config.hidden_size)
- self.LayerNorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
- self.dropout = nn.Dropout(config.hidden_dropout_prob)
- def forward(self, hidden_states, input_tensor):
- hidden_states = self.dense(hidden_states)
- hidden_states = self.dropout(hidden_states)
- hidden_states = self.LayerNorm(hidden_states + input_tensor)
- return hidden_states
- # Copied from transformers.models.bert.modeling_bert.BertIntermediate with Bert->LayoutLMv2
- class LayoutLMv2Intermediate(nn.Module):
- def __init__(self, config):
- super().__init__()
- self.dense = nn.Linear(config.hidden_size, config.intermediate_size)
- if isinstance(config.hidden_act, str):
- self.intermediate_act_fn = ACT2FN[config.hidden_act]
- else:
- self.intermediate_act_fn = config.hidden_act
- def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
- hidden_states = self.dense(hidden_states)
- hidden_states = self.intermediate_act_fn(hidden_states)
- return hidden_states
- # Copied from transformers.models.bert.modeling_bert.BertOutput with Bert->LayoutLM
- class LayoutLMv2Output(nn.Module):
- def __init__(self, config):
- super().__init__()
- self.dense = nn.Linear(config.intermediate_size, config.hidden_size)
- self.LayerNorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
- self.dropout = nn.Dropout(config.hidden_dropout_prob)
- def forward(self, hidden_states: torch.Tensor, input_tensor: torch.Tensor) -> torch.Tensor:
- hidden_states = self.dense(hidden_states)
- hidden_states = self.dropout(hidden_states)
- hidden_states = self.LayerNorm(hidden_states + input_tensor)
- return hidden_states
- class LayoutLMv2Layer(GradientCheckpointingLayer):
- def __init__(self, config):
- super().__init__()
- self.chunk_size_feed_forward = config.chunk_size_feed_forward
- self.seq_len_dim = 1
- self.attention = LayoutLMv2Attention(config)
- self.intermediate = LayoutLMv2Intermediate(config)
- self.output = LayoutLMv2Output(config)
- def forward(
- self,
- hidden_states,
- attention_mask=None,
- output_attentions=False,
- rel_pos=None,
- rel_2d_pos=None,
- **kwargs: Unpack[TransformersKwargs],
- ):
- attention_output = self.attention(
- hidden_states,
- attention_mask,
- rel_pos=rel_pos,
- rel_2d_pos=rel_2d_pos,
- )
- layer_output = apply_chunking_to_forward(
- self.feed_forward_chunk, self.chunk_size_feed_forward, self.seq_len_dim, attention_output
- )
- return layer_output
- def feed_forward_chunk(self, attention_output):
- intermediate_output = self.intermediate(attention_output)
- layer_output = self.output(intermediate_output, attention_output)
- return layer_output
- def relative_position_bucket(relative_position, bidirectional=True, num_buckets=32, max_distance=128):
- """
- Adapted from Mesh Tensorflow:
- https://github.com/tensorflow/mesh/blob/0cb87fe07da627bf0b7e60475d59f95ed6b5be3d/mesh_tensorflow/transformer/transformer_layers.py#L593
- Translate relative position to a bucket number for relative attention. The relative position is defined as
- memory_position - query_position, i.e. the distance in tokens from the attending position to the attended-to
- position. If bidirectional=False, then positive relative positions are invalid. We use smaller buckets for small
- absolute relative_position and larger buckets for larger absolute relative_positions. All relative positions
- >=max_distance map to the same bucket. All relative positions <=-max_distance map to the same bucket. This should
- allow for more graceful generalization to longer sequences than the model has been trained on.
- Args:
- relative_position: an int32 Tensor
- bidirectional: a boolean - whether the attention is bidirectional
- num_buckets: an integer
- max_distance: an integer
- Returns:
- a Tensor with the same shape as relative_position, containing int32 values in the range [0, num_buckets)
- """
- ret = 0
- if bidirectional:
- num_buckets //= 2
- ret += (relative_position > 0).long() * num_buckets
- n = torch.abs(relative_position)
- else:
- n = torch.max(-relative_position, torch.zeros_like(relative_position))
- # now n is in the range [0, inf)
- # half of the buckets are for exact increments in positions
- max_exact = num_buckets // 2
- is_small = n < max_exact
- # The other half of the buckets are for logarithmically bigger bins in positions up to max_distance
- val_if_large = max_exact + (
- torch.log(n.float() / max_exact) / math.log(max_distance / max_exact) * (num_buckets - max_exact)
- ).to(torch.long)
- val_if_large = torch.min(val_if_large, torch.full_like(val_if_large, num_buckets - 1))
- ret += torch.where(is_small, n, val_if_large)
- return ret
- class LayoutLMv2Encoder(nn.Module):
- def __init__(self, config):
- super().__init__()
- self.config = config
- self.layer = nn.ModuleList([LayoutLMv2Layer(config) for _ in range(config.num_hidden_layers)])
- self.has_relative_attention_bias = config.has_relative_attention_bias
- self.has_spatial_attention_bias = config.has_spatial_attention_bias
- if self.has_relative_attention_bias:
- self.rel_pos_bins = config.rel_pos_bins
- self.max_rel_pos = config.max_rel_pos
- self.rel_pos_bias = nn.Linear(self.rel_pos_bins, config.num_attention_heads, bias=False)
- if self.has_spatial_attention_bias:
- self.max_rel_2d_pos = config.max_rel_2d_pos
- self.rel_2d_pos_bins = config.rel_2d_pos_bins
- self.rel_pos_x_bias = nn.Linear(self.rel_2d_pos_bins, config.num_attention_heads, bias=False)
- self.rel_pos_y_bias = nn.Linear(self.rel_2d_pos_bins, config.num_attention_heads, bias=False)
- self.gradient_checkpointing = False
- def _calculate_1d_position_embeddings(self, position_ids):
- rel_pos_mat = position_ids.unsqueeze(-2) - position_ids.unsqueeze(-1)
- rel_pos = relative_position_bucket(
- rel_pos_mat,
- num_buckets=self.rel_pos_bins,
- max_distance=self.max_rel_pos,
- )
- # Since this is a simple indexing operation that is independent of the input,
- # no need to track gradients for this operation
- #
- # Without this no_grad context, training speed slows down significantly
- with torch.no_grad():
- rel_pos = self.rel_pos_bias.weight.t()[rel_pos].permute(0, 3, 1, 2)
- rel_pos = rel_pos.contiguous()
- return rel_pos
- def _calculate_2d_position_embeddings(self, bbox):
- position_coord_x = bbox[:, :, 0]
- position_coord_y = bbox[:, :, 3]
- rel_pos_x_2d_mat = position_coord_x.unsqueeze(-2) - position_coord_x.unsqueeze(-1)
- rel_pos_y_2d_mat = position_coord_y.unsqueeze(-2) - position_coord_y.unsqueeze(-1)
- rel_pos_x = relative_position_bucket(
- rel_pos_x_2d_mat,
- num_buckets=self.rel_2d_pos_bins,
- max_distance=self.max_rel_2d_pos,
- )
- rel_pos_y = relative_position_bucket(
- rel_pos_y_2d_mat,
- num_buckets=self.rel_2d_pos_bins,
- max_distance=self.max_rel_2d_pos,
- )
- # Since this is a simple indexing operation that is independent of the input,
- # no need to track gradients for this operation
- #
- # Without this no_grad context, training speed slows down significantly
- with torch.no_grad():
- rel_pos_x = self.rel_pos_x_bias.weight.t()[rel_pos_x].permute(0, 3, 1, 2)
- rel_pos_y = self.rel_pos_y_bias.weight.t()[rel_pos_y].permute(0, 3, 1, 2)
- rel_pos_x = rel_pos_x.contiguous()
- rel_pos_y = rel_pos_y.contiguous()
- rel_2d_pos = rel_pos_x + rel_pos_y
- return rel_2d_pos
- def forward(
- self,
- hidden_states,
- attention_mask=None,
- bbox=None,
- position_ids=None,
- **kwargs: Unpack[TransformersKwargs],
- ):
- rel_pos = self._calculate_1d_position_embeddings(position_ids) if self.has_relative_attention_bias else None
- rel_2d_pos = self._calculate_2d_position_embeddings(bbox) if self.has_spatial_attention_bias else None
- for layer_module in self.layer:
- hidden_states = layer_module(
- hidden_states,
- attention_mask,
- rel_pos=rel_pos,
- rel_2d_pos=rel_2d_pos,
- **kwargs,
- )
- return BaseModelOutput(last_hidden_state=hidden_states)
- @auto_docstring
- class LayoutLMv2PreTrainedModel(PreTrainedModel):
- config: LayoutLMv2Config
- base_model_prefix = "layoutlmv2"
- input_modalities = ("image", "text")
- @torch.no_grad()
- def _init_weights(self, module):
- """Initialize the weights"""
- super()._init_weights(module)
- if isinstance(module, LayoutLMv2SelfAttention):
- if self.config.fast_qkv:
- init.zeros_(module.q_bias)
- init.zeros_(module.v_bias)
- elif isinstance(module, LayoutLMv2Embeddings):
- init.copy_(module.position_ids, torch.arange(module.position_ids.shape[-1]).expand((1, -1)))
- elif isinstance(module, LayoutLMv2VisualBackbone):
- num_channels = len(module.cfg.MODEL.PIXEL_MEAN)
- init.copy_(module.pixel_mean, torch.Tensor(module.cfg.MODEL.PIXEL_MEAN).view(num_channels, 1, 1))
- init.copy_(module.pixel_std, torch.Tensor(module.cfg.MODEL.PIXEL_STD).view(num_channels, 1, 1))
- elif isinstance(module, LayoutLMv2Model):
- if hasattr(module, "visual_segment_embedding"):
- init.normal_(module.visual_segment_embedding, mean=0.0, std=self.config.initializer_range)
- # We check the existence of each one since detectron2 seems to do weird things
- elif isinstance(module, detectron2.layers.FrozenBatchNorm2d):
- init.ones_(module.weight)
- init.zeros_(module.bias)
- init.zeros_(module.running_mean)
- init.constant_(module.running_var, 1.0 - module.eps)
- def my_convert_sync_batchnorm(module, process_group=None):
- # same as `nn.modules.SyncBatchNorm.convert_sync_batchnorm` but allowing converting from `detectron2.layers.FrozenBatchNorm2d`
- if isinstance(module, torch.nn.modules.batchnorm._BatchNorm):
- return nn.modules.SyncBatchNorm.convert_sync_batchnorm(module, process_group)
- module_output = module
- if isinstance(module, detectron2.layers.FrozenBatchNorm2d):
- module_output = torch.nn.SyncBatchNorm(
- num_features=module.num_features,
- eps=module.eps,
- affine=True,
- track_running_stats=True,
- process_group=process_group,
- )
- module_output.weight = torch.nn.Parameter(module.weight)
- module_output.bias = torch.nn.Parameter(module.bias)
- module_output.running_mean = module.running_mean
- module_output.running_var = module.running_var
- module_output.num_batches_tracked = torch.tensor(0, dtype=torch.long, device=module.running_mean.device)
- for name, child in module.named_children():
- module_output.add_module(name, my_convert_sync_batchnorm(child, process_group))
- del module
- return module_output
- class LayoutLMv2VisualBackbone(nn.Module):
- def __init__(self, config):
- super().__init__()
- self.cfg = config.get_detectron2_config()
- meta_arch = self.cfg.MODEL.META_ARCHITECTURE
- model = META_ARCH_REGISTRY.get(meta_arch)(self.cfg)
- assert isinstance(model.backbone, detectron2.modeling.backbone.FPN)
- self.backbone = model.backbone
- assert len(self.cfg.MODEL.PIXEL_MEAN) == len(self.cfg.MODEL.PIXEL_STD)
- num_channels = len(self.cfg.MODEL.PIXEL_MEAN)
- self.register_buffer(
- "pixel_mean",
- torch.Tensor(self.cfg.MODEL.PIXEL_MEAN).view(num_channels, 1, 1),
- persistent=False,
- )
- self.register_buffer(
- "pixel_std", torch.Tensor(self.cfg.MODEL.PIXEL_STD).view(num_channels, 1, 1), persistent=False
- )
- self.out_feature_key = "p2"
- if torch.are_deterministic_algorithms_enabled():
- logger.warning("using `AvgPool2d` instead of `AdaptiveAvgPool2d`")
- input_shape = (224, 224)
- backbone_stride = self.backbone.output_shape()[self.out_feature_key].stride
- self.pool = nn.AvgPool2d(
- (
- math.ceil(math.ceil(input_shape[0] / backbone_stride) / config.image_feature_pool_shape[0]),
- math.ceil(math.ceil(input_shape[1] / backbone_stride) / config.image_feature_pool_shape[1]),
- )
- )
- else:
- self.pool = nn.AdaptiveAvgPool2d(config.image_feature_pool_shape[:2])
- if len(config.image_feature_pool_shape) == 2:
- config.image_feature_pool_shape.append(self.backbone.output_shape()[self.out_feature_key].channels)
- assert self.backbone.output_shape()[self.out_feature_key].channels == config.image_feature_pool_shape[2]
- def forward(self, images):
- images_input = ((images if torch.is_tensor(images) else images.tensor) - self.pixel_mean) / self.pixel_std
- features = self.backbone(images_input)
- features = features[self.out_feature_key]
- features = self.pool(features).flatten(start_dim=2).transpose(1, 2).contiguous()
- return features
- def synchronize_batch_norm(self):
- if not (
- torch.distributed.is_available()
- and torch.distributed.is_initialized()
- and torch.distributed.get_rank() > -1
- ):
- raise RuntimeError("Make sure torch.distributed is set up properly.")
- self_rank = torch.distributed.get_rank()
- node_size = torch.cuda.device_count()
- world_size = torch.distributed.get_world_size()
- if not (world_size % node_size == 0):
- raise RuntimeError("Make sure the number of processes can be divided by the number of nodes")
- node_global_ranks = [list(range(i * node_size, (i + 1) * node_size)) for i in range(world_size // node_size)]
- sync_bn_groups = [
- torch.distributed.new_group(ranks=node_global_ranks[i]) for i in range(world_size // node_size)
- ]
- node_rank = self_rank // node_size
- self.backbone = my_convert_sync_batchnorm(self.backbone, process_group=sync_bn_groups[node_rank])
- class LayoutLMv2Pooler(nn.Module):
- def __init__(self, config):
- super().__init__()
- self.dense = nn.Linear(config.hidden_size, config.hidden_size)
- self.activation = nn.Tanh()
- def forward(self, hidden_states):
- # We "pool" the model by simply taking the hidden state corresponding
- # to the first token.
- first_token_tensor = hidden_states[:, 0]
- pooled_output = self.dense(first_token_tensor)
- pooled_output = self.activation(pooled_output)
- return pooled_output
- @auto_docstring
- class LayoutLMv2Model(LayoutLMv2PreTrainedModel):
- _can_record_outputs = {"hidden_states": LayoutLMv2Layer, "attentions": LayoutLMv2SelfAttention}
- def __init__(self, config):
- requires_backends(self, "detectron2")
- super().__init__(config)
- self.config = config
- self.has_visual_segment_embedding = config.has_visual_segment_embedding
- self.embeddings = LayoutLMv2Embeddings(config)
- self.visual = LayoutLMv2VisualBackbone(config)
- self.visual_proj = nn.Linear(config.image_feature_pool_shape[-1], config.hidden_size)
- if self.has_visual_segment_embedding:
- self.visual_segment_embedding = nn.Parameter(nn.Embedding(1, config.hidden_size).weight[0])
- self.visual_LayerNorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
- self.visual_dropout = nn.Dropout(config.hidden_dropout_prob)
- self.encoder = LayoutLMv2Encoder(config)
- self.pooler = LayoutLMv2Pooler(config)
- # Initialize weights and apply final processing
- self.post_init()
- def get_input_embeddings(self):
- return self.embeddings.word_embeddings
- def set_input_embeddings(self, value):
- self.embeddings.word_embeddings = value
- def _calc_text_embeddings(self, input_ids, bbox, position_ids, token_type_ids, inputs_embeds=None):
- if input_ids is not None:
- input_shape = input_ids.size()
- else:
- input_shape = inputs_embeds.size()[:-1]
- seq_length = input_shape[1]
- if position_ids is None:
- position_ids = torch.arange(seq_length, dtype=torch.long, device=input_ids.device)
- position_ids = position_ids.unsqueeze(0).expand_as(input_ids)
- if token_type_ids is None:
- token_type_ids = torch.zeros_like(input_ids)
- if inputs_embeds is None:
- inputs_embeds = self.embeddings.word_embeddings(input_ids)
- position_embeddings = self.embeddings.position_embeddings(position_ids)
- spatial_position_embeddings = self.embeddings._calc_spatial_position_embeddings(bbox)
- token_type_embeddings = self.embeddings.token_type_embeddings(token_type_ids)
- embeddings = inputs_embeds + position_embeddings + spatial_position_embeddings + token_type_embeddings
- embeddings = self.embeddings.LayerNorm(embeddings)
- embeddings = self.embeddings.dropout(embeddings)
- return embeddings
- def _calc_img_embeddings(self, image, bbox, position_ids):
- visual_embeddings = self.visual_proj(self.visual(image))
- position_embeddings = self.embeddings.position_embeddings(position_ids)
- spatial_position_embeddings = self.embeddings._calc_spatial_position_embeddings(bbox)
- embeddings = visual_embeddings + position_embeddings + spatial_position_embeddings
- if self.has_visual_segment_embedding:
- embeddings += self.visual_segment_embedding
- embeddings = self.visual_LayerNorm(embeddings)
- embeddings = self.visual_dropout(embeddings)
- return embeddings
- def _calc_visual_bbox(self, image_feature_pool_shape, bbox, device, final_shape):
- visual_bbox_x = torch.div(
- torch.arange(
- 0,
- 1000 * (image_feature_pool_shape[1] + 1),
- 1000,
- device=device,
- dtype=bbox.dtype,
- ),
- self.config.image_feature_pool_shape[1],
- rounding_mode="floor",
- )
- visual_bbox_y = torch.div(
- torch.arange(
- 0,
- 1000 * (self.config.image_feature_pool_shape[0] + 1),
- 1000,
- device=device,
- dtype=bbox.dtype,
- ),
- self.config.image_feature_pool_shape[0],
- rounding_mode="floor",
- )
- visual_bbox = torch.stack(
- [
- visual_bbox_x[:-1].repeat(image_feature_pool_shape[0], 1),
- visual_bbox_y[:-1].repeat(image_feature_pool_shape[1], 1).transpose(0, 1),
- visual_bbox_x[1:].repeat(image_feature_pool_shape[0], 1),
- visual_bbox_y[1:].repeat(image_feature_pool_shape[1], 1).transpose(0, 1),
- ],
- dim=-1,
- ).view(-1, bbox.size(-1))
- visual_bbox = visual_bbox.repeat(final_shape[0], 1, 1)
- return visual_bbox
- def _get_input_shape(self, input_ids=None, inputs_embeds=None):
- if input_ids is not None and inputs_embeds is not None:
- raise ValueError("You cannot specify both input_ids and inputs_embeds at the same time")
- elif input_ids is not None:
- return input_ids.size()
- elif inputs_embeds is not None:
- return inputs_embeds.size()[:-1]
- else:
- raise ValueError("You have to specify either input_ids or inputs_embeds")
- @merge_with_config_defaults
- @capture_outputs
- @auto_docstring
- def forward(
- self,
- input_ids: torch.LongTensor | None = None,
- bbox: torch.LongTensor | None = None,
- image: torch.FloatTensor | None = None,
- attention_mask: torch.FloatTensor | None = None,
- token_type_ids: torch.LongTensor | None = None,
- position_ids: torch.LongTensor | None = None,
- inputs_embeds: torch.FloatTensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | BaseModelOutputWithPooling:
- r"""
- bbox (`torch.LongTensor` of shape `((batch_size, sequence_length), 4)`, *optional*):
- Bounding boxes of each input sequence tokens. Selected in the range `[0,
- config.max_2d_position_embeddings-1]`. Each bounding box should be a normalized version in (x0, y0, x1, y1)
- format, where (x0, y0) corresponds to the position of the upper left corner in the bounding box, and (x1,
- y1) represents the position of the lower right corner.
- image (`torch.FloatTensor` of shape `(batch_size, num_channels, height, width)` or `detectron.structures.ImageList` whose `tensors` is of shape `(batch_size, num_channels, height, width)`):
- Batch of document images.
- Examples:
- ```python
- >>> from transformers import AutoProcessor, LayoutLMv2Model, set_seed
- >>> from PIL import Image
- >>> import torch
- >>> from datasets import load_dataset
- >>> set_seed(0)
- >>> processor = AutoProcessor.from_pretrained("microsoft/layoutlmv2-base-uncased")
- >>> model = LayoutLMv2Model.from_pretrained("microsoft/layoutlmv2-base-uncased")
- >>> dataset = load_dataset("hf-internal-testing/fixtures_docvqa")
- >>> image = dataset["test"][0]["image"]
- >>> encoding = processor(image, return_tensors="pt")
- >>> outputs = model(**encoding)
- >>> last_hidden_states = outputs.last_hidden_state
- >>> last_hidden_states.shape
- torch.Size([1, 342, 768])
- ```
- """
- input_shape = self._get_input_shape(input_ids, inputs_embeds)
- device = input_ids.device if input_ids is not None else inputs_embeds.device
- visual_shape = list(input_shape)
- visual_shape[1] = self.config.image_feature_pool_shape[0] * self.config.image_feature_pool_shape[1]
- visual_shape = torch.Size(visual_shape)
- # needs a new copy of input_shape for tracing. Otherwise wrong dimensions will occur
- final_shape = list(self._get_input_shape(input_ids, inputs_embeds))
- final_shape[1] += visual_shape[1]
- final_shape = torch.Size(final_shape)
- visual_bbox = self._calc_visual_bbox(self.config.image_feature_pool_shape, bbox, device, final_shape)
- final_bbox = torch.cat([bbox, visual_bbox], dim=1)
- if attention_mask is None:
- attention_mask = torch.ones(input_shape, device=device)
- visual_attention_mask = torch.ones(visual_shape, device=device)
- final_attention_mask = torch.cat([attention_mask, visual_attention_mask], dim=1)
- if token_type_ids is None:
- token_type_ids = torch.zeros(input_shape, dtype=torch.long, device=device)
- if position_ids is None:
- seq_length = input_shape[1]
- position_ids = self.embeddings.position_ids[:, :seq_length]
- position_ids = position_ids.expand(input_shape)
- visual_position_ids = torch.arange(0, visual_shape[1], dtype=torch.long, device=device).repeat(
- input_shape[0], 1
- )
- final_position_ids = torch.cat([position_ids, visual_position_ids], dim=1)
- if bbox is None:
- bbox = torch.zeros(tuple(list(input_shape) + [4]), dtype=torch.long, device=device)
- text_layout_emb = self._calc_text_embeddings(
- input_ids=input_ids,
- bbox=bbox,
- token_type_ids=token_type_ids,
- position_ids=position_ids,
- inputs_embeds=inputs_embeds,
- )
- visual_emb = self._calc_img_embeddings(
- image=image,
- bbox=visual_bbox,
- position_ids=visual_position_ids,
- )
- final_emb = torch.cat([text_layout_emb, visual_emb], dim=1)
- extended_attention_mask = final_attention_mask.unsqueeze(1).unsqueeze(2)
- extended_attention_mask = extended_attention_mask.to(dtype=self.dtype)
- extended_attention_mask = (1.0 - extended_attention_mask) * torch.finfo(self.dtype).min
- encoder_outputs = self.encoder(
- final_emb,
- extended_attention_mask,
- bbox=final_bbox,
- position_ids=final_position_ids,
- **kwargs,
- )
- sequence_output = encoder_outputs.last_hidden_state
- pooled_output = self.pooler(sequence_output)
- return BaseModelOutputWithPooling(
- last_hidden_state=sequence_output,
- pooler_output=pooled_output,
- )
- @auto_docstring(
- custom_intro="""
- LayoutLMv2 Model with a sequence classification head on top (a linear layer on top of the concatenation of the
- final hidden state of the [CLS] token, average-pooled initial visual embeddings and average-pooled final visual
- embeddings, e.g. for document image classification tasks such as the
- [RVL-CDIP](https://www.cs.cmu.edu/~aharley/rvl-cdip/) dataset.
- """
- )
- class LayoutLMv2ForSequenceClassification(LayoutLMv2PreTrainedModel):
- def __init__(self, config):
- super().__init__(config)
- self.num_labels = config.num_labels
- self.layoutlmv2 = LayoutLMv2Model(config)
- self.dropout = nn.Dropout(config.hidden_dropout_prob)
- self.classifier = nn.Linear(config.hidden_size * 3, config.num_labels)
- # Initialize weights and apply final processing
- self.post_init()
- def get_input_embeddings(self):
- return self.layoutlmv2.embeddings.word_embeddings
- @can_return_tuple
- @auto_docstring
- def forward(
- self,
- input_ids: torch.LongTensor | None = None,
- bbox: torch.LongTensor | None = None,
- image: torch.FloatTensor | None = None,
- attention_mask: torch.FloatTensor | None = None,
- token_type_ids: torch.LongTensor | None = None,
- position_ids: torch.LongTensor | None = None,
- inputs_embeds: torch.FloatTensor | None = None,
- labels: torch.LongTensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | SequenceClassifierOutput:
- r"""
- input_ids (`torch.LongTensor` of shape `batch_size, sequence_length`):
- Indices of input sequence tokens in the vocabulary.
- Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
- [`PreTrainedTokenizer.__call__`] for details.
- [What are input IDs?](../glossary#input-ids)
- bbox (`torch.LongTensor` of shape `(batch_size, sequence_length, 4)`, *optional*):
- Bounding boxes of each input sequence tokens. Selected in the range `[0,
- config.max_2d_position_embeddings-1]`. Each bounding box should be a normalized version in (x0, y0, x1, y1)
- format, where (x0, y0) corresponds to the position of the upper left corner in the bounding box, and (x1,
- y1) represents the position of the lower right corner.
- image (`torch.FloatTensor` of shape `(batch_size, num_channels, height, width)` or `detectron.structures.ImageList` whose `tensors` is of shape `(batch_size, num_channels, height, width)`):
- Batch of document images.
- token_type_ids (`torch.LongTensor` of shape `batch_size, sequence_length`, *optional*):
- Segment token indices to indicate first and second portions of the inputs. Indices are selected in `[0,
- 1]`:
- - 0 corresponds to a *sentence A* token,
- - 1 corresponds to a *sentence B* token.
- [What are token type IDs?](../glossary#token-type-ids)
- position_ids (`torch.LongTensor` of shape `batch_size, sequence_length`, *optional*):
- Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
- config.max_position_embeddings - 1]`.
- [What are position IDs?](../glossary#position-ids)
- labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
- Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
- config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
- `config.num_labels > 1` a classification loss is computed (Cross-Entropy).
- Example:
- ```python
- >>> from transformers import AutoProcessor, LayoutLMv2ForSequenceClassification, set_seed
- >>> from PIL import Image
- >>> import torch
- >>> from datasets import load_dataset
- >>> set_seed(0)
- >>> dataset = load_dataset("aharley/rvl_cdip", split="train", streaming=True)
- >>> data = next(iter(dataset))
- >>> image = data["image"].convert("RGB")
- >>> processor = AutoProcessor.from_pretrained("microsoft/layoutlmv2-base-uncased")
- >>> model = LayoutLMv2ForSequenceClassification.from_pretrained(
- ... "microsoft/layoutlmv2-base-uncased", num_labels=dataset.info.features["label"].num_classes
- ... )
- >>> encoding = processor(image, return_tensors="pt")
- >>> sequence_label = torch.tensor([data["label"]])
- >>> outputs = model(**encoding, labels=sequence_label)
- >>> loss, logits = outputs.loss, outputs.logits
- >>> predicted_idx = logits.argmax(dim=-1).item()
- >>> predicted_answer = dataset.info.features["label"].names[4]
- >>> predicted_idx, predicted_answer # results are not good without further fine-tuning
- (7, 'advertisement')
- ```
- """
- if input_ids is not None and inputs_embeds is not None:
- raise ValueError("You cannot specify both input_ids and inputs_embeds at the same time")
- elif input_ids is not None:
- self.warn_if_padding_and_no_attention_mask(input_ids, attention_mask)
- input_shape = input_ids.size()
- elif inputs_embeds is not None:
- input_shape = inputs_embeds.size()[:-1]
- else:
- raise ValueError("You have to specify either input_ids or inputs_embeds")
- device = input_ids.device if input_ids is not None else inputs_embeds.device
- visual_shape = list(input_shape)
- visual_shape[1] = self.config.image_feature_pool_shape[0] * self.config.image_feature_pool_shape[1]
- visual_shape = torch.Size(visual_shape)
- final_shape = list(input_shape)
- final_shape[1] += visual_shape[1]
- final_shape = torch.Size(final_shape)
- visual_bbox = self.layoutlmv2._calc_visual_bbox(
- self.config.image_feature_pool_shape, bbox, device, final_shape
- )
- visual_position_ids = torch.arange(0, visual_shape[1], dtype=torch.long, device=device).repeat(
- input_shape[0], 1
- )
- initial_image_embeddings = self.layoutlmv2._calc_img_embeddings(
- image=image,
- bbox=visual_bbox,
- position_ids=visual_position_ids,
- )
- outputs: BaseModelOutputWithPooling = self.layoutlmv2(
- input_ids=input_ids,
- bbox=bbox,
- image=image,
- attention_mask=attention_mask,
- token_type_ids=token_type_ids,
- position_ids=position_ids,
- inputs_embeds=inputs_embeds,
- **kwargs,
- )
- if input_ids is not None:
- input_shape = input_ids.size()
- else:
- input_shape = inputs_embeds.size()[:-1]
- seq_length = input_shape[1]
- sequence_output, final_image_embeddings = (
- outputs.last_hidden_state[:, :seq_length],
- outputs.last_hidden_state[:, seq_length:],
- )
- cls_final_output = sequence_output[:, 0, :]
- # average-pool the visual embeddings
- pooled_initial_image_embeddings = initial_image_embeddings.mean(dim=1)
- pooled_final_image_embeddings = final_image_embeddings.mean(dim=1)
- # concatenate with cls_final_output
- sequence_output = torch.cat(
- [cls_final_output, pooled_initial_image_embeddings, pooled_final_image_embeddings], dim=1
- )
- sequence_output = self.dropout(sequence_output)
- logits = self.classifier(sequence_output)
- loss = None
- if labels is not None:
- if self.config.problem_type is None:
- if self.num_labels == 1:
- self.config.problem_type = "regression"
- elif self.num_labels > 1 and (labels.dtype == torch.long or labels.dtype == torch.int):
- self.config.problem_type = "single_label_classification"
- else:
- self.config.problem_type = "multi_label_classification"
- if self.config.problem_type == "regression":
- loss_fct = MSELoss()
- if self.num_labels == 1:
- loss = loss_fct(logits.squeeze(), labels.squeeze())
- else:
- loss = loss_fct(logits, labels)
- elif self.config.problem_type == "single_label_classification":
- loss_fct = CrossEntropyLoss()
- loss = loss_fct(logits.view(-1, self.num_labels), labels.view(-1))
- elif self.config.problem_type == "multi_label_classification":
- loss_fct = BCEWithLogitsLoss()
- loss = loss_fct(logits, labels)
- return SequenceClassifierOutput(
- loss=loss,
- logits=logits,
- hidden_states=outputs.hidden_states,
- attentions=outputs.attentions,
- )
- @auto_docstring(
- custom_intro="""
- LayoutLMv2 Model with a token classification head on top (a linear layer on top of the text part of the hidden
- states) e.g. for sequence labeling (information extraction) tasks such as
- [FUNSD](https://guillaumejaume.github.io/FUNSD/), [SROIE](https://rrc.cvc.uab.es/?ch=13),
- [CORD](https://github.com/clovaai/cord) and [Kleister-NDA](https://github.com/applicaai/kleister-nda).
- """
- )
- class LayoutLMv2ForTokenClassification(LayoutLMv2PreTrainedModel):
- def __init__(self, config):
- super().__init__(config)
- self.num_labels = config.num_labels
- self.layoutlmv2 = LayoutLMv2Model(config)
- self.dropout = nn.Dropout(config.hidden_dropout_prob)
- self.classifier = nn.Linear(config.hidden_size, config.num_labels)
- # Initialize weights and apply final processing
- self.post_init()
- def get_input_embeddings(self):
- return self.layoutlmv2.embeddings.word_embeddings
- @can_return_tuple
- @auto_docstring
- def forward(
- self,
- input_ids: torch.LongTensor | None = None,
- bbox: torch.LongTensor | None = None,
- image: torch.FloatTensor | None = None,
- attention_mask: torch.FloatTensor | None = None,
- token_type_ids: torch.LongTensor | None = None,
- position_ids: torch.LongTensor | None = None,
- inputs_embeds: torch.FloatTensor | None = None,
- labels: torch.LongTensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | TokenClassifierOutput:
- r"""
- input_ids (`torch.LongTensor` of shape `batch_size, sequence_length`):
- Indices of input sequence tokens in the vocabulary.
- Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
- [`PreTrainedTokenizer.__call__`] for details.
- [What are input IDs?](../glossary#input-ids)
- bbox (`torch.LongTensor` of shape `(batch_size, sequence_length, 4)`, *optional*):
- Bounding boxes of each input sequence tokens. Selected in the range `[0,
- config.max_2d_position_embeddings-1]`. Each bounding box should be a normalized version in (x0, y0, x1, y1)
- format, where (x0, y0) corresponds to the position of the upper left corner in the bounding box, and (x1,
- y1) represents the position of the lower right corner.
- image (`torch.FloatTensor` of shape `(batch_size, num_channels, height, width)` or `detectron.structures.ImageList` whose `tensors` is of shape `(batch_size, num_channels, height, width)`):
- Batch of document images.
- token_type_ids (`torch.LongTensor` of shape `batch_size, sequence_length`, *optional*):
- Segment token indices to indicate first and second portions of the inputs. Indices are selected in `[0,
- 1]`:
- - 0 corresponds to a *sentence A* token,
- - 1 corresponds to a *sentence B* token.
- [What are token type IDs?](../glossary#token-type-ids)
- position_ids (`torch.LongTensor` of shape `batch_size, sequence_length`, *optional*):
- Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
- config.max_position_embeddings - 1]`.
- [What are position IDs?](../glossary#position-ids)
- labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
- Labels for computing the token classification loss. Indices should be in `[0, ..., config.num_labels - 1]`.
- Example:
- ```python
- >>> from transformers import AutoProcessor, LayoutLMv2ForTokenClassification, set_seed
- >>> from PIL import Image
- >>> from datasets import load_dataset
- >>> set_seed(0)
- >>> datasets = load_dataset("nielsr/funsd", split="test")
- >>> labels = datasets.features["ner_tags"].feature.names
- >>> id2label = {v: k for v, k in enumerate(labels)}
- >>> processor = AutoProcessor.from_pretrained("microsoft/layoutlmv2-base-uncased", revision="no_ocr")
- >>> model = LayoutLMv2ForTokenClassification.from_pretrained(
- ... "microsoft/layoutlmv2-base-uncased", num_labels=len(labels)
- ... )
- >>> data = datasets[0]
- >>> image = Image.open(data["image_path"]).convert("RGB")
- >>> words = data["words"]
- >>> boxes = data["bboxes"] # make sure to normalize your bounding boxes
- >>> word_labels = data["ner_tags"]
- >>> encoding = processor(
- ... image,
- ... words,
- ... boxes=boxes,
- ... word_labels=word_labels,
- ... padding="max_length",
- ... truncation=True,
- ... return_tensors="pt",
- ... )
- >>> outputs = model(**encoding)
- >>> logits, loss = outputs.logits, outputs.loss
- >>> predicted_token_class_ids = logits.argmax(-1)
- >>> predicted_tokens_classes = [id2label[t.item()] for t in predicted_token_class_ids[0]]
- >>> predicted_tokens_classes[:5] # results are not good without further fine-tuning
- ['I-HEADER', 'I-HEADER', 'I-QUESTION', 'I-HEADER', 'I-QUESTION']
- ```
- """
- outputs: BaseModelOutputWithPooling = self.layoutlmv2(
- input_ids=input_ids,
- bbox=bbox,
- image=image,
- attention_mask=attention_mask,
- token_type_ids=token_type_ids,
- position_ids=position_ids,
- inputs_embeds=inputs_embeds,
- **kwargs,
- )
- if input_ids is not None:
- input_shape = input_ids.size()
- else:
- input_shape = inputs_embeds.size()[:-1]
- seq_length = input_shape[1]
- # only take the text part of the output representations
- sequence_output = outputs.last_hidden_state[:, :seq_length]
- sequence_output = self.dropout(sequence_output)
- logits = self.classifier(sequence_output)
- loss = None
- if labels is not None:
- loss_fct = CrossEntropyLoss()
- loss = loss_fct(logits.view(-1, self.num_labels), labels.view(-1))
- return TokenClassifierOutput(
- loss=loss,
- logits=logits,
- hidden_states=outputs.hidden_states,
- attentions=outputs.attentions,
- )
- @auto_docstring
- class LayoutLMv2ForQuestionAnswering(LayoutLMv2PreTrainedModel):
- def __init__(self, config, has_visual_segment_embedding=True):
- r"""
- has_visual_segment_embedding (`bool`, *optional*, defaults to `True`):
- Whether or not to add visual segment embeddings.
- """
- super().__init__(config)
- self.num_labels = config.num_labels
- config.has_visual_segment_embedding = has_visual_segment_embedding
- self.layoutlmv2 = LayoutLMv2Model(config)
- self.qa_outputs = nn.Linear(config.hidden_size, config.num_labels)
- # Initialize weights and apply final processing
- self.post_init()
- def get_input_embeddings(self):
- return self.layoutlmv2.embeddings.word_embeddings
- @can_return_tuple
- @auto_docstring
- def forward(
- self,
- input_ids: torch.LongTensor | None = None,
- bbox: torch.LongTensor | None = None,
- image: torch.FloatTensor | None = None,
- attention_mask: torch.FloatTensor | None = None,
- token_type_ids: torch.LongTensor | None = None,
- position_ids: torch.LongTensor | None = None,
- inputs_embeds: torch.FloatTensor | None = None,
- start_positions: torch.LongTensor | None = None,
- end_positions: torch.LongTensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | QuestionAnsweringModelOutput:
- r"""
- input_ids (`torch.LongTensor` of shape `batch_size, sequence_length`):
- Indices of input sequence tokens in the vocabulary.
- Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
- [`PreTrainedTokenizer.__call__`] for details.
- [What are input IDs?](../glossary#input-ids)
- bbox (`torch.LongTensor` of shape `(batch_size, sequence_length, 4)`, *optional*):
- Bounding boxes of each input sequence tokens. Selected in the range `[0,
- config.max_2d_position_embeddings-1]`. Each bounding box should be a normalized version in (x0, y0, x1, y1)
- format, where (x0, y0) corresponds to the position of the upper left corner in the bounding box, and (x1,
- y1) represents the position of the lower right corner.
- image (`torch.FloatTensor` of shape `(batch_size, num_channels, height, width)` or `detectron.structures.ImageList` whose `tensors` is of shape `(batch_size, num_channels, height, width)`):
- Batch of document images.
- token_type_ids (`torch.LongTensor` of shape `batch_size, sequence_length`, *optional*):
- Segment token indices to indicate first and second portions of the inputs. Indices are selected in `[0,
- 1]`:
- - 0 corresponds to a *sentence A* token,
- - 1 corresponds to a *sentence B* token.
- [What are token type IDs?](../glossary#token-type-ids)
- position_ids (`torch.LongTensor` of shape `batch_size, sequence_length`, *optional*):
- Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
- config.max_position_embeddings - 1]`.
- [What are position IDs?](../glossary#position-ids)
- Example:
- In this example below, we give the LayoutLMv2 model an image (of texts) and ask it a question. It will give us
- a prediction of what it thinks the answer is (the span of the answer within the texts parsed from the image).
- ```python
- >>> from transformers import AutoProcessor, LayoutLMv2ForQuestionAnswering, set_seed
- >>> import torch
- >>> from PIL import Image
- >>> from datasets import load_dataset
- >>> set_seed(0)
- >>> processor = AutoProcessor.from_pretrained("microsoft/layoutlmv2-base-uncased")
- >>> model = LayoutLMv2ForQuestionAnswering.from_pretrained("microsoft/layoutlmv2-base-uncased")
- >>> dataset = load_dataset("hf-internal-testing/fixtures_docvqa")
- >>> image = dataset["test"][0]["image"]
- >>> question = "When is coffee break?"
- >>> encoding = processor(image, question, return_tensors="pt")
- >>> outputs = model(**encoding)
- >>> predicted_start_idx = outputs.start_logits.argmax(-1).item()
- >>> predicted_end_idx = outputs.end_logits.argmax(-1).item()
- >>> predicted_start_idx, predicted_end_idx
- (30, 191)
- >>> predicted_answer_tokens = encoding.input_ids.squeeze()[predicted_start_idx : predicted_end_idx + 1]
- >>> predicted_answer = processor.tokenizer.decode(predicted_answer_tokens)
- >>> predicted_answer # results are not good without further fine-tuning
- '44 a. m. to 12 : 25 p. m. 12 : 25 to 12 : 58 p. m. 12 : 58 to 4 : 00 p. m. 2 : 00 to 5 : 00 p. m. coffee break coffee will be served for men and women in the lobby adjacent to exhibit area. please move into exhibit area. ( exhibits open ) trrf general session ( part | ) presiding : lee a. waller trrf vice president " introductory remarks " lee a. waller, trrf vice presi - dent individual interviews with trrf public board members and sci - entific advisory council mem - bers conducted by trrf treasurer philip g. kuehn to get answers which the public refrigerated warehousing industry is looking for. plus questions from'
- ```
- ```python
- >>> target_start_index = torch.tensor([7])
- >>> target_end_index = torch.tensor([14])
- >>> outputs = model(**encoding, start_positions=target_start_index, end_positions=target_end_index)
- >>> predicted_answer_span_start = outputs.start_logits.argmax(-1).item()
- >>> predicted_answer_span_end = outputs.end_logits.argmax(-1).item()
- >>> predicted_answer_span_start, predicted_answer_span_end
- (30, 191)
- ```
- """
- outputs: BaseModelOutputWithPooling = self.layoutlmv2(
- input_ids=input_ids,
- bbox=bbox,
- image=image,
- attention_mask=attention_mask,
- token_type_ids=token_type_ids,
- position_ids=position_ids,
- inputs_embeds=inputs_embeds,
- **kwargs,
- )
- if input_ids is not None:
- input_shape = input_ids.size()
- else:
- input_shape = inputs_embeds.size()[:-1]
- seq_length = input_shape[1]
- # only take the text part of the output representations
- sequence_output = outputs.last_hidden_state[:, :seq_length]
- logits = self.qa_outputs(sequence_output)
- start_logits, end_logits = logits.split(1, dim=-1)
- start_logits = start_logits.squeeze(-1).contiguous()
- end_logits = end_logits.squeeze(-1).contiguous()
- total_loss = None
- if start_positions is not None and end_positions is not None:
- # If we are on multi-GPU, split add a dimension
- if len(start_positions.size()) > 1:
- start_positions = start_positions.squeeze(-1)
- if len(end_positions.size()) > 1:
- end_positions = end_positions.squeeze(-1)
- # sometimes the start/end positions are outside our model inputs, we ignore these terms
- ignored_index = start_logits.size(1)
- start_positions = start_positions.clamp(0, ignored_index)
- end_positions = end_positions.clamp(0, ignored_index)
- loss_fct = CrossEntropyLoss(ignore_index=ignored_index)
- start_loss = loss_fct(start_logits, start_positions)
- end_loss = loss_fct(end_logits, end_positions)
- total_loss = (start_loss + end_loss) / 2
- return QuestionAnsweringModelOutput(
- loss=total_loss,
- start_logits=start_logits,
- end_logits=end_logits,
- hidden_states=outputs.hidden_states,
- attentions=outputs.attentions,
- )
- __all__ = [
- "LayoutLMv2ForQuestionAnswering",
- "LayoutLMv2ForSequenceClassification",
- "LayoutLMv2ForTokenClassification",
- "LayoutLMv2Layer",
- "LayoutLMv2Model",
- "LayoutLMv2PreTrainedModel",
- ]
|