andrewzamai
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -148,4 +148,20 @@ sampling_params = SamplingParams(temperature=0, max_tokens=128)
|
|
148 |
|
149 |
prompts = [prompter.generate_prompt(instruction, input) for instruction, input in instruction_input_pairs]
|
150 |
responses = vllm_model.generate(prompts, sampling_params)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
```
|
|
|
148 |
|
149 |
prompts = [prompter.generate_prompt(instruction, input) for instruction, input in instruction_input_pairs]
|
150 |
responses = vllm_model.generate(prompts, sampling_params)
|
151 |
+
```
|
152 |
+
|
153 |
+
## Citation
|
154 |
+
|
155 |
+
If you find SLIMER-IT useful in your research or work, please cite the following paper:
|
156 |
+
|
157 |
+
``` latex
|
158 |
+
@misc{zamai2024slimeritzeroshotneritalian,
|
159 |
+
title={SLIMER-IT: Zero-Shot NER on Italian Language},
|
160 |
+
author={Andrew Zamai and Leonardo Rigutini and Marco Maggini and Andrea Zugarini},
|
161 |
+
year={2024},
|
162 |
+
eprint={2409.15933},
|
163 |
+
archivePrefix={arXiv},
|
164 |
+
primaryClass={cs.CL},
|
165 |
+
url={https://arxiv.org/abs/2409.15933},
|
166 |
+
}
|
167 |
```
|