slupart commited on
Commit
8d32e7e
·
verified ·
1 Parent(s): fddd7f8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -3
README.md CHANGED
@@ -25,10 +25,12 @@ Training is performed via **distillation from multiple teachers: human and [Mist
25
 
26
 
27
  ## Usage
28
- The input format is a flattened version of the conversational history.
29
- q_n [SEP] a_{n-1} [SEP] q_{n-1} [SEP] ... [SEP] a_0 [SEP] q_0
 
30
 
31
- Below is an example script for encoding a conversation:
 
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