andrewzamai commited on
Commit
a4e88ec
·
verified ·
1 Parent(s): 6be9f48

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -9
README.md CHANGED
@@ -12,9 +12,9 @@ base_model:
12
  - meta-llama/Llama-3.1-8B-Instruct
13
  ---
14
 
15
- # SLIMER-3-PARALLEL: Show Less Instruct More Entity Recognition LLaMA3
16
 
17
- This LLaMA-3 based SLIMER implementation scores +17 % over paper's original SLIMER LLaMA-2,
18
  while allowing up to 16 NEs to be extracted in parallel per prompt.
19
 
20
  GitHub repository: https://github.com/andrewzamai/SLIMER/tree/LLaMA3
@@ -84,13 +84,10 @@ 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
- <b>"TASK":</b>: {
89
- "Definition": "",
90
- "Guidelines": ""
91
- }
92
- }</p>
93
- </div>
94
  <p>Return only a JSON object. The JSON should strictly follow this format: {expected_json_format}. DO NOT output anything else, just the JSON itself.</p>
95
  <p><b><|eot_id|><|start_header_id|>assistant<|end_header_id|></b></p>
96
  </div>
 
12
  - meta-llama/Llama-3.1-8B-Instruct
13
  ---
14
 
15
+ # SLIMER-PARALLEL-LLaMA3
16
 
17
+ This LLaMA-3 based SLIMER scores +17 % over paper's original SLIMER LLaMA-2,
18
  while allowing up to 16 NEs to be extracted in parallel per prompt.
19
 
20
  GitHub repository: https://github.com/andrewzamai/SLIMER/tree/LLaMA3
 
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>{<b>"NE_type_1":</b>: {"Definition": "", "Guidelines": ""}}</p>
88
+ <p><b> ... </b>
89
+ <p>{<b>"NE_type_N":</b>: {"Definition": "", "Guidelines": ""}}</p>
90
+ </div>
 
 
 
91
  <p>Return only a JSON object. The JSON should strictly follow this format: {expected_json_format}. DO NOT output anything else, just the JSON itself.</p>
92
  <p><b><|eot_id|><|start_header_id|>assistant<|end_header_id|></b></p>
93
  </div>