sohomghosh commited on
Commit
59488c8
1 Parent(s): bad445b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md CHANGED
@@ -1,3 +1,32 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ 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.
6
+
7
+ The source code for training will son be made available in https://github.com/sohomghosh/FinSim_Financial_Hypernym_detection
8
+
9
+
10
+ ```bibtex
11
+ @inproceedings{chopra-ghosh-2021-term,
12
+ title = "Term Expansion and {F}in{BERT} fine-tuning for Hypernym and Synonym Ranking of Financial Terms",
13
+ author = "Chopra, Ankush and
14
+ Ghosh, Sohom",
15
+ booktitle = "Proceedings of the Third Workshop on Financial Technology and Natural Language Processing (FinNLP@IJCAI 2021)",
16
+ month = "Aug ",
17
+ year = "2021",
18
+ address = "Online",
19
+ publisher = "-",
20
+ url = "https://aclanthology.org/2021.finnlp-1.8",
21
+ pages = "46--51",
22
+ }
23
+ ```
24
+
25
+ Use the following code to import this in Transformers:
26
+ ```python
27
+ from transformers import AutoTokenizer, AutoModel
28
+
29
+ tokenizer = AutoTokenizer.from_pretrained("sohomghosh/LIPI_FinSim3_Hypernym")
30
+
31
+ model = AutoModel.from_pretrained("sohomghosh/LIPI_FinSim3_Hypernym")
32
+ ```