p208p2002 commited on
Commit
6545eb9
1 Parent(s): 1908216

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -11
README.md CHANGED
@@ -1,23 +1,26 @@
1
  # Transformer QG on SQuAD
2
- The inputs of the model refers to
3
- ```
4
- we integrate C and A into a new C' in the following form.
5
- C' = [c1, c2, ..., [HL], a1, ..., a|A|, [HL], ..., c|C|]
6
- ```
7
- > Proposed by [Ying-Hong Chan & Yao-Chung Fan. (2019). A Re-current BERT-based Model for Question Generation.](https://www.aclweb.org/anthology/D19-5821/)
8
 
9
  More detail: [p208p2002/Transformer-QG-on-SQuAD](https://github.com/p208p2002/Transformer-QG-on-SQuAD)
10
 
11
- ## Features
12
- - Fully pipline from fine-tune to evaluation
13
- - Support most of state of the art models
14
- - Fast deploy as a API server
 
 
 
 
 
 
15
 
16
  ## Data setting
17
  We report two dataset setting as Follow
18
 
19
  ### SQuAD
20
- - train: 87599
21
  - validation: 10570
22
  > [SQuAD: 100,000+ Questions for Machine Comprehension of Text](https://arxiv.org/abs/1606.05250)
23
 
1
  # Transformer QG on SQuAD
2
+ HLQG is Proposed by [Ying-Hong Chan & Yao-Chung Fan. (2019). A Re-current BERT-based Model for Question Generation.](https://www.aclweb.org/anthology/D19-5821/)
3
+
4
+ **This is a Reproduce Version**
 
 
 
5
 
6
  More detail: [p208p2002/Transformer-QG-on-SQuAD](https://github.com/p208p2002/Transformer-QG-on-SQuAD)
7
 
8
+ ## Usage
9
+ ### Input Format
10
+ ```
11
+ C' = [c1, c2, ..., [HL], a1, ..., a|A|, [HL], ..., c|C|]
12
+ ```
13
+ ### Input Example
14
+ ```
15
+ Harry Potter is a series of seven fantasy novels written by British author, [HL]J. K. Rowling[HL].
16
+ ```
17
+ > # Who wrote Harry Potter?
18
 
19
  ## Data setting
20
  We report two dataset setting as Follow
21
 
22
  ### SQuAD
23
+ - train: 87599\\t
24
  - validation: 10570
25
  > [SQuAD: 100,000+ Questions for Machine Comprehension of Text](https://arxiv.org/abs/1606.05250)
26