Fix a snippet
#1
by
tomaarsen
HF Staff
- opened
README.md
CHANGED
|
@@ -114,7 +114,7 @@ Finally, if you want to extract individula vectors, you can use the model this w
|
|
| 114 |
```python
|
| 115 |
from colbert.modeling.checkpoint import Checkpoint
|
| 116 |
|
| 117 |
-
ckpt = Checkpoint(answerdotai/answerai-colbert-small-v1", colbert_config=ColBERTConfig())
|
| 118 |
embedded_query = ckpt.queryFromText(["Who dubs Howl's in English?"], bsize=16)
|
| 119 |
```
|
| 120 |
|
|
|
|
| 114 |
```python
|
| 115 |
from colbert.modeling.checkpoint import Checkpoint
|
| 116 |
|
| 117 |
+
ckpt = Checkpoint("answerdotai/answerai-colbert-small-v1", colbert_config=ColBERTConfig())
|
| 118 |
embedded_query = ckpt.queryFromText(["Who dubs Howl's in English?"], bsize=16)
|
| 119 |
```
|
| 120 |
|