hikopensource/DAVAR-Lab-OCR

Training and testing instruction

Closed this issue · 2 comments

Will you be able to provide the instruction for training and testing without using ocr (only table / cell detection). It's been really hard to get the code to work using setup.sh.

Thanks.

You can simply command the code such as "from .davar_det import *" in "/DAVAR-Lab-OCR/davarocr/davarocr/init.py" to select whether to use such package.

For the training I get the below error:

Thanks

OSError: LGPMA: path/to/resnet50-19c8e357.pth is not a checkpoint file
Traceback (most recent call last):
File "/mmcv/utils/registry.py", line 51, in build_from_cfg
return obj_cls(**args)
File "DAVAR-Lab-OCR/davarocr/davarocr/davar_table/models/detectors/lgpma.py", line 57, in init
pretrained=pretrained)
File "//mmdet/models/detectors/two_stage.py", line 48, in init
self.init_weights(pretrained=pretrained)
File "/mmdet/models/detectors/two_stage.py", line 68, in init_weights
self.backbone.init_weights(pretrained=pretrained)
File "mmdet/models/backbones/resnet.py", line 599, in init_weights
load_checkpoint(self, pretrained, strict=False, logger=logger)
File "/mmcv/runner/checkpoint.py", line 513, in load_checkpoint
checkpoint = _load_checkpoint(filename, map_location, logger)
File "mmcv/runner/checkpoint.py", line 451, in _load_checkpoint
return CheckpointLoader.load_checkpoint(filename, map_location, logger)
File "/mmcv/runner/checkpoint.py", line 244, in load_checkpoint
return checkpoint_loader(filename, map_location)
File "/mmcv/runner/checkpoint.py", line 260, in load_from_local
raise IOError(f'{filename} is not a checkpoint file')
OSError: path/to/resnet50-19c8e357.pth is not a checkpoint file

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "train.py", line 251, in
main()
File "train.py", line 220, in main
test_cfg=cfg.get('test_cfg', None))
File "/mmdet/models/builder.py", line 77, in build_detector
return build(cfg, DETECTORS, dict(train_cfg=train_cfg, test_cfg=test_cfg))
File "/mmdet/models/builder.py", line 34, in build
return build_from_cfg(cfg, registry, default_args)
File "/mmcv/utils/registry.py", line 54, in build_from_cfg
raise type(e)(f'{obj_cls.name}: {e}')
OSError: LGPMA: path/to/resnet50-19c8e357.pth is not a checkpoint file