Update README.md
Browse files
README.md
CHANGED
@@ -26,10 +26,12 @@ Training is performed via **distillation from human rewrites**, allowing the mod
|
|
26 |
|
27 |
|
28 |
## Usage
|
29 |
-
|
30 |
-
|
|
|
31 |
|
32 |
-
|
|
|
33 |
|
34 |
```python
|
35 |
from transformers import AutoTokenizer, AutoModelForMaskedLM
|
|
|
26 |
|
27 |
|
28 |
## Usage
|
29 |
+
Please refer to the DiSCo github for complete usage [[github]](https://github.com/SimonLupart/disco-conv-splade).
|
30 |
+
|
31 |
+
Below is also an example script for encoding a conversation:
|
32 |
|
33 |
+
> The input format is a flattened version of the conversational history.
|
34 |
+
q_n [SEP] a_{n-1} [SEP] q_{n-1} [SEP] ... [SEP] a_0 [SEP] q_0
|
35 |
|
36 |
```python
|
37 |
from transformers import AutoTokenizer, AutoModelForMaskedLM
|