gramirez-prompsit commited on
Commit
f004aab
1 Parent(s): 1a86eb3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -2
README.md CHANGED
@@ -23,7 +23,9 @@ Resulting probabilities correspond to classes:
23
  * 1: It's a paraphrase
24
 
25
 
26
- You can use the model like this:
 
 
27
 
28
  ```
29
  import torch
@@ -41,4 +43,5 @@ Code output is:
41
  ```
42
  tensor([[0.1592, 0.8408]], grad_fn=<SoftmaxBackward>)
43
  ```
44
- As the probability of 1 is 0.84, we can conclude from the previous example that "could be included" is paraphrase of "may be addressed".
 
 
23
  * 1: It's a paraphrase
24
 
25
 
26
+
27
+ So, considering the phrase "may be addressed" and a candidate paraphrase like "could be included", you can use the model like this:
28
+
29
 
30
  ```
31
  import torch
 
43
  ```
44
  tensor([[0.1592, 0.8408]], grad_fn=<SoftmaxBackward>)
45
  ```
46
+
47
+ As the probability of 1 (=It's a paraphrase) is 0.84 and the probability of 0 (=It is not a paraphrase) is 0.15, we can conclude, for our previous example that "could be included" is a paraphrase of "may be addressed".