You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- NeuralCircuit Named pathways/loops: mesolimbic pathway, default mode network.
@@ -142,7 +152,7 @@ Schema:
142
152
"entities": [
143
153
{
144
154
"entity": "<surface form, EXACTLY as in text>",
145
-
"label": "<one of the labels above>",
155
+
"label": "<a label from the taxonomy above, or a coined PascalCase label if none fits>",
146
156
"sentence": "<full sentence containing the entity>",
147
157
"start": <int char offset in input>,
148
158
"end": <int char offset (exclusive)>,
@@ -171,7 +181,7 @@ RULES
171
181
occurrence of the same string in a different position is fine.)
172
182
6. Do NOT hallucinate (do not emit a span that isn't in the text). But DO
173
183
include genuine in-text mentions even at ~50% label confidence — pick
174
-
the most likely label; the judge handles uncertain labels later.
184
+
the most likely label (preferring the suggested taxonomy, otherwise the\n most appropriate PascalCase label you can coin); the judge handles uncertain labels later.
175
185
7. ACRONYM HANDLING: if both expansion and acronym are in the source
176
186
("hippocampus (HP)"), emit BOTH as separate entities sharing a `label`.
177
187
Repeat this every time the pair recurs.
@@ -237,6 +247,7 @@ Use `scripts/mask_pass.py` to build the masked text and translate offsets back t
237
247
-**Sub-focus to molecular only:** drop Anatomy/Cells labels; keep Gene/Protein/Chemical/Drug/IonChannel/Neurotransmitter/Neuropeptide.
238
248
-**Sub-focus to behavioral neuroscience:** keep BrainRegion/CellType/BehavioralAssay/Stimulus/Phenomenon/Phenotype; drop molecular labels.
239
249
-**Strict mode (no `Other`):** drop the `Other` label entirely.
250
+
-**Closed taxonomy:** to restrict output to the suggested labels only (no coined labels), replace the taxonomy header with "use these exactly; do NOT invent others" and revert rule 6 / the schema `label` field accordingly.
240
251
-**Acronym strictness:** by default both forms are emitted; if your downstream consumer wants only one, add: "Emit only the long form when both appear in the same sentence."
0 commit comments