utkarsh4430
commited on
Commit
•
39e6c30
1
Parent(s):
80d20bb
Update README.md
Browse files
README.md
CHANGED
@@ -4,6 +4,8 @@ license: apache-2.0
|
|
4 |
|
5 |
The finetuned BART-Large based model is used to expand abstract sentences. Use the following demo code to generate diverse expansions from abstract inputs.
|
6 |
|
|
|
|
|
7 |
```python
|
8 |
from transformers import pipeline, AutoTokenizer
|
9 |
tokenizer = AutoTokenizer.from_pretrained('utkarsh4430/ABEX-abstract-expand')
|
@@ -16,11 +18,22 @@ for f in range(5):
|
|
16 |
print(f'Aug {f}: ', generated_text[0]['generated_text'])
|
17 |
```
|
18 |
|
19 |
-
Example output:
|
20 |
```
|
21 |
Aug 0: WWE stars to visit Detroit on January 20th for the second time in three years, with appearances at The Battle at the Fox Sports 1 World Headquarters, and proceeds going to a charity of your choice.
|
22 |
Aug 1: A one-on-one experience at the WWE Creative Conference in New Jersey was provided, with an opportunity for the audience to meet WWE superstars and support a good cause.
|
23 |
Aug 2: Sindrun welcomes WWE star Chris Jericho and hosts an event for attendees to meet WWE stars and support a local cause.
|
24 |
Aug 3: Find out if you can meet WWE stars, including the Rock and Shake, at a benefit luncheon.
|
25 |
Aug 4: The WWE Talent Showcase 2019 will feature exciting moments inside the WWE Studios, including the first one in over a decade, and features a chance to hug current and former stars and receive a check from a corporate sponsor.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
```
|
|
|
4 |
|
5 |
The finetuned BART-Large based model is used to expand abstract sentences. Use the following demo code to generate diverse expansions from abstract inputs.
|
6 |
|
7 |
+
# Code
|
8 |
+
|
9 |
```python
|
10 |
from transformers import pipeline, AutoTokenizer
|
11 |
tokenizer = AutoTokenizer.from_pretrained('utkarsh4430/ABEX-abstract-expand')
|
|
|
18 |
print(f'Aug {f}: ', generated_text[0]['generated_text'])
|
19 |
```
|
20 |
|
21 |
+
# Example output:
|
22 |
```
|
23 |
Aug 0: WWE stars to visit Detroit on January 20th for the second time in three years, with appearances at The Battle at the Fox Sports 1 World Headquarters, and proceeds going to a charity of your choice.
|
24 |
Aug 1: A one-on-one experience at the WWE Creative Conference in New Jersey was provided, with an opportunity for the audience to meet WWE superstars and support a good cause.
|
25 |
Aug 2: Sindrun welcomes WWE star Chris Jericho and hosts an event for attendees to meet WWE stars and support a local cause.
|
26 |
Aug 3: Find out if you can meet WWE stars, including the Rock and Shake, at a benefit luncheon.
|
27 |
Aug 4: The WWE Talent Showcase 2019 will feature exciting moments inside the WWE Studios, including the first one in over a decade, and features a chance to hug current and former stars and receive a check from a corporate sponsor.
|
28 |
+
```
|
29 |
+
|
30 |
+
# Citation instructions:
|
31 |
+
```
|
32 |
+
@inproceedings{
|
33 |
+
ghosh2024abex,
|
34 |
+
title={{ABEX}: Data Augmentation for Low-Resource {NLU} via Expanding Abstract Descriptions},
|
35 |
+
author={Sreyan Ghosh and Utkarsh Tyagi and Sonal Kumar and Chandra Kiran Reddy Evuru and and Ramaneswaran S and S Sakshi and Dinesh Manocha},
|
36 |
+
booktitle={The 62nd Annual Meeting of the Association for Computational Linguistics},
|
37 |
+
year={2024},
|
38 |
+
}
|
39 |
```
|