Update README.md
Browse files
README.md
CHANGED
@@ -49,6 +49,7 @@ with torch.no_grad():
|
|
49 |
scores = model(**features).logits
|
50 |
|
51 |
# The scores are raw logits, these can be transformed into probabilities using the sigmoid function
|
|
|
52 |
print(scores)
|
53 |
print(F.sigmoid(scores))
|
54 |
```
|
|
|
49 |
scores = model(**features).logits
|
50 |
|
51 |
# The scores are raw logits, these can be transformed into probabilities using the sigmoid function
|
52 |
+
# Higher values are higher relevance
|
53 |
print(scores)
|
54 |
print(F.sigmoid(scores))
|
55 |
```
|