andrewzamai
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -23,7 +23,7 @@ SLIMER is an LLM specifically instructed for zero-shot NER on English language.
|
|
23 |
|
24 |
SLIMER for Italian language can be found at: https://huggingface.co/expertai/LLaMAntino-3-SLIMER-IT
|
25 |
|
26 |
-
Instructed on a reduced number of samples, it is designed to tackle never-seen-before Named Entity tags by leveraging a prompt enriched with a DEFINITION and GUIDELINES for the
|
27 |
|
28 |
<!DOCTYPE html>
|
29 |
<html>
|
@@ -84,9 +84,11 @@ Instructed on a reduced number of samples, it is designed to tackle never-seen-b
|
|
84 |
<p><b>Instruction:</b> Extract the entities of type <b>[NEs_list]</b> from the text chunk you have read. Be aware that not all of these entities are necessarily present. Do not extract entities that do not exist in the text, return an empty list for that tag. Ensure each entity is assigned to only one appropriate class.</p>
|
85 |
<p>To help you, here are dedicated Definition and Guidelines for each entity tag.</p>
|
86 |
<div class="definition">
|
87 |
-
<p>{
|
|
|
88 |
<p><b> ... </b>
|
89 |
-
<p>{<b>"NE_type_N":</b
|
|
|
90 |
</div>
|
91 |
<p>Return only a JSON object. The JSON should strictly follow this format: {"NE_type_1": [], ..., "NE_type_N":[]}. DO NOT output anything else, just the JSON itself.</p>
|
92 |
<p><b><|eot_id|><|start_header_id|>assistant<|end_header_id|></b></p>
|
|
|
23 |
|
24 |
SLIMER for Italian language can be found at: https://huggingface.co/expertai/LLaMAntino-3-SLIMER-IT
|
25 |
|
26 |
+
Instructed on a reduced number of samples, it is designed to tackle never-seen-before Named Entity tags by leveraging a prompt enriched with a DEFINITION and GUIDELINES for the NEs to be extracted.
|
27 |
|
28 |
<!DOCTYPE html>
|
29 |
<html>
|
|
|
84 |
<p><b>Instruction:</b> Extract the entities of type <b>[NEs_list]</b> from the text chunk you have read. Be aware that not all of these entities are necessarily present. Do not extract entities that do not exist in the text, return an empty list for that tag. Ensure each entity is assigned to only one appropriate class.</p>
|
85 |
<p>To help you, here are dedicated Definition and Guidelines for each entity tag.</p>
|
86 |
<div class="definition">
|
87 |
+
<p>{</p>
|
88 |
+
<p>{<b>"NE_type_1":</b> {"Definition": "", "Guidelines": ""}</p>
|
89 |
<p><b> ... </b>
|
90 |
+
<p>{<b>"NE_type_N":</b> {"Definition": "", "Guidelines": ""}</p>
|
91 |
+
<p>}</p>
|
92 |
</div>
|
93 |
<p>Return only a JSON object. The JSON should strictly follow this format: {"NE_type_1": [], ..., "NE_type_N":[]}. DO NOT output anything else, just the JSON itself.</p>
|
94 |
<p><b><|eot_id|><|start_header_id|>assistant<|end_header_id|></b></p>
|