microsoft / table-transformer

Table Transformer (TATR) is a deep learning model for extracting tables from unstructured documents (PDFs and images). This is also the official repository for the PubTables-1M dataset and GriTS evaluation metric.
MIT License
2.01k stars 231 forks source link

Removed redundant backbone argument #129

Open saswat0 opened 11 months ago

saswat0 commented 11 months ago

cmd_args overrides config_args; hence, setting the value of backbone in the config file isn't sufficient for changing the backbone network. The default value of backbone is always overridden as 'resnet18' due to argparse's default parameter value. This might go unnoticed until training is complete and inference starts and hence should be handled before initiating any experiment.