Update README.md
This commit is contained in:
parent
fc0a115cae
commit
82b0136dbd
17
README.md
17
README.md
|
@ -8,8 +8,6 @@ tags:
|
||||||
|
|
||||||
# Model Details
|
# Model Details
|
||||||
|
|
||||||
## Model Description
|
|
||||||
|
|
||||||
detr-doc-table-detection is a model trained to detect both **Bordered** and **Borderless** tables in documents, based on [facebook/detr-resnet-50](https://huggingface.co/facebook/detr-resnet-50).
|
detr-doc-table-detection is a model trained to detect both **Bordered** and **Borderless** tables in documents, based on [facebook/detr-resnet-50](https://huggingface.co/facebook/detr-resnet-50).
|
||||||
|
|
||||||
- **Developed by:** Taha Douaji
|
- **Developed by:** Taha Douaji
|
||||||
|
@ -30,10 +28,6 @@ detr-doc-table-detection is a model trained to detect both **Bordered** and **Bo
|
||||||
## Direct Use
|
## Direct Use
|
||||||
This model can be used for the task of object detection.
|
This model can be used for the task of object detection.
|
||||||
|
|
||||||
## Downstream Use [Optional]
|
|
||||||
|
|
||||||
More information needed.
|
|
||||||
|
|
||||||
## Out-of-Scope Use
|
## Out-of-Scope Use
|
||||||
|
|
||||||
The model should not be used to intentionally create hostile or alienating environments for people.
|
The model should not be used to intentionally create hostile or alienating environments for people.
|
||||||
|
@ -59,14 +53,6 @@ The model was trained on ICDAR2019 Table Dataset
|
||||||
## Training Procedure
|
## Training Procedure
|
||||||
|
|
||||||
|
|
||||||
### Preprocessing
|
|
||||||
|
|
||||||
More information needed
|
|
||||||
|
|
||||||
### Speeds, Sizes, Times
|
|
||||||
More information needed
|
|
||||||
|
|
||||||
|
|
||||||
# Evaluation
|
# Evaluation
|
||||||
|
|
||||||
|
|
||||||
|
@ -173,8 +159,6 @@ More information needed
|
||||||
|
|
||||||
Use the code below to get started with the model.
|
Use the code below to get started with the model.
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary> Click to expand </summary>
|
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from transformers import DetrImageProcessor, DetrForObjectDetection
|
from transformers import DetrImageProcessor, DetrForObjectDetection
|
||||||
|
@ -203,4 +187,3 @@ for score, label, box in zip(results["scores"], results["labels"], results["boxe
|
||||||
f"{round(score.item(), 3)} at location {box}"
|
f"{round(score.item(), 3)} at location {box}"
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
</details>
|
|
Loading…
Reference in New Issue