Update README.md
Browse filesflag breaking change in `predict()` return semantics.
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 |
|