AI SeedbankHelp preserve open and free AI for humanity's future

← All models

TahaDouaji_detr-doc-table-detection

TahaDouaji · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


tags:

  • object-detection
  • '- vision'
  • onnx license: apache-2.0 base_model: facebook/detr-resnet-50 datasets:
  • MohamedExperio/ICDAR2019

Model Card for detr-doc-table-detection

Model Details

detr-doc-table-detection is a model trained to detect both Bordered and Borderless tables in documents, based on facebook/detr-resnet-50.

  • Developed by: Taha Douaji
  • Shared by [Optional]: Taha Douaji
  • Model type: Object Detection
  • Language(s) (NLP): More information needed
  • License: More information needed
  • Parent Model: facebook/detr-resnet-50
  • Resources for more information:

Uses

Direct Use

This model can be used for the task of object detection.

Out-of-Scope Use

The model should not be used to intentionally create hostile or alienating environments for people.

Bias, Risks, and Limitations

Significant research has explored bias and fairness issues with language models (see, e.g., Sheng et al. (2021) and Bender et al. (2021)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups.

Recommendations

Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.

Training Details

Training Data

The model was trained on ICDAR2019 Table Dataset

Environmental Impact

Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).

Citation

BibTeX:

@article{DBLP:journals/corr/abs-2005-12872,
  author    = {Nicolas Carion and
               Francisco Massa and
               Gabriel Synnaeve and
               Nicolas Usunier and
               Alexander Kirillov and
               Sergey Zagoruyko},
  title     = {End-to-End Object Detection with Transformers},
  journal   = {CoRR},
  volume    = {abs/2005.12872},
  year      = {2020},
  url       = {https://arxiv.org/abs/2005.12872},
  archivePrefix = {arXiv},
  eprint    = {2005.12872},
  timestamp = {Thu, 28 May 2020 17:38:09 +0200},
  biburl    = {https://dblp.org/rec/journals/corr/abs-2005-12872.bib},
  bibsource = {dblp computer science bibliography, https://dblp.org}
}

Model Card Authors [optional]

Taha Douaji in collaboration with Ezi Ozoani and the Hugging Face team

Model Card Contact

More information needed

How to Get Started with the Model

Use the code below to get started with the model.

from transformers import DetrImageProcessor, DetrForObjectDetection
import torch
from PIL import Image
import requests

image = Image.open("IMAGE_PATH")

processor = DetrImageProcessor.from_pretrained("TahaDouaji/detr-doc-table-detection")
model = DetrForObjectDetection.from_pretrained("TahaDouaji/detr-doc-table-detection")

inputs = processor(images=image, return_tensors="pt")
outputs = model(**inputs)

# convert outputs (bounding boxes and class logits) to COCO API
# let's only keep detections with score > 0.9
target_sizes = torch.tensor([image.size[::-1]])
results = processor.post_process_object_detection(outputs, target_sizes=target_sizes, threshold=0.9)[0]

for score, label, box in zip(results["scores"], results["labels"], results["boxes"]):
    box = [round(i, 2) for i in box.tolist()]
    print(
            f"Detected {model.config.id2label[label.item()]} with confidence "
            f"{round(score.item(), 3)} at location {box}"
    )

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:f648fea89123f5b64a5538faf4f5ca0296c7759e&dn=TahaDouaji_detr-doc-table-detection

Open magnet in torrent client · infohash f648fea89123f5b64a5538faf4f5ca0296c7759e

Files & hashes

PathSizesha1sha256
README.md3.9 KB (4,008 B)3cc828c77755a0c304047b540acbf94ea05296f1d4aa9b121400dc8f82c59c4cef25924175132dc870b5ae090cae932c0e9ed82a
config.json1.1 KB (1,145 B)334360669e200cd50d173453384c460ffd4c1f8cecf52b252132dd59aeb7afa9f389f8e453cd64eba528af4dd98f0a2ca0ce9476
model.safetensors158.8 MB (166,496,396 B)f392368f32e4b5a303a5c139ab370ef34e43ce733ff889d5b3492bc510eaf4611cb9c7cb748be365b285689c961fd67413ba8acd
onnx/config.json1.3 KB (1,344 B)dd5859fac29bf12d7175ba756bcf25b8c4f381ce03e2573b73fafd0cff4c10f6604e84fe30ff250a57ac7ea438f1c07fe41dd76d
onnx/preprocessor_config.json455 B (455 B)0c94b36d8bf935adbf8803f34514b4932958b2f246e760fe5906e035c352a94cf1b736fcf491ced5c635593d352e69350b0afcb0
preprocessor_config.json302 B (302 B)a5a7a0bcd056ed3166847f4977462d8f3f7ecac94f3d076a357920ca3cb155b6a6a1963658d7ab3d512b085d856e125d91f4f45f
pytorch_model.bin158.9 MB (166,637,077 B)7e728c382c5fdd62f84fca4342b2ee385396a4d37e87cd360a5e13dbf93082b3079d5759fea057d2584462d23217cf684e6af4ec

Cite this release

Canonical URL
https://aiseedbank.org/models/TahaDouaji_detr-doc-table-detection/
Slug
TahaDouaji_detr-doc-table-detection
Infohash
f648fea89123f5b64a5538faf4f5ca0296c7759e
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: TahaDouaji_detr-doc-table-detection.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryTahaDouaji/detr-doc-table-detection
Revision (pinned)14ed1f62a7b71629c187634e565d7abe3273b2c6
Fetched at2026-09-02T04:28:55Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:29:01Z

apache-2.0317.7 MB (333,140,727 bytes)transformerspytorchonnxsafetensorsdetrobject-detection- visionendpoints_compatiblepaper: 2005.12872paper: 1910.09700