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