Update README.md
Browse files
README.md
CHANGED
|
@@ -136,7 +136,8 @@ contexts_reranked = sorted(
|
|
| 136 |
)
|
| 137 |
score, contexts_cleaned = zip(
|
| 138 |
*filter(
|
| 139 |
-
lambda x: x[0] >= 0.8
|
|
|
|
| 140 |
)
|
| 141 |
)
|
| 142 |
```
|
|
|
|
| 136 |
)
|
| 137 |
score, contexts_cleaned = zip(
|
| 138 |
*filter(
|
| 139 |
+
lambda x: x[0] >= 0.8,
|
| 140 |
+
contexts_reranked
|
| 141 |
)
|
| 142 |
)
|
| 143 |
```
|