Update README.md
Browse files
README.md
CHANGED
@@ -4,7 +4,7 @@ inference:
|
|
4 |
do_sample: true
|
5 |
max_length: 512
|
6 |
top_p: 0.9
|
7 |
-
repetition_penalty: 1.
|
8 |
language:
|
9 |
- en
|
10 |
license: mit
|
@@ -40,7 +40,7 @@ widget:
|
|
40 |
|
41 |
**Our [full model](https://huggingface.co/haining/scientific_abstract_simplification) is out!🎉🎉🎉 It leverages the power of multi-instruction finetuning and beats the baseline by a margin. Use the [full model](https://huggingface.co/haining/scientific_abstract_simplification) unless the goal is comparison.**
|
42 |
|
43 |
-
Scientific Abstract Simplification
|
44 |
|
45 |
Try it now with the Hosted inference API on the right.
|
46 |
You can choose an existing example or paste in any (perhaps full-of-jargon) abstract. Remember to prepend the instruction to the abstract ("summarize, simplify, and contextualize: "; notice, there is a whitespace after the colon). Local use refers to Section [Usage](#Usage).
|
@@ -145,18 +145,19 @@ Implementations of SacreBLEU, BERT Score, ROUGLE, METEOR, and SARI are from Hugg
|
|
145 |
|
146 |
## Results
|
147 |
|
|
|
|
|
148 |
| Metrics | SAS-baseline |
|
149 |
|----------------|-------------------|
|
150 |
-
| SacreBLEU↑ |
|
151 |
-
| BERT Score F1↑ |
|
152 |
-
| ROUGLE-1↑ |
|
153 |
-
| ROUGLE-2↑ |
|
154 |
-
| ROUGLE-L↑ |
|
155 |
-
| METEOR↑ |
|
156 |
-
| SARI↑ | 46.
|
157 |
-
| ARI
|
158 |
-
|
159 |
-
* Note: Half of the generated texts are too short (less than 100 words) to calcualte meaningful ARI. We therefore concatenated adjecent two texts and compute ARI for the 100 texts (instead of original 200 texts).
|
160 |
|
161 |
|
162 |
# Contact
|
@@ -165,7 +166,7 @@ Please [contact us](mailto:hw56@indiana.edu) for any questions or suggestions.
|
|
165 |
|
166 |
# Disclaimer
|
167 |
|
168 |
-
|
169 |
|
170 |
|
171 |
# Acknowledgement
|
|
|
4 |
do_sample: true
|
5 |
max_length: 512
|
6 |
top_p: 0.9
|
7 |
+
repetition_penalty: 1.0
|
8 |
language:
|
9 |
- en
|
10 |
license: mit
|
|
|
40 |
|
41 |
**Our [full model](https://huggingface.co/haining/scientific_abstract_simplification) is out!🎉🎉🎉 It leverages the power of multi-instruction finetuning and beats the baseline by a margin. Use the [full model](https://huggingface.co/haining/scientific_abstract_simplification) unless the goal is comparison.**
|
42 |
|
43 |
+
Scientific Abstract Simplification rewrites hard-to-read scientific abstracts😵 into more simpler yet relevant scientific stories😇. We hope our model can make scientific knowledge accessible for everyone🤗.
|
44 |
|
45 |
Try it now with the Hosted inference API on the right.
|
46 |
You can choose an existing example or paste in any (perhaps full-of-jargon) abstract. Remember to prepend the instruction to the abstract ("summarize, simplify, and contextualize: "; notice, there is a whitespace after the colon). Local use refers to Section [Usage](#Usage).
|
|
|
145 |
|
146 |
## Results
|
147 |
|
148 |
+
We tested our model on the SAS test set (200 samples). We generate 10 lay summaries based on each sample's abstract. During generation, we used top-p sampling with p=0.9. The mean performance is reported below.
|
149 |
+
|
150 |
| Metrics | SAS-baseline |
|
151 |
|----------------|-------------------|
|
152 |
+
| SacreBLEU↑ | 18.43 |
|
153 |
+
| BERT Score F1↑ | 89.31 |
|
154 |
+
| ROUGLE-1↑ | 48.14 |
|
155 |
+
| ROUGLE-2↑ | 22.96 |
|
156 |
+
| ROUGLE-L↑ | 32.29 |
|
157 |
+
| METEOR↑ | 39.04 |
|
158 |
+
| SARI↑ | 46.68 |
|
159 |
+
| ARI↓ | 17.27 |
|
160 |
+
Note: 1. Some generated texts are too short (less than 100 words) to calcualte meaningful ARI. We therefore concatenated adjecent five texts and compute ARI for the 400 longer texts (instead of original 2,000 texts). 2. BERT score, ROUGE, and METEOR are multiplied by 100.
|
|
|
161 |
|
162 |
|
163 |
# Contact
|
|
|
166 |
|
167 |
# Disclaimer
|
168 |
|
169 |
+
This model is created for making scientific abstracts more accessible. Its outputs should not be used or trusted outside of its scope. There is no guarantee that the generated text is perfectly aligned with the research. Resort to human experts or original papers when a decision is critical.
|
170 |
|
171 |
|
172 |
# Acknowledgement
|