p208p2002 commited on
Commit
7bc3837
1 Parent(s): 8ad5b45

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ |task_no|task_name |score|
4
+ |-------|----------------------|-----|
5
+ |qa1 |single-supporting-fact|100 |
6
+ |qa2 |two-supporting-facts |99.4 |
7
+ |qa3 |three-supporting-facts|62.0 |
8
+ |qa4 |two-arg-relations |100 |
9
+ |qa5 |three-arg-relations |96.0 |
10
+ |qa6 |yes-no-questions |100 |
11
+ |qa7 |counting |100 |
12
+ |qa8 |lists-sets |95.6 |
13
+ |qa9 |simple-negation |100 |
14
+ |qa10 | indefinite-knowledge |100 |
15
+ |qa11 | basic-coreference |100 |
16
+ |qa12 | conjunction |100 |
17
+ |qa13 | compound-coreference |100 |
18
+ |qa14 | time-reasoning |100 |
19
+ |qa15 | basic-deduction |100 |
20
+ |qa16 | basic-induction |100 |
21
+ |qa17 | positional-reasoning |100 |
22
+ |qa18 | size-reasoning |100 |
23
+ |qa19 | path-finding |100 |
24
+ |qa20 | agents-motivations |100 |
25
+
26
+ ```python
27
+ # Please use with the follow template
28
+
29
+ INPUT_TEMPLATE = """
30
+ Context:
31
+ {context}
32
+
33
+ Question:
34
+ {question}
35
+
36
+ Answer:
37
+ {answer}
38
+ """
39
+
40
+ input_text = INPUT_TEMPLATE.format_map({
41
+ "context":context,
42
+ "question":question,
43
+ "answer":answer
44
+ }).strip()
45
+ ```