Skip to content

Commit

Permalink
Update README to fix bug (castorini#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
Narabzad authored Aug 15, 2020
1 parent f7f8c49 commit ed2f1e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,5 @@ reranked.sort(key=lambda x: x.score, reverse=True)

# Print out reranked results:
for i in range(0, 10):
print(f'{i+1:2} {texts[i].metadata["docid"]:15} {reranked[i].score:.5f} {reranked[i].text}')
print(f'{i+1:2} {reranked[i].metadata["docid"]:15} {reranked[i].score:.5f} {reranked[i].text}')
```

0 comments on commit ed2f1e6

Please sign in to comment.