table-transformer icon indicating copy to clipboard operation
table-transformer copied to clipboard

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 evalu...

Results 103 table-transformer issues
Sort by recently updated
recently updated
newest added

Hi, Recently I have tried fine-tuning the table transformer model with a small dataset. However, I was wondering if there is a way to load the model into hugging face's...

I have fine-tune Table Structure Recognition model for with 20 epoch, inference result are also getting but to get evaluation metrics script not giving any result and freeze for forever...

Hi! I am trying to fine tune the TATR model with a proprietary dataset. I am currently trying to convert the dataset to the same format as FinTabNet and then...

I am finding that when using the latest `TATR-v1.1-Fin` model that in the initial TSR phase the model detects many very thin rows in the middle of a table, even...

below table detection exactly crops the table.. but i need to some gap in right and left side... because when we pass the table crop image to ocr edges values...

I have a pdf and have converted it to the images. Now I want to pass it through the TETR for Table Structure Recognition. Is there a way to run...

pip install onnxruntime==1.14.1 ERROR: Could not find a version that satisfies the requirement onnxruntime==1.14.1 (from versions: 1.15.0, 1.15.1, 1.16.0, 1.16.1, 1.16.2, 1.16.3, 1.17.0, 1.17.1) ERROR: No matching distribution found for...

有没有小伙伴想一起搞中文数据集的??可以组个团一起搞下。

i have image have table basic: ![3](https://github.com/microsoft/table-transformer/assets/81013330/f7cdc24b-2904-4ed7-8888-b79997d11345) i have simple code: image = Image.open('./imgs_test/3.jpg').convert("RGB") width, height = image.size image.resize((int(width*0.5), int(height*0.5))) from transformers import DetrFeatureExtractor feature_extractor = DetrFeatureExtractor() encoding = feature_extractor(image,...