File size: 1,286 Bytes
6cb7ea7 59488c8 8b77f29 59488c8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
---
license: mit
---
Note: This model may not perfectly replicate the numbers mentioned in the paper (\cite{chopra-ghosh-2021-term}) as unlike the original one it has been trained with lower batches sizes for fewer epochs.
The source code for training will son be made available in https://github.com/sohomghosh/FinSim_Financial_Hypernym_detection
```bibtex
@inproceedings{chopra-ghosh-2021-term,
title = "Term Expansion and {F}in{BERT} fine-tuning for Hypernym and Synonym Ranking of Financial Terms",
author = "Chopra, Ankush and
Ghosh, Sohom",
booktitle = "Proceedings of the Third Workshop on Financial Technology and Natural Language Processing (FinNLP@IJCAI 2021)",
month = "Aug ",
year = "2021",
address = "Online",
publisher = "-",
url = "https://aclanthology.org/2021.finnlp-1.8",
pages = "46--51",
}
```
Use the following code to import this in Transformers:
```python
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("sohomghosh/LIPI_FinSim3_Hypernym")
model = AutoModel.from_pretrained("sohomghosh/LIPI_FinSim3_Hypernym")
#Using SentenceTransformers
from sentence_transformers import SentenceTransformer
model_finlipi = SentenceTransformer('sohomghosh/LIPI_FinSim3_Hypernym')
``` |