FrancescoPeriti commited on
Commit
40120ff
·
verified ·
1 Parent(s): 0abe2c8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -9
README.md CHANGED
@@ -21,7 +21,7 @@ You will need to login with your hugginface token (```[HF-TOKEN]```, in the foll
21
  ### Model Description
22
  This model is fine-tuned on English datasets of sense definitions. Given a target word and a usage example, the model generates a sense definition for the target word in-context.
23
 
24
- You can find more details in the paper [Automatically Generated Definitions and their utility for Modeling Word Meaning](link) by Francesco Periti, David Alfter, Nina Tahmasebi.
25
  The repository of our project is [https://github.com/FrancescoPeriti/LlamaDictionary](https://github.com/FrancescoPeriti/LlamaDictionary).
26
 
27
  ## Uses
@@ -154,16 +154,21 @@ for row in dataset:
154
 
155
  ## Citation
156
 
157
- Francesco Periti, David Alfter, and Nina Tahmasebi. 2024. Automatically Generated Definitions and their utility for Modeling Word Meaning. In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, Miami. Association for Computational Linguistics.
158
 
159
  **BibTeX:**
160
  ```
161
- @InProceedings{periti2024automatically,
162
- author = {Francesco Periti and David Alfter and Nina Tahmasebi},
163
- title = {{Automatically Generated Definitions and their Utility for Modeling Word Meaning}},
164
- booktitle = {Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing},
165
- year = {2024},
166
- address = {Miami, Florida},
167
- publisher = {Association for Computational Linguistics}
 
 
 
 
 
168
  }
169
  ```
 
21
  ### Model Description
22
  This model is fine-tuned on English datasets of sense definitions. Given a target word and a usage example, the model generates a sense definition for the target word in-context.
23
 
24
+ You can find more details in the paper [Automatically Generated Definitions and their utility for Modeling Word Meaning](https://aclanthology.org/2024.emnlp-main.776/) by Francesco Periti, David Alfter, Nina Tahmasebi.
25
  The repository of our project is [https://github.com/FrancescoPeriti/LlamaDictionary](https://github.com/FrancescoPeriti/LlamaDictionary).
26
 
27
  ## Uses
 
154
 
155
  ## Citation
156
 
157
+ Francesco Periti, David Alfter, and Nina Tahmasebi. 2024. [Automatically Generated Definitions and their utility for Modeling Word Meaning](https://aclanthology.org/2024.emnlp-main.776/). In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, pages 14008–14026, Miami, Florida, USA. Association for Computational Linguistics.
158
 
159
  **BibTeX:**
160
  ```
161
+ @inproceedings{periti2024automatically,
162
+ title = {{Automatically Generated Definitions and their utility for Modeling Word Meaning}},
163
+ author = "Periti, Francesco and Alfter, David and Tahmasebi, Nina",
164
+ editor = "Al-Onaizan, Yaser and Bansal, Mohit and Chen, Yun-Nung",
165
+ booktitle = "Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing",
166
+ month = nov,
167
+ year = "2024",
168
+ address = "Miami, Florida, USA",
169
+ publisher = "Association for Computational Linguistics",
170
+ url = "https://aclanthology.org/2024.emnlp-main.776",
171
+ pages = "14008--14026",
172
+ abstract = "Modeling lexical semantics is a challenging task, often suffering from interpretability pitfalls. In this paper, we delve into the generation of dictionary-like sense definitions and explore their utility for modeling word meaning. We fine-tuned two Llama models and include an existing T5-based model in our evaluation. Firstly, we evaluate the quality of the generated definitions on existing English benchmarks, setting new state-of-the-art results for the Definition Generation task. Next, we explore the use of definitions generated by our models as intermediate representations subsequently encoded as sentence embeddings. We evaluate this approach on lexical semantics tasks such as the Word-in-Context, Word Sense Induction, and Lexical Semantic Change, setting new state-of-the-art results in all three tasks when compared to unsupervised baselines.",
173
  }
174
  ```