We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ba579 commit cf03bc1Copy full SHA for cf03bc1
CHANGELOG.md
@@ -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
5
## 0.7.11
6
7
* chore: remove logger info for chipper since its private
unstructured_inference/__version__.py
@@ -1 +1 @@
-__version__ = "0.7.11" # pragma: no cover
+__version__ = "0.7.12" # pragma: no cover
unstructured_inference/models/base.py
@@ -25,7 +25,7 @@
25
UnstructuredYoloXModel,
26
)
27
28
-DEFAULT_MODEL = "yolox_quantized"
+DEFAULT_MODEL = "yolox"
29
30
models: Dict[str, UnstructuredModel] = {}
31
0 commit comments