Ok verovatno finalni pull request

#6
Files changed (1) hide show
  1. README.md +23 -2
README.md CHANGED
@@ -26,7 +26,12 @@ library_name: transformers
26
  # Zero and few shot NER for biomedical texts
27
 
28
  ## Model description
29
- Model takes as input two strings. String1 is NER label. String1 must be phrase for entity. String2 is short text where String1 is searched for semantically.
 
 
 
 
 
30
  model outputs list of zeros and ones corresponding to the occurance of Named Entity and corresponing to the tokens(tokens given by transformer tokenizer) of the Sring2.
31
 
32
  ## Example of usage
@@ -94,4 +99,20 @@ On top of this, one can use the model in zero-shot regime with other classes, an
94
 
95
  Code used for training and testing the model is available at https://github.com/br-ai-ns-institute/Zero-ShotNER
96
 
97
- ## Citation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  # Zero and few shot NER for biomedical texts
27
 
28
  ## Model description
29
+
30
+ This model was created during the research collaboration between Bayer Pharma and Serbian Institute for Artificial Intelligence Research and Development.
31
+ The model is trained on about 25+ biomedical NER classes and can perform also zero-shot inference and can be further fine-tuned for new classes with just few examples (few-shot learning).
32
+ For more details about our methods please see the paper named ["A transformer-based method for zero and few-shot biomedical named entity recognition"](https://arxiv.org/abs/2305.04928).
33
+
34
+ Model takes as input two strings. String1 is NER label that is being searched in second string. String1 must be phrase for entity. String2 is short text where String1 is searched for semantically.
35
  model outputs list of zeros and ones corresponding to the occurance of Named Entity and corresponing to the tokens(tokens given by transformer tokenizer) of the Sring2.
36
 
37
  ## Example of usage
 
99
 
100
  Code used for training and testing the model is available at https://github.com/br-ai-ns-institute/Zero-ShotNER
101
 
102
+ ## Citation
103
+
104
+ If you use this model, or are inspired by it, please cite in your paper the following paper:
105
+
106
+ Košprdić M.,Prodanović N., Ljajić A., Bašaragin B., Milošević N., 2023. A transformer-based method for zero and few-shot biomedical named entity recognition. arXiv preprint arXiv:2305.04928. https://arxiv.org/abs/2305.04928
107
+
108
+ or in bibtex:
109
+ ```
110
+ @misc{kosprdic2023transformerbased,
111
+ title={A transformer-based method for zero and few-shot biomedical named entity recognition},
112
+ author={Miloš Košprdić and Nikola Prodanović and Adela Ljajić and Bojana Bašaragin and Nikola Milošević},
113
+ year={2023},
114
+ eprint={2305.04928},
115
+ archivePrefix={arXiv},
116
+ primaryClass={cs.CL}
117
+ }
118
+ ```