KennethTM commited on
Commit
2ab50bf
1 Parent(s): 57c31ca

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -0
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
  ```