Ogamon commited on
Commit
43f261c
·
verified ·
1 Parent(s): e9f5187

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -8
README.md CHANGED
@@ -60,18 +60,27 @@ with torch.no_grad():
60
 
61
 
62
  ## Citation
63
- Please cite our LREC-COLING2024 paper if you use this model:
64
- (Details updated after submission.)
65
 
66
  ```
67
- @inproceedings{ogasa-2024-lrec-coling,
68
- title = {{Controllable Paraphrase Generation for Semantic and Lexical Similarities}},
69
- author = "Ogasa, Yuya and Kajiwara, Tomoyuki and Arase, Yuki",
70
- booktitle = "The 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation",
 
 
 
 
 
 
 
 
71
  month = may,
72
  year = "2024",
73
  address = "Torino, Italia",
74
- publisher = "Association for Computational Linguistics",
75
- abstract = "We developed a controllable paraphrase generation model for semantic and lexical similarities using a simple and intuitive mechanism: attaching tags to specify these values at the head of the input sentence. Lexically diverse paraphrases have been long coveted for data augmentation. However, their generation is not straightforward because diversifying surfaces easily degrades semantic similarity. Furthermore, our experiments revealed two critical features in data augmentation by paraphrasing: appropriate similarities of paraphrases are highly downstream task-dependent, and mixing paraphrases of various similarities negatively affects the downstream tasks. These features indicated that the controllability in paraphrase generation is crucial for successful data augmentation. We tackled these challenges by fine-tuning a pre-trained sequence-to-sequence model employing tags that indicate the semantic and lexical similarities of synthetic paraphrases selected carefully based on the similarities. The resultant model could paraphrase an input sentence according to the tags specified. Extensive experiments on data augmentation for contrastive learning and pre-fine-tuning of pretrained masked language models confirmed the effectiveness of the proposed model. We release our paraphrase generation model and a corpus of 87 million diverse paraphrases. (https://github.com/Ogamon958/ConPGS)"
 
 
76
  }
77
  ```
 
60
 
61
 
62
  ## Citation
63
+ Please cite [our LREC-COLING2024 paper](https://aclanthology.org/2024.lrec-main.348/) if you use our model or paraphrase corpora:
 
64
 
65
  ```
66
+ @inproceedings{ogasa-etal-2024-controllable-paraphrase,
67
+ title = "Controllable Paraphrase Generation for Semantic and Lexical Similarities",
68
+ author = "Ogasa, Yuya and
69
+ Kajiwara, Tomoyuki and
70
+ Arase, Yuki",
71
+ editor = "Calzolari, Nicoletta and
72
+ Kan, Min-Yen and
73
+ Hoste, Veronique and
74
+ Lenci, Alessandro and
75
+ Sakti, Sakriani and
76
+ Xue, Nianwen",
77
+ booktitle = "Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024)",
78
  month = may,
79
  year = "2024",
80
  address = "Torino, Italia",
81
+ publisher = "ELRA and ICCL",
82
+ url = "https://aclanthology.org/2024.lrec-main.348",
83
+ pages = "3927--3942",
84
+ abstract = "We developed a controllable paraphrase generation model for semantic and lexical similarities using a simple and intuitive mechanism: attaching tags to specify these values at the head of the input sentence. Lexically diverse paraphrases have been long coveted for data augmentation. However, their generation is not straightforward because diversifying surfaces easily degrades semantic similarity. Furthermore, our experiments revealed two critical features in data augmentation by paraphrasing: appropriate similarities of paraphrases are highly downstream task-dependent, and mixing paraphrases of various similarities negatively affects the downstream tasks. These features indicated that the controllability in paraphrase generation is crucial for successful data augmentation. We tackled these challenges by fine-tuning a pre-trained sequence-to-sequence model employing tags that indicate the semantic and lexical similarities of synthetic paraphrases selected carefully based on the similarities. The resultant model could paraphrase an input sentence according to the tags specified. Extensive experiments on data augmentation for contrastive learning and pre-fine-tuning of pretrained masked language models confirmed the effectiveness of the proposed model. We release our paraphrase generation model and a corpus of 87 million diverse paraphrases. (https://github.com/Ogamon958/ConPGS)",
85
  }
86
  ```