Skip to content

Commit cf03bc1

Browse files
authored
chore: change the default model to yolox (#275)
The `yolox` model appears to perform better on tables.
1 parent 48ba579 commit cf03bc1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.12
2+
3+
* change the default model to yolox, as table output appears to be better and speed is similar to `yolox_quantized`
4+
15
## 0.7.11
26

37
* chore: remove logger info for chipper since its private
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.11" # pragma: no cover
1+
__version__ = "0.7.12" # pragma: no cover

unstructured_inference/models/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
UnstructuredYoloXModel,
2626
)
2727

28-
DEFAULT_MODEL = "yolox_quantized"
28+
DEFAULT_MODEL = "yolox"
2929

3030
models: Dict[str, UnstructuredModel] = {}
3131

0 commit comments

Comments
 (0)