From c72eca5d1e37dfb75ca01e879b66d867b419480d Mon Sep 17 00:00:00 2001 From: Austin Walker Date: Wed, 1 Nov 2023 15:38:43 -0400 Subject: [PATCH 1/2] chore: change the default model to yolox The `yolox` model appears to perform better on tables. --- unstructured_inference/models/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unstructured_inference/models/base.py b/unstructured_inference/models/base.py index 53915635..dabc1c74 100644 --- a/unstructured_inference/models/base.py +++ b/unstructured_inference/models/base.py @@ -25,7 +25,7 @@ UnstructuredYoloXModel, ) -DEFAULT_MODEL = "yolox_quantized" +DEFAULT_MODEL = "yolox" models: Dict[str, UnstructuredModel] = {} From 10ed4b536e0101ebce7586ec84d6a5c8e8319938 Mon Sep 17 00:00:00 2001 From: Austin Walker Date: Wed, 1 Nov 2023 16:27:20 -0400 Subject: [PATCH 2/2] cut a new release --- CHANGELOG.md | 4 ++++ unstructured_inference/__version__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c626696a..43235aa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/unstructured_inference/__version__.py b/unstructured_inference/__version__.py index 3e7b0b22..3828d0a5 100644 --- a/unstructured_inference/__version__.py +++ b/unstructured_inference/__version__.py @@ -1 +1 @@ -__version__ = "0.7.11" # pragma: no cover +__version__ = "0.7.12" # pragma: no cover