beyond commited on
Commit
39a830d
1 Parent(s): b691e98

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -1,6 +1,7 @@
1
  ---
2
  language: en
3
  tags:
 
4
  - data augmentation
5
  - keywords-to-text generation
6
  - sketch-to-text generation
@@ -32,7 +33,7 @@ inference:
32
 
33
  **SEGA: SkEtch-based Generative Augmentation**
34
 
35
- SEGA is a **general text augmentation model** that can be used for data augmentation for **various NLP tasks** (including sentiment analysis, topic classification, NER, and QA). SEGA uses an encoder-decoder structure (based on the BART architecture) and is pre-trained on the C4-realnewslike corpus.
36
 
37
  - Paper: [this paper](to_be_added)
38
  - Github: [this repository](to_be_added).
@@ -50,7 +51,7 @@ sketch = "<mask> Conference on Empirical Methods <mask> submission of research p
50
  generated_text = sega(sketch, num_beams=3, do_sample=True, max_length=200)[0]['generated_text']
51
  print(generated_text)
52
  ```
53
-
54
  ```shell
55
  'The Conference on Empirical Methods welcomes the submission of research papers. Abstracts should be in the form of a paper or presentation. Please submit abstracts to the following email address: eemml.stanford.edu. The conference will be held at Stanford University on April 1618, 2019. The theme of the conference is Deep Learning.'
56
  ```
 
1
  ---
2
  language: en
3
  tags:
4
+ - SEGA
5
  - data augmentation
6
  - keywords-to-text generation
7
  - sketch-to-text generation
 
33
 
34
  **SEGA: SkEtch-based Generative Augmentation**
35
 
36
+ **SEGA** is a **general text augmentation model** that can be used for data augmentation for **various NLP tasks** (including sentiment analysis, topic classification, NER, and QA). SEGA uses an encoder-decoder structure (based on the BART architecture) and is pre-trained on the `C4-realnewslike` corpus.
37
 
38
  - Paper: [this paper](to_be_added)
39
  - Github: [this repository](to_be_added).
 
51
  generated_text = sega(sketch, num_beams=3, do_sample=True, max_length=200)[0]['generated_text']
52
  print(generated_text)
53
  ```
54
+ Output:
55
  ```shell
56
  'The Conference on Empirical Methods welcomes the submission of research papers. Abstracts should be in the form of a paper or presentation. Please submit abstracts to the following email address: eemml.stanford.edu. The conference will be held at Stanford University on April 1618, 2019. The theme of the conference is Deep Learning.'
57
  ```