Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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