idea-teacher
commited on
Commit
•
3c9007b
1
Parent(s):
1f835ed
Update README.md
Browse files
README.md
CHANGED
@@ -182,7 +182,7 @@ with torch.no_grad():
|
|
182 |
test_representation = torch.mean(training_outputs.hidden_states[-1].squeeze(), dim=0)
|
183 |
|
184 |
# Calculate similarity scores
|
185 |
-
similarity_score = cos(
|
186 |
```
|
187 |
|
188 |
## 引用 Citation
|
|
|
182 |
test_representation = torch.mean(training_outputs.hidden_states[-1].squeeze(), dim=0)
|
183 |
|
184 |
# Calculate similarity scores
|
185 |
+
similarity_score = cos(training_representation, test_representation)
|
186 |
```
|
187 |
|
188 |
## 引用 Citation
|