Shortcuts

Note

You are reading the documentation for MMOCR 0.x, which will soon be deprecated by the end of 2022. We recommend you upgrade to MMOCR 1.0 to enjoy fruitful new features and better performance brought by OpenMMLab 2.0. Check out the maintenance plan, changelog, code and documentation of MMOCR 1.0 for more details.

Source code for mmocr.models.textrecog.layers.position_aware_layer

# Copyright (c) OpenMMLab. All rights reserved.
import torch.nn as nn


[docs]class PositionAwareLayer(nn.Module): def __init__(self, dim_model, rnn_layers=2): super().__init__() self.dim_model = dim_model self.rnn = nn.LSTM( input_size=dim_model, hidden_size=dim_model, num_layers=rnn_layers, batch_first=True) self.mixer = nn.Sequential( nn.Conv2d( dim_model, dim_model, kernel_size=3, stride=1, padding=1), nn.ReLU(True), nn.Conv2d( dim_model, dim_model, kernel_size=3, stride=1, padding=1))
[docs] def forward(self, img_feature): n, c, h, w = img_feature.size() rnn_input = img_feature.permute(0, 2, 3, 1).contiguous() rnn_input = rnn_input.view(n * h, w, c) rnn_output, _ = self.rnn(rnn_input) rnn_output = rnn_output.view(n, h, w, c) rnn_output = rnn_output.permute(0, 3, 1, 2).contiguous() out = self.mixer(rnn_output) return out
Read the Docs v: v0.6.3
Versions
latest
stable
v0.6.3
v0.6.2
v0.6.1
v0.6.0
v0.5.0
v0.4.1
v0.4.0
v0.3.0
v0.2.1
v0.2.0
v0.1.0
dev-1.x
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.