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.8

* Fix: include onnx as base dependency.

## 0.7.7

• Fix a memory leak in DonutProcessor when using large images in numpy format
Expand Down
1 change: 1 addition & 0 deletions requirements/base.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ layoutparser[layoutmodels,tesseract]
python-multipart
huggingface-hub
opencv-python!=4.7.0.68
onnx
# NOTE(benjamin): Pinned because onnxruntime changed the way quantization is done, and we need to update our code to support it
onnxruntime<1.16
# NOTE(alan): Pinned because this is when the most recent module we import appeared
Expand Down
8 changes: 7 additions & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ numpy==1.23.0
# contourpy
# layoutparser
# matplotlib
# onnx
# onnxruntime
# opencv-python
# pandas
Expand All @@ -80,6 +81,8 @@ numpy==1.23.0
# transformers
omegaconf==2.3.0
# via effdet
onnx==1.14.1
# via -r requirements/base.in
onnxruntime==1.15.1
# via -r requirements/base.in
opencv-python==4.8.1.78
Expand Down Expand Up @@ -112,7 +115,9 @@ pillow==10.0.1
portalocker==2.8.2
# via iopath
protobuf==4.24.4
# via onnxruntime
# via
# onnx
# onnxruntime
pycocotools==2.0.7
# via effdet
pycparser==2.21
Expand Down Expand Up @@ -185,6 +190,7 @@ typing-extensions==4.8.0
# via
# huggingface-hub
# iopath
# onnx
# torch
tzdata==2023.3
# via pandas
Expand Down
1 change: 1 addition & 0 deletions requirements/sg.txt
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ omegaconf==2.3.0
# super-gradients
onnx==1.13.0
# via
# -c requirements/base.in
# onnx-simplifier
# super-gradients
onnx-simplifier==0.4.33
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.7" # pragma: no cover
__version__ = "0.7.8" # pragma: no cover