Instructions to use apkonsta/table-transformer-detection-ifrs with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use apkonsta/table-transformer-detection-ifrs with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("object-detection", model="apkonsta/table-transformer-detection-ifrs")# Load model directly from transformers import AutoImageProcessor, AutoModelForObjectDetection processor = AutoImageProcessor.from_pretrained("apkonsta/table-transformer-detection-ifrs") model = AutoModelForObjectDetection.from_pretrained("apkonsta/table-transformer-detection-ifrs") - Notebooks
- Google Colab
- Kaggle
issue with the fine tunning
Hi, I want to know how you fine-tuned the model because I have an issue with it.
Hi!
Thank you for reaching out. I fine-tuned the model using the training scripts provided in the Microsoft Table Transformer repository https://github.com/microsoft/table-transformer. Specifically, you can find the details in the Model Training section of the README.
@apkonsta thank u for ur response , after the fine-tuning the results are like this :
IoU metric: bbox
Average Precision (AP) @[ IoU=0.50:0.95 | area= all | maxDets=100 ] = 0.169
Average Precision (AP) @[ IoU=0.50 | area= all | maxDets=100 ] = 0.359
Average Precision (AP) @[ IoU=0.75 | area= all | maxDets=100 ] = 0.142
Average Precision (AP) @[ IoU=0.50:0.95 | area= small | maxDets=100 ] = -1.000
Average Precision (AP) @[ IoU=0.50:0.95 | area=medium | maxDets=100 ] = -1.000
Average Precision (AP) @[ IoU=0.50:0.95 | area= large | maxDets=100 ] = 0.169
Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets= 1 ] = 0.227
Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets= 10 ] = 0.547
Average Recall (AR) @[ IoU=0.50:0.95 | area= all | maxDets=100 ] = 0.742
Average Recall (AR) @[ IoU=0.50:0.95 | area= small | maxDets=100 ] = -1.000
Average Recall (AR) @[ IoU=0.50:0.95 | area=medium | maxDets=100 ] = -1.000
Average Recall (AR) @[ IoU=0.50:0.95 | area= large | maxDets=100 ] = 0.742
Any thoughts about this