Update README.md
Browse files
README.md
CHANGED
@@ -131,6 +131,14 @@ print("Score of program with 3 errors:", rm_scores[0].item())
|
|
131 |
print("Score of program with 2 errors:", rm_scores[1].item())
|
132 |
print("Score of program with 1 errors:", rm_scores[2].item())
|
133 |
print("Score of correct program:", rm_scores[3].item())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
```
|
135 |
|
136 |
|
|
|
131 |
print("Score of program with 2 errors:", rm_scores[1].item())
|
132 |
print("Score of program with 1 errors:", rm_scores[2].item())
|
133 |
print("Score of correct program:", rm_scores[3].item())
|
134 |
+
"""
|
135 |
+
RM Scores: tensor([-20.5058, -1.7867, 0.4395, 23.0689], device='cuda:0',
|
136 |
+
grad_fn=<SqueezeBackward0>)
|
137 |
+
Score of program with 3 errors: -20.505754470825195
|
138 |
+
Score of program with 2 errors: -1.7866804599761963
|
139 |
+
Score of program with 1 errors: 0.43949759006500244
|
140 |
+
Score of correct program: 23.068859100341797
|
141 |
+
"""
|
142 |
```
|
143 |
|
144 |
|