Views
No views yet
| Subdir | Upstream | Task |
|---|---|---|
gmft_onnx/detection/model.onnx | microsoft/table-transformer-detection | Detect table bounding boxes on a page |
gmft_onnx/structure/model.onnx | microsoft/table-transformer-structure-recognition-v1.1-all | Detect rows / columns / cells inside a cropped table |
config.json + preprocessor metadata so transformers / optimum can wrap the ONNX directly.1from huggingface_hub import snapshot_download
2local = snapshot_download("welcomyou/gmft-tatr-onnx", local_dir="models")
3# Detection: f"{local}/gmft_onnx/detection/model.onnx"
4# Structure: f"{local}/gmft_onnx/structure/model.onnx"