Skip to content

Commit

Permalink
chore: change the default model to yolox (#275)
Browse files Browse the repository at this point in the history
The `yolox` model appears to perform better on tables.
  • Loading branch information
awalker4 authored Nov 7, 2023
1 parent 48ba579 commit cf03bc1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.7.12

* change the default model to yolox, as table output appears to be better and speed is similar to `yolox_quantized`

## 0.7.11

* chore: remove logger info for chipper since its private
Expand Down
2 changes: 1 addition & 1 deletion unstructured_inference/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.11" # pragma: no cover
__version__ = "0.7.12" # pragma: no cover
2 changes: 1 addition & 1 deletion unstructured_inference/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
UnstructuredYoloXModel,
)

DEFAULT_MODEL = "yolox_quantized"
DEFAULT_MODEL = "yolox"

models: Dict[str, UnstructuredModel] = {}

Expand Down

0 comments on commit cf03bc1

Please sign in to comment.