-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[
feat
+ fix
] Add normalize_embeddings
support to multi-process …
…encoding; fix multi-process encoding on CUDA devices (#2377) * added normalize option to multiprocess encode * Rename some variables * Add missing docstring * Update logger text * Moving to CPU is required, otherwise all weights become 0.0 * Update test_encode_multi_process tests --------- Co-authored-by: teisnp <[email protected]>
- Loading branch information
Showing
3 changed files
with
53 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
from sentence_transformers import SentenceTransformer | ||
import pytest | ||
|
||
|
||
@pytest.fixture() | ||
def model() -> SentenceTransformer: | ||
return SentenceTransformer("sentence-transformers-testing/stsb-bert-tiny-safetensors") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters