Views
No views yet
1@inproceedings{chopra-ghosh-2021-term,
2 title = "Term Expansion and {F}in{BERT} fine-tuning for Hypernym and Synonym Ranking of Financial Terms",
3 author = "Chopra, Ankush and
4 Ghosh, Sohom",
5 booktitle = "Proceedings of the Third Workshop on Financial Technology and Natural Language Processing (FinNLP@IJCAI 2021)",
6 month = "Aug ",
7 year = "2021",
8 address = "Online",
9 publisher = "-",
10 url = "https://aclanthology.org/2021.finnlp-1.8",
11 pages = "46--51",
12}1from transformers import AutoTokenizer, AutoModel
2
3tokenizer = AutoTokenizer.from_pretrained("sohomghosh/LIPI_FinSim3_Hypernym")
4
5model = AutoModel.from_pretrained("sohomghosh/LIPI_FinSim3_Hypernym")
6
7
8#Using SentenceTransformers
9from sentence_transformers import SentenceTransformer
10model_finlipi = SentenceTransformer('sohomghosh/LIPI_FinSim3_Hypernym')