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.textdet.dense_heads.pse_head

# Copyright (c) OpenMMLab. All rights reserved.
from mmocr.models.builder import HEADS
from . import PANHead


[docs]@HEADS.register_module() class PSEHead(PANHead): """The class for PSENet head. Args: in_channels (list[int]): A list of 4 numbers of input channels. out_channels (int): Number of output channels. downsample_ratio (float): Downsample ratio. loss (dict): Configuration dictionary for loss type. Supported loss types are "PANLoss" and "PSELoss". postprocessor (dict): Config of postprocessor for PSENet. train_cfg, test_cfg (dict): Depreciated. init_cfg (dict or list[dict], optional): Initialization configs. """ def __init__(self, in_channels, out_channels, downsample_ratio=0.25, loss=dict(type='PSELoss'), postprocessor=dict( type='PSEPostprocessor', text_repr_type='poly'), train_cfg=None, test_cfg=None, init_cfg=None, **kwargs): super().__init__( in_channels=in_channels, out_channels=out_channels, downsample_ratio=downsample_ratio, loss=loss, postprocessor=postprocessor, train_cfg=train_cfg, test_cfg=test_cfg, init_cfg=init_cfg, **kwargs)
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.