MLNavigator commited on
Commit
a292019
1 Parent(s): 0291804

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -18,4 +18,16 @@ Dataset consists of 45278 examples in russian language of format:
18
  'context': 'text of 4-10 text chunks, one with right answer and others relevant with text and question on tematic and keywords'
19
  }
20
 
21
- Length of one example of context + question + answer is less than 7000 symbols. It should be less than 2048 tokens of rugpt tokenizer.
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  'context': 'text of 4-10 text chunks, one with right answer and others relevant with text and question on tematic and keywords'
19
  }
20
 
21
+ Length of one example of context + question + answer is less than 7000 symbols. It should be less than 2048 tokens of rugpt tokenizer.
22
+
23
+ File retrieval_dataset_src.jsonl has additionally SOURCE data for every text chunk in context, also SOURCE of right answer is set in answer.
24
+ This variant of dataset is useful if you need extract answer with specifing source of the right answer.
25
+
26
+ {
27
+ 'text': 'text with correct answer',
28
+ 'q': 'question text',
29
+ 'a': 'correct answer text with SOURCE data of text',
30
+ 'context': 'text of 4-10 text chunks, one with right answer and others relevant with text and question on tematic and keywords.
31
+ Each of text chunks has it's own SOURCE data'
32
+ }
33
+ All SOURCE data are sintetic generated and not real.