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

* Improved packaging

## 0.7.4

* Dynamic beam search size has been implemented for Chipper, the decoding process starts with a size = 1 and changes to size = 3 if repetitions appear.
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include requirements/base.in
include requirements/sg.in
9 changes: 7 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ install-base: install-base-pip-packages

## install: installs all test, dev, and experimental requirements
.PHONY: install
install: install-base-pip-packages install-dev install-detectron2
install: install-base-pip-packages install-dev install-sg install-detectron2

.PHONY: install-ci
install-ci: install-base-pip-packages install-test install-paddleocr
install-ci: install-base-pip-packages install-test install-sg install-paddleocr

.PHONY: install-base-pip-packages
install-base-pip-packages:
Expand All @@ -46,6 +46,10 @@ install-test: install-base
install-dev: install-test
pip install -r requirements/dev.txt

.PHONY: install-sg
install-sg: install-base
pip install -r requirements/sg.txt

## pip-compile: compiles all base/dev/test requirements
.PHONY: pip-compile
pip-compile:
Expand All @@ -56,6 +60,7 @@ pip-compile:
sed 's/^detectron2 @/# detectron2 @/g' requirements/base.txt
pip-compile --upgrade requirements/test.in
pip-compile --upgrade requirements/dev.in
pip-compile --upgrade requirements/sg.in


#################
Expand Down
3 changes: 1 addition & 2 deletions requirements/base.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
-c constraints.in
layoutparser[layoutmodels,tesseract]
python-multipart
huggingface-hub
opencv-python!=4.7.0.68
super-gradients
supervision
# 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
Loading