qlemesle commited on
Commit
50bd00a
·
1 Parent(s): b6b235b

desc + bib

Browse files
Files changed (1) hide show
  1. parapluie.py +25 -5
parapluie.py CHANGED
@@ -19,16 +19,36 @@ import datasets
19
 
20
  # TODO: Add BibTeX citation
21
  _CITATION = """\
22
- @InProceedings{huggingface:module,
23
- title = {A great new module},
24
- authors={huggingface, Inc.},
25
- year={2020}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  }
27
  """
28
 
29
  # TODO: Add description of the module here
30
  _DESCRIPTION = """\
31
- This new module is designed to solve this great ML task and is crafted with a lot of care.
 
 
32
  """
33
 
34
 
 
19
 
20
  # TODO: Add BibTeX citation
21
  _CITATION = """\
22
+ @inproceedings{lemesle-etal-2025-paraphrase,
23
+ title = "Paraphrase Generation Evaluation Powered by an {LLM}: A Semantic Metric, Not a Lexical One",
24
+ author = "Lemesle, Quentin and
25
+ Chevelu, Jonathan and
26
+ Martin, Philippe and
27
+ Lolive, Damien and
28
+ Delhay, Arnaud and
29
+ Barbot, Nelly",
30
+ editor = "Rambow, Owen and
31
+ Wanner, Leo and
32
+ Apidianaki, Marianna and
33
+ Al-Khalifa, Hend and
34
+ Eugenio, Barbara Di and
35
+ Schockaert, Steven",
36
+ booktitle = "Proceedings of the 31st International Conference on Computational Linguistics",
37
+ month = jan,
38
+ year = "2025",
39
+ address = "Abu Dhabi, UAE",
40
+ publisher = "Association for Computational Linguistics",
41
+ url = "https://aclanthology.org/2025.coling-main.538/",
42
+ pages = "8057--8087",
43
+ abstract = "Evaluating automatic paraphrase production systems is a difficult task as it involves, among other things, assessing the semantic proximity between two sentences. Usual measures are based on lexical distances, or at least on semantic embedding alignments. The rise of Large Language Models (LLM) has provided tools to model relationships within a text thanks to the attention mechanism. In this article, we introduce ParaPLUIE, a new measure based on a log likelihood ratio from an LLM, to assess the quality of a potential paraphrase. This measure is compared with usual measures on two known by the NLP community datasets prior to this study. Three new small datasets have been built to allow metrics to be compared in different scenario and to avoid data contamination bias. According to evaluations, the proposed measure is better for sorting pairs of sentences by semantic proximity. In particular, it is much more independent to lexical distance and provides an interpretable classification threshold between paraphrases and non-paraphrases."
44
  }
45
  """
46
 
47
  # TODO: Add description of the module here
48
  _DESCRIPTION = """\
49
+ ParaPLUIE is a metric for evaluating the semantic proximity of two sentences.
50
+ ParaPLUIE use the perplexity of an LLM to compute a confidence score.
51
+ It has shown the highest correlation with human judgement on paraphrase classification meanwhile reamin the computional cost low as it roughtly equal to one token generation cost.
52
  """
53
 
54