You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Release 0.4.3 version with sentence-transformers fixes (#81)
* Pin `0.4.3dev0` version for upcoming release
* Fix `sentence-transformers` unit tests
* Move `peft` out of core dependencies
`peft` requires `torch` as a mandatory dependency, so adding `peft` as a
core dependency means that `torch` will be installed i.e. even when `pip
install -e ".[quality]"` which slows things a bit, since `torch`
installation takes time; and in some cases is not needed, so moving
`peft` into the `torch` extra makes the most sense for the moment (not
final).
* Fix `trust_remote_code` propagation for `sentence-transformers`
* Add missing return type-hint
* Fix `test__load_repository_from_gcs` to rely on `create_anonymous_client`
* Fix `kwargs` propagation for `sentence-transformers`
* Bump version to 0.4.3
Copy file name to clipboardExpand all lines: setup.py
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
# We don't declare our dependency on transformers here because we build with
6
6
# different packages for different variants
7
7
8
-
VERSION="0.4.2"
8
+
VERSION="0.4.3"
9
9
10
10
# Ubuntu packages
11
11
# libsndfile1-dev: torchaudio requires the development version of the libsndfile package which can be installed via a system package manager. On Ubuntu it can be installed as follows: apt install libsndfile1-dev
Copy file name to clipboardExpand all lines: src/huggingface_inference_toolkit/vertex_ai_utils.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,9 @@
8
8
9
9
10
10
# copied from https://github.com/googleapis/python-aiplatform/blob/94d838d8cfe1599bc2d706e66080c05108821986/google/cloud/aiplatform/utils/prediction_utils.py#L121
0 commit comments