rubenwol commited on
Commit
4931914
1 Parent(s): b0fc40d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -1
README.md CHANGED
@@ -5,7 +5,10 @@ widget:
5
 
6
  # SuperPAL model
7
 
8
- Use in Transformers
 
 
 
9
 
10
  ```python
11
  from transformers import AutoTokenizer, AutoModelForSequenceClassification
@@ -13,4 +16,22 @@ from transformers import AutoTokenizer, AutoModelForSequenceClassification
13
  tokenizer = AutoTokenizer.from_pretrained("biu-nlp/superpal")
14
 
15
  model = AutoModelForSequenceClassification.from_pretrained("biu-nlp/superpal")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ```
 
5
 
6
  # SuperPAL model
7
 
8
+ Summary-Source Proposition-level Alignment: Task, Datasets and Supervised Baseline
9
+ Ori Ernst, Ori Shapira, Ramakanth Pasunuru, Michael Lepioshkin, Jacob Goldberger, Mohit Bansal, Ido Dagan, 2021. [PDF](https://arxiv.org/pdf/2009.00590)
10
+
11
+ #How to use?
12
 
13
  ```python
14
  from transformers import AutoTokenizer, AutoModelForSequenceClassification
 
16
  tokenizer = AutoTokenizer.from_pretrained("biu-nlp/superpal")
17
 
18
  model = AutoModelForSequenceClassification.from_pretrained("biu-nlp/superpal")
19
+ ```
20
+
21
+
22
+
23
+ The original repo is [here](https://github.com/oriern/SuperPAL).
24
+
25
+
26
+ If you find our work useful, please cite the paper as:
27
+
28
+ ```python
29
+ @misc{ernst2021summarysource,
30
+ title={Summary-Source Proposition-level Alignment: Task, Datasets and Supervised Baseline},
31
+ author={Ori Ernst and Ori Shapira and Ramakanth Pasunuru and Michael Lepioshkin and Jacob Goldberger and Mohit Bansal and Ido Dagan},
32
+ year={2021},
33
+ eprint={2009.00590},
34
+ archivePrefix={arXiv},
35
+ primaryClass={cs.CL}
36
+ }
37
  ```