hivaze commited on
Commit
92a78d5
1 Parent(s): fc178fd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -7
README.md CHANGED
@@ -31,25 +31,23 @@ configs:
31
 
32
  This is a dataset created for training Russian-language Seq2Seq and CLM models primarily for tasks related to Closed-Domain QA.
33
 
34
- The dataset includes 3 main tasks and one additional one:
35
  1. AAQG (Answer-Aware Question Answering) - generation of questions based on context, provided the answer is known
36
  2. QG - generating questions based on context, without a known answer
37
  3. QA - the standard task of answering a question based on context.
38
- 4. Instuct - an additional task for following instructions, intended as an auxiliary task for the model to better follow different instructions, but this is not its main task.
39
 
40
- AAQG, QG, QA tasks are generated based on regular datasets for which the context, question and correct answer are known. They are generated in a ratio of 0.5, 0.2 and 0.3, respectively.
41
 
42
  List of datasets used to compile this dataset:
43
  1. sberquad
44
  2. russian_super_glue/muserc
45
  3. russian_super_glue/danetqa
46
- 4. 1/5 of SiberiaSoft/SiberianInstructions-small - for instructions
47
 
48
  Prompts used for QA tasks:
49
  ```python
50
- AAQG_PROMPT = "Сгенерируй вопрос по тексту, используя известный ответ на него.\nТекст: {context}\nОтвет: {answer}"
51
- QG_PROMPT = "Сгенерируй вопрос по тексту.\nТекст: {context}"
52
- QA_PROMPT = "Сгенерируй ответ на вопрос по тексту.\nТекст: {context}\nВопрос: {question}"
53
  ```
54
 
55
  ### Authors
 
31
 
32
  This is a dataset created for training Russian-language Seq2Seq and CLM models primarily for tasks related to Closed-Domain QA.
33
 
34
+ The dataset includes 3 main tasks:
35
  1. AAQG (Answer-Aware Question Answering) - generation of questions based on context, provided the answer is known
36
  2. QG - generating questions based on context, without a known answer
37
  3. QA - the standard task of answering a question based on context.
 
38
 
39
+ AAQG, QG, QA tasks are generated based on regular datasets for which the context, question and correct answer are known. They are generated in a ratio of 0.4, 0.3 and 0.3, respectively.
40
 
41
  List of datasets used to compile this dataset:
42
  1. sberquad
43
  2. russian_super_glue/muserc
44
  3. russian_super_glue/danetqa
 
45
 
46
  Prompts used for QA tasks:
47
  ```python
48
+ AAQG_PROMPT = """AAQG | Текст: '{context}'. Ответ: '{answer}'"""
49
+ QG_PROMPT = """QG | Текст: '{context}'"""
50
+ QA_PROMPT = """QA | Текст: '{context}'. Вопрос: '{question}'"""
51
  ```
52
 
53
  ### Authors