msight-tech / research-charnet

CharNet: Convolutional Character Networks
Other
612 stars 142 forks source link

update __init__ in class CharNet #1

Closed Cyril9227 closed 5 years ago

Cyril9227 commented 5 years ago

Currently resnet50 and Decoder are imported but never used, modified the init function in class CharNet so we can build CharNet using different backbones

init(self) -> init(self, backbone=hourglass88())

self.backbone = hourglass88() -> self.backbone = backbone