dilawarm commited on
Commit
52fc924
·
verified ·
1 Parent(s): 2d483e1

Update README.md

Browse files

flag breaking change in `predict()` return semantics.

Files changed (1) hide show
  1. README.md +1 -0
README.md CHANGED
@@ -40,6 +40,7 @@ This model is released under a non-commercial license. If you'd like a commercia
40
  | License | CC-BY-NC-4.0 |
41
 
42
  ## How to Use
 
43
 
44
  ### Using Sentence Transformers
45
 
 
40
  | License | CC-BY-NC-4.0 |
41
 
42
  ## How to Use
43
+ > **Breaking change (May 2026):** `model.predict()` now returns raw "Yes" logits instead of sigmoid'd probabilities in `[0, 1]`. Rankings are unchanged. To recover the previous 0-1 score, apply `(scores / 5).sigmoid()` — see the example below. Loading no longer requires `trust_remote_code=True`; passing it is harmless.
44
 
45
  ### Using Sentence Transformers
46