RCS top-1 absolute consistency review

improvement_02 の差分評価ではなく、入力CSVに記録された各 query と top-1 candidate が そもそも整合しているかを DeepSeek で独立判定したレポートです。 各レコードは DeepSeek flash 2回、DeepSeek pro 1回の計3回で判定し、 投票一致度と不確実性タグを残しています。

このレポートの位置づけ

目的

RCS の top-1 が、元の入力テキストである query と整合しているかを確認するための 絶対評価レポートです。ここでは improvement_02 によって良くなったか悪くなったかは見ていません。

  • 判定対象: querytop_name / top_homba_id の対応
  • 判定しないもの: baseline と improved の差分、スコア改善量、アルゴリズム変更の効果
  • 注意: この結果も確立済みの正解データではなく、LLM によるレビュー結果です

入力CSV

  • 1_highconf_correct.csv
  • 2_highconf_incorrect.csv
  • 3_unresolved_correct.csv
  • 4_unresolved_incorrect.csv

入力CSV名に含まれる correct/incorrect は過去のレビュー分類であり、 今回の判定ではその分類を正解として扱っていません。

判定方法

Pass 1
DeepSeek flash
prompt A / strict
Pass 2
DeepSeek flash
prompt B / parent-aware
Pass 3
DeepSeek pro
prompt C / conservative adjudication
3パス完了
921/921
all pass labels present

各パスは独立したプロンプトで判定し、最終ラベルは3票の多数決で決めています。 3票一致は stable、2票一致は majority_vote、 票が割れた場合は split_vote として残しています。 つまり、3/3完全一致でないだけで最終ラベルを自動的に ambiguous にしているわけではありません。 3者割れなど多数決が成立しない場合は no_consensus にします。 ambiguous は、LLM自身が候補を曖昧と判定した場合のラベルとして残します。 判定割れはCSVの has_vote_disagreementvote_split_pattern3-0, 2-1, 1-1-1)で確認できます。 final_reason は3回分の理由を | で連結した列で、 個別理由はCSVの pass1_reasonpass2_reasonpass3_reason にも残しています。

APIログ上の失敗は再試行前の失敗も含みます。最終CSVでは3パスすべての有効判定が 921/921 件そろっています。

使用したPrompt

以下はAPI呼び出しで実際に使ったsystem promptです。各リクエストでは、このsystem promptに加えて、 レコードごとの querytop1_nametop1_id などをJSONで渡しています。

Prompt A DeepSeek flash / strict
You are reviewing RCS top-1 candidate consistency.

Important:
- There is NO established ground-truth dataset in this project.
- Judge only whether `top1_name` is consistent with the original `query`.
- Do not compare against any previous LLM label.
- If the query is a compound structure and top1 covers only one part, label partial_or_narrower.

Labels:
- aligned: top1 directly names the same anatomical structure, accepted synonym,
  conventional spelling/word-order variant, or same named entity.
- broader_parent: top1 is broader than the query but anatomically the right
  parent/container. This is not exact, but it is not wrong.
- partial_or_narrower: top1 is only one component/subdivision of a broader or
  compound query, or is too narrow for the query.
- wrong: top1 is anatomically different/off-structure/off-lobe.
- ambiguous: multiple plausible interpretations; cannot decide confidently.
- source_or_ontology_issue: query appears misspelled/source-specific, or likely
  missing at HOMBA granularity, so candidate consistency cannot be strictly
  judged from the pair alone.

Return STRICT JSON only:
{
  "results": [
    {
      "record_id": <int>,
      "label": "<one label>",
      "certainty": "high|medium|low",
      "confidence": <float 0..1>,
      "reason": "<max 220 chars>"
    }
  ]
}

Bias: be strict. If a candidate is only a loose anatomical neighbor, label wrong.
Prompt B DeepSeek flash / parent-aware
You are reviewing RCS top-1 candidate consistency.

Important:
- There is NO established ground-truth dataset in this project.
- Judge only whether `top1_name` is consistent with the original `query`.
- Do not compare against any previous LLM label.
- If the query is a compound structure and top1 covers only one part, label partial_or_narrower.

Labels:
- aligned: top1 directly names the same anatomical structure, accepted synonym,
  conventional spelling/word-order variant, or same named entity.
- broader_parent: top1 is broader than the query but anatomically the right
  parent/container. This is not exact, but it is not wrong.
- partial_or_narrower: top1 is only one component/subdivision of a broader or
  compound query, or is too narrow for the query.
- wrong: top1 is anatomically different/off-structure/off-lobe.
- ambiguous: multiple plausible interpretations; cannot decide confidently.
- source_or_ontology_issue: query appears misspelled/source-specific, or likely
  missing at HOMBA granularity, so candidate consistency cannot be strictly
  judged from the pair alone.

Return STRICT JSON only:
{
  "results": [
    {
      "record_id": <int>,
      "label": "<one label>",
      "certainty": "high|medium|low",
      "confidence": <float 0..1>,
      "reason": "<max 220 chars>"
    }
  ]
}

Bias: distinguish exact/synonym from parent fallback. Use broader_parent when
the candidate is anatomically a valid parent but not the exact query.
Prompt C DeepSeek pro / conservative adjudication
You are reviewing RCS top-1 candidate consistency.

Important:
- There is NO established ground-truth dataset in this project.
- Judge only whether `top1_name` is consistent with the original `query`.
- Do not compare against any previous LLM label.
- If the query is a compound structure and top1 covers only one part, label partial_or_narrower.

Labels:
- aligned: top1 directly names the same anatomical structure, accepted synonym,
  conventional spelling/word-order variant, or same named entity.
- broader_parent: top1 is broader than the query but anatomically the right
  parent/container. This is not exact, but it is not wrong.
- partial_or_narrower: top1 is only one component/subdivision of a broader or
  compound query, or is too narrow for the query.
- wrong: top1 is anatomically different/off-structure/off-lobe.
- ambiguous: multiple plausible interpretations; cannot decide confidently.
- source_or_ontology_issue: query appears misspelled/source-specific, or likely
  missing at HOMBA granularity, so candidate consistency cannot be strictly
  judged from the pair alone.

Return STRICT JSON only:
{
  "results": [
    {
      "record_id": <int>,
      "label": "<one label>",
      "certainty": "high|medium|low",
      "confidence": <float 0..1>,
      "reason": "<max 220 chars>"
    }
  ]
}

Bias: expert conservative adjudication. Use ambiguous only when a human
neuroanatomy review is genuinely needed. Return pure JSON, no markdown.

概要

レビュー件数
921
4 input CSVs
整合または上位概念
724
78.6%
不整合または部分一致
181
19.7%
低確実性/投票割れ
12
human review priority
判定割れ
121
has_vote_disagreement=true

「整合」は同一構造・同義語・表記揺れとみなせるものです。 「上位概念として整合」は exact ではありませんが、解剖学的な親候補としては外れていないものです。 「部分一致・狭すぎ」と「不整合」は、top-1 をそのまま採用すると誤りになりやすい候補です。

ラベル分布

ラベル件数割合分布
整合 475 51.6%
上位概念として整合 249 27.0%
不整合 118 12.8%
部分一致・狭すぎ 63 6.8%
判定不一致 12 1.3%
曖昧 3 0.3%
ソース/HOMBA要確認 1 0.1%

入力CSV別

入力CSV件数整合上位概念として整合部分一致・狭すぎ不整合曖昧判定不一致ソース/HOMBA要確認
1_highconf_correct.csv398390260000
2_highconf_incorrect.csv2541424010
3_unresolved_correct.csv284641494418360
4_unresolved_incorrect.csv21417841196051

確実性

high
780
LLM certainty
medium
129
LLM certainty
low
12
LLM certainty
API failures
3
invalid/missing batches
不確実性タグ件数
stable799
majority_vote103
split_vote8
majority_vote+low_certainty6
split_vote+low_certainty4
stable+low_certainty1

全レコード詳細

source query top-1 final label certainty 3-pass labels reason
2_highconf_incorrect.csv
row 7
Anterior nucleus (thalamus) rostral division of pulvinar
HOMBA:10410 / score 0.923571
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.7
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Anterior nucleus (thalamus) is distinct from rostral division of pulvinar; top1 is a different thalamic nucleus. | Query likely refers to anterior thalamic nucleus, but top1 is rostral pulvinar; different structures. | Anterior nucleus (thalamus) is a distinct limbic thalamic nucleus; pulvinar's rostral division is a different structure, not a match.
2_highconf_incorrect.csv
row 13
Lateral olfactory tract nucleus of lateral olfactory tract
HOMBA:10309 / score 0.9975
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 不整合 high / 1.0
Query is a tract (lateral olfactory tract), top1 is a nucleus (nucleus of lateral olfactory tract). Different anatomical structures. | Query is a tract (fiber bundle), top1 is a nucleus; these are anatomically distinct structures. | Query is the lateral olfactory tract (fiber bundle); top1 is the nucleus of the lateral olfactory tract, a distinct cell group.
2_highconf_incorrect.csv
row 16
Inferior colliculus, dorsal cortex dorsal central nucleus of inferior colliculus
HOMBA:12307 / score 0.972659
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query asks for dorsal cortex of inferior colliculus, but top1 is dorsal central nucleus, a different subregion. | Top1 is dorsal central nucleus of inferior colliculus, not the dorsal cortex as queried; different subregion. | dorsal cortex of inferior colliculus is not the same as dorsal central nucleus; they are distinct subdivisions.
2_highconf_incorrect.csv
row 19
Posterior interstitial nucleus of the anterior commissure interstitial nucleus of posterior commissure (nucleus of posterior commissure)
HOMBA:12194 / score 0.956666
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.99
Query specifies anterior commissure, top1 returns posterior commissure; these are different structures. | Query specifies anterior commissure; top1 is interstitial nucleus of posterior commissure, which is anatomically distinct. | Query refers to nucleus near anterior commissure; top1 is nucleus of posterior commissure. Distinct structures.
3_unresolved_correct.csv
row 14
Pre-supplementary motor area (inferior) medial division of area 6 (supplementary motor area)
HOMBA:AA30012 / score 0.7172
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query is pre-supplementary motor area, but top1 is supplementary motor area proper; these are distinct adjacent areas. | Query is Pre-SMA (inferior), top1 is SMA proper (medial division of area 6). Pre-SMA is a subdivision of SMA complex, so top1 is a broader parent. | Pre-supplementary motor area is distinct from supplementary motor area (SMA); top1 returns SMA only, not the pre-SMA.
3_unresolved_correct.csv
row 15
Pre-supplementary motor area (superior) medial division of area 6 (supplementary motor area)
HOMBA:AA30012 / score 0.7172
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Same issue as 435: pre-supplementary motor area queried, top1 is SMA proper, not pre-SMA. | Query is Pre-SMA (superior), top1 is SMA proper. Pre-SMA is a subdivision of SMA, making top1 a broader parent. | Pre-supplementary motor area is distinct from supplementary motor area (SMA); top1 returns SMA only, not the pre-SMA.
3_unresolved_correct.csv
row 28
Temporal frontal cortex (posterior) frontal motor cortex (posterior frontal cortex)
HOMBA:AA30009 / score 0.868214
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C ソース/HOMBA要確認 medium / 0.8
Query includes 'temporal frontal cortex'; top1 is only frontal motor cortex, ignoring the temporal component. | Query includes temporal and frontal; top1 only frontal motor cortex (posterior frontal), missing temporal component. | Query 'Temporal frontal cortex (posterior)' is anatomically contradictory; likely a typo for 'posterior frontal cortex'. Top1 matches the intended meaning but query is unreliable.
3_unresolved_correct.csv
row 49
Lenticular nucleus (pallidum) putamen (lateroventral division of the CP)
HOMBA:10338 / score 0.88
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query specifies pallidum (part of lenticular nucleus), but top1 is putamen, a different component. | Query requests pallidum part of lenticular nucleus, but top1 is putamen, a different component. | Query specifies pallidum (globus pallidus) component of lenticular nucleus; top1 is putamen, a different component, not the pallidum.
3_unresolved_correct.csv
row 81
Lateral occipital cortex (inferior) lateral temporal-occipital cortex (area 37l, area TEO)
HOMBA:AA30024 / score 0.840855
不整合 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.75
Pass 3 / DeepSeek pro / prompt C 不整合 medium / 0.75
Top1 is lateral temporal-occipital cortex, not specifically lateral occipital cortex; different anatomical region. | top1 is lateral temporal-occipital cortex (area 37l), which is not the same as lateral occipital cortex; query is occipital, top1 includes temporal. | Top1 extends into temporal lobe (lateral temporal-occipital), not strictly the lateral occipital cortex, and ignores the 'inferior' specificity.
3_unresolved_correct.csv
row 82
Lateral occipital cortex (superior) lateral temporal-occipital cortex (area 37l, area TEO)
HOMBA:AA30024 / score 0.840855
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.75
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.92
Top1 is lateral temporal-occipital cortex, not specifically lateral occipital cortex; different anatomical region. | top1 is lateral temporal-occipital cortex (area 37l), which is not the same as lateral occipital cortex; query is occipital, top1 includes temporal. | Query: lateral occipital cortex (superior part); top1 is lateral temporal-occipital cortex, a broader region encompassing both lateral temporal and occipital areas.
3_unresolved_correct.csv
row 108
Mesencephalic Trigeminal Nerve mesencephalic trigeminal nucleus
HOMBA:12208 / score 0.612807
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Query refers to a nerve, top1 is a nucleus; anatomically different structures. | Query refers to 'nerve', but top1 is 'mesencephalic trigeminal nucleus', a different anatomical structure (nucleus vs nerve). | Query refers to a nerve (axons), top1 is the mesencephalic trigeminal nucleus (cell bodies); anatomically distinct structures.
3_unresolved_correct.csv
row 113
Central Gray Nucleus central gray region of pons
HOMBA:146034964 / score 0.621583
不整合 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.7
Pass 3 / DeepSeek pro / prompt C 不整合 medium / 0.7
Central gray nucleus typically refers to periaqueductal gray, not central gray region of pons. | Query 'Central Gray Nucleus' typically refers to periaqueductal gray (midbrain); top1 specifies pons region, anatomically different location. | Central Gray Nucleus usually refers to midbrain periaqueductal gray; top1 is pontine central gray, a different structure.
3_unresolved_correct.csv
row 152
Anterior commissure, anterior limb interstitial nucleus of posterior limb of anterior commissure (fundus of striatum)
HOMBA:10388 / score 0.716512
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query targets anterior limb of anterior commissure, but top1 is interstitial nucleus of posterior limb, a different component. | Query is anterior limb of anterior commissure; top1 is interstitial nucleus of posterior limb, which is a different anatomical component. | Query is anterior limb of anterior commissure, top1 is interstitial nucleus of posterior limb; anatomically different structure.
3_unresolved_correct.csv
row 159
Pre-supplementary motor area medial division of area 6 (supplementary motor area)
HOMBA:AA30012 / score 0.736733
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.7
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query 'Pre-supplementary motor area' is distinct from top1 'Supplementary motor area' (SMA); pre-SMA is a separate rostral region. | Pre-supplementary motor area is distinct from supplementary motor area; top1 is SMA, not pre-SMA. | Pre-supplementary motor area (pre-SMA) is a specific anterior subregion of the medial area 6/SMA complex. Top1 names the entire medial division of area 6, which is the correct parent structure.
3_unresolved_correct.csv
row 176
Peduncular lateral hypothalamic nucleus magnocellular nucleus of lateral hypothalamic area
HOMBA:13070 / score 0.761175
不整合 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.6
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Query is peduncular lateral hypothalamic nucleus; top1 is magnocellular nucleus of lateral hypothalamic area, which are distinct nuclei. | top1 is magnocellular nucleus, query is peduncular nucleus; different nuclei | Peduncular lateral hypothalamic nucleus is a distinct nucleus separate from the magnocellular nucleus of the lateral hypothalamic area.
3_unresolved_correct.csv
row 222
Retro-mammillary nucleus mammillary nuclear complex
HOMBA:10498 / score 0.856667
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 medium / 0.8
Retro-mammillary nucleus is distinct from mammillary nuclear complex; top1 is anatomically different. | Top1 is the mammillary nuclear complex, which includes retromammillary nucleus. Correct broader parent. | Retro-mammillary nucleus (posterior to mammillary) vs. mammillary nuclear complex are distinct structures; top1 is anatomically off.
3_unresolved_correct.csv
row 242
Lateral Dorsal Tegmentum lateral cell group of medulla tegmentum
HOMBA:AA30457 / score 0.574506
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Top1 'lateral cell group of medulla tegmentum' is a specific sub-structure within the broader region 'Lateral Dorsal Tegmentum'. | Top1 'lateral cell group of medulla tegmentum' is anatomically different (medulla) from query 'Lateral Dorsal Tegmentum' (pons/midbrain). | Top1 is lateral cell group of medulla tegmentum, not pontine lateral dorsal tegmentum; different structure.
3_unresolved_correct.csv
row 243
Ventroposterior Medial and Lateral Thalamus ventral lateral nucleus of thalamus
HOMBA:10420 / score 0.591376
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query 'Ventroposterior Medial and Lateral Thalamus' refers to VP complex, but top1 'ventral lateral nucleus of thalamus' is a different nucleus (VL). | Top1 'ventral lateral nucleus of thalamus' is a different nucleus, not part of ventroposterior complex as implied by query. | Query compound VPM/VPL thalamus; top1 is ventral lateral nucleus, a separate motor nucleus, not corresponding component.
3_unresolved_correct.csv
row 245
Ventromedial thalamic nucleus (posterior and basal) ventral posterior nuclear complex of thalamus
HOMBA:10423 / score 0.67122
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query is 'ventromedial thalamic nucleus', top1 is 'ventral posterior nuclear complex'; these are distinct thalamic nuclei. | ventromedial thalamic nucleus and ventral posterior nuclear complex are anatomically distinct structures | Ventromedial thalamic nucleus is anatomically distinct from ventral posterior nuclear complex; they are different thalamic nuclei.
3_unresolved_correct.csv
row 268
Supra Geniculate medial geniculate nuclear complex
HOMBA:AA30307 / score 0.429875
不整合 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.6
Pass 3 / DeepSeek pro / prompt C 不整合 medium / 0.6
Suprageniculate is a distinct nucleus; top1 is medial geniculate nuclear complex, different structure. | Query 'Supra Geniculate' likely refers to suprageniculate nucleus; top1 is medial geniculate nuclear complex, an anatomically different structure. | Supra Geniculate likely refers to suprageniculate nucleus, not medial geniculate complex. Anatomically different structure.
3_unresolved_correct.csv
row 284
Secondary visual area, lateral part ventral secondary visual cortex (ventral area 18, ventral area OB, area 18b)
HOMBA:AA30827 / score 0.582451
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query specifies 'lateral part' of secondary visual area, but top1 is 'ventral secondary visual cortex', which is a different subdivision (ventral vs lateral). | Query specifies lateral part, but top1 is ventral secondary visual cortex, a different subdivision. | Query specifies lateral part; top1 is ventral secondary visual cortex. Different anatomical subdivisions (lateral vs ventral).
3_unresolved_correct.csv
row 285
Secondary visual area, medial part dorsal secondary visual cortex (dorsal area 18, dorsal area OB, area 18a)
HOMBA:AA30823 / score 0.583805
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.9
Query specifies 'medial part' of secondary visual area, but top1 is 'dorsal secondary visual cortex', which is a different subdivision (dorsal vs medial). | Query specifies medial part, but top1 is dorsal secondary visual cortex, a different subdivision. | Medial secondary visual area corresponds to dorsal secondary visual cortex (area 18a); accepted synonym.
4_unresolved_incorrect.csv
row 2
Lateral intraparietal area (dorsal) dorsal raphe nucleus, lateral division
HOMBA:12227 / score 0.612878
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Query 'Lateral intraparietal area (dorsal)' is anatomically distinct from 'dorsal raphe nucleus, lateral division'; these are different structures. | Lateral intraparietal area vs dorsal raphe nucleus: completely different regions. | Lateral intraparietal area is parietal cortex; top1 is dorsal raphe nucleus (brainstem), completely different structure.
4_unresolved_incorrect.csv
row 4
Posterior opercular area POS2 caudal (posterior) branch of anterior commissure
HOMBA:AA30485 / score 0.639186
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.97
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Query 'Posterior opercular area POS2' is a cortical region; top1 'caudal branch of anterior commissure' is a white matter tract, anatomically unrelated. | Posterior opercular area vs branch of anterior commissure: different structures. | Query is a cortical opercular area (POS2); top1 is caudal branch of anterior commissure, a tract, unrelated.
4_unresolved_incorrect.csv
row 5
Ventral intraparietal area ventral tegmental area
HOMBA:12261 / score 0.641675
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Ventral intraparietal area is a parietal region; ventral tegmental area is a midbrain structure, anatomically different. | Ventral intraparietal area is a parietal region, but top1 'ventral tegmental area' is a midbrain structure; anatomically distinct. | Ventral intraparietal area is a cortical parietal region, while ventral tegmental area is a midbrain structure; anatomically unrelated.
4_unresolved_incorrect.csv
row 6
Central opercular cortex (posterior) frontal motor cortex (posterior frontal cortex)
HOMBA:AA30009 / score 0.646011
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Central opercular cortex (posterior) is in the insular/opercular region; top1 is frontal motor cortex, anatomically different. | Central opercular cortex (posterior) is not the same as frontal motor cortex; top1 is a different brain region. | Central opercular cortex (posterior) is opercular region around central sulcus, not frontal motor cortex; distinct cortical areas.
4_unresolved_incorrect.csv
row 7
Central opercular cortex (anterior) lateral (rostral) entorhinal cortex
HOMBA:10318 / score 0.651574
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Central opercular cortex (anterior) is not entorhinal cortex; entorhinal cortex is in temporal lobe, anatomically wrong. | Central opercular cortex (anterior) and lateral entorhinal cortex are completely different structures (temporal vs. frontal). | Central opercular cortex (anterior) is an opercular region, while lateral (rostral) entorhinal cortex is in medial temporal lobe; completely different.
4_unresolved_incorrect.csv
row 11
Visual area V3A primary visual cortex (first visual cortex, striate cortex, area 17, area OC)
HOMBA:10269 / score 0.665067
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.99
V3A is an extrastriate visual area, not part of primary visual cortex (area 17). | Query 'Visual area V3A' is an extrastriate area, but top1 'primary visual cortex' is V1, a different anatomical structure. | V3A is an extrastriate visual area, not primary visual cortex (V1). Anatomically different.
4_unresolved_incorrect.csv
row 12
Visual area V3B primary visual cortex (first visual cortex, striate cortex, area 17, area OC)
HOMBA:10269 / score 0.665067
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.99
V3B is an extrastriate visual area, not part of primary visual cortex (area 17). | Query 'Visual area V3B' is an extrastriate area, but top1 'primary visual cortex' is V1, a different anatomical structure. | V3B is an extrastriate visual area, not primary visual cortex (V1). Anatomically different.
4_unresolved_incorrect.csv
row 13
Visual area V4 primary visual cortex (first visual cortex, striate cortex, area 17, area OC)
HOMBA:10269 / score 0.665067
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.99
V4 is an extrastriate visual area, not part of primary visual cortex (area 17). | Query 'Visual area V4' is an extrastriate area, but top1 'primary visual cortex' is V1, a different anatomical structure. | V4 is an extrastriate visual area, not primary visual cortex (V1). Anatomically different.
4_unresolved_incorrect.csv
row 14
Visual area V6A primary visual cortex (first visual cortex, striate cortex, area 17, area OC)
HOMBA:10269 / score 0.665067
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.99
V6A is a dorsomedial visual area, not part of primary visual cortex (area 17). | Query 'Visual area V6A' is an extrastriate area, but top1 'primary visual cortex' is V1, a different anatomical structure. | V6A is an extrastriate visual area, not primary visual cortex (V1). Anatomically different.
4_unresolved_incorrect.csv
row 15
Visual area V8 primary visual cortex (first visual cortex, striate cortex, area 17, area OC)
HOMBA:10269 / score 0.665067
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Visual area V8 is a higher-order visual area, but top1 is primary visual cortex (V1), a distinct region. | Query 'Visual area V8' (higher visual area) but top1 is primary visual cortex (V1), which is anatomically different. | Visual area V8 is an extrastriate cortical area, not primary visual cortex (V1). Top1 incorrectly matches to V1.
4_unresolved_incorrect.csv
row 16
Intracalcarine cortex (superior) superior medial parietal cortex
HOMBA:10215 / score 0.666353
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Intracalcarine cortex is occipital; superior medial parietal cortex is parietal, anatomically distinct. | Query 'Intracalcarine cortex (superior)' is in occipital lobe; top1 'superior medial parietal cortex' is in parietal lobe, different structure. | Intracalcarine cortex (superior) is within the calcarine sulcus; top1 'superior medial parietal cortex' is a different lobe and region anatomically.
4_unresolved_incorrect.csv
row 20
Intracalcarine cortex (inferior) inferior lateral parietal cortex
HOMBA:10225 / score 0.681521
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Intracalcarine cortex is a visual area, top1 is parietal cortex, anatomically distinct. | Intracalcarine cortex is a visual area in occipital lobe; top1 is parietal cortex, anatomically different. | Intracalcarine cortex is occipital visual cortex; inferior lateral parietal cortex is parietal association cortex, anatomically distinct.
4_unresolved_incorrect.csv
row 21
Anterior ventral insular area anterior (ventral) spinal artery
HOMBA:AA30890 / score 0.717423
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Query is insular area, top1 is spinal artery, completely different structures. | Query is insular cortex; top1 is a spinal artery, completely different structure. | Anterior ventral insular area is a cortical region; anterior spinal artery is a vascular structure, not anatomically related.
4_unresolved_incorrect.csv
row 22
Posterior insular area caudal (posterior) branch of anterior commissure
HOMBA:AA30485 / score 0.739318
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.97
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Query posterior insular area, top1 is caudal branch of anterior commissure, not insula. | Posterior insular area vs. branch of anterior commissure; distinct brain regions. | Posterior insular area is insular cortex; posterior branch of anterior commissure is a white matter pathway, not a cortical area.
4_unresolved_incorrect.csv
row 23
Accessory trigeminal nucleus accessory facial nucleus
HOMBA:12419 / score 0.760807
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.96
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Accessory trigeminal nucleus vs accessory facial nucleus: different cranial nerve nuclei. | Accessory trigeminal nucleus (CN V) vs. accessory facial nucleus (CN VII); different cranial nerve nuclei. | Accessory trigeminal nucleus (CN V sensory) vs. accessory facial nucleus (CN VII motor); distinct brainstem nuclei.
4_unresolved_incorrect.csv
row 24
Temporal horn of the lateral ventricle rostral horn of lateral ventricles
HOMBA:10597 / score 0.831652
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Query temporal horn, top1 rostral horn (anterior horn), different lateral ventricle horn. | Temporal horn of lateral ventricle vs. rostral/anterior horn; different ventricular subdivisions. | Temporal horn is the inferior horn of lateral ventricle; rostral horn is anterior/frontal horn, different ventricular compartment.
4_unresolved_incorrect.csv
row 25
Medial dorsal thalamic nucleus central medial nucleus of thalamus
HOMBA:10445 / score 0.765336
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Medial dorsal thalamic nucleus (MD) and central medial nucleus are distinct thalamic nuclei. | Central medial nucleus is a distinct thalamic nucleus from medial dorsal nucleus. | Medial dorsal thalamic nucleus (mediodorsal) is not the central medial nucleus; they are distinct thalamic nuclei with different locations and functions.
4_unresolved_incorrect.csv
row 26
Ventralis intermedius anterior (ventral /principal) pretectal nucleus
HOMBA:12187 / score 0.37625
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Ventralis intermedius (ventral intermediate nucleus) is not the anterior pretectal nucleus. | Ventralis intermedius likely refers to ventral intermediate nucleus of thalamus, not pretectal nucleus. | Ventralis intermedius is a motor thalamic nucleus, not the anterior pretectal nucleus. Anatomy is different.
4_unresolved_incorrect.csv
row 47
Vestigial hippocampal sulcus hippocampal commissure
HOMBA:10560 / score 0.488391
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Vestigial hippocampal sulcus is a sulcus, while hippocampal commissure is a fiber bundle. Anatomically different structures. | 'Hippocampal commissure' is a fiber tract, not the same as the 'Vestigial hippocampal sulcus'. | Hippocampal sulcus (vestigial) is a sulcal structure; hippocampal commissure is a commissural fiber bundle. Anatomically distinct.
4_unresolved_incorrect.csv
row 48
Cingulate area 24dd cingulate subdivision of area 5
HOMBA:10217 / score 0.488395
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Query is cingulate area 24 (cingulate cortex); top1 is a subdivision of area 5 (parietal lobe). Anatomically mismatched. | 'Cingulate area 24dd' is in cingulate gyrus, while 'cingulate subdivision of area 5' refers to parietal area 5. | Cingulate area 24dd is part of the cingulate gyrus, not a subdivision of parietal area 5. Top1 is off-structure.
4_unresolved_incorrect.csv
row 49
Cingulate area 24dv cingulate subdivision of area 5
HOMBA:10217 / score 0.488395
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Query is cingulate area 24 (cingulate cortex); top1 is a subdivision of area 5 (parietal lobe). Anatomically mismatched. | 'Cingulate area 24dv' is in cingulate cortex, not matching 'cingulate subdivision of area 5'. | Cingulate area 24dv is part of the cingulate gyrus, not a subdivision of parietal area 5. Top1 is off-structure.
4_unresolved_incorrect.csv
row 52
Cingulate area 23c cingulate subdivision of area 5
HOMBA:10217 / score 0.493369
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query is Cingulate area 23c, a cingulate region. Top1 is cingulate subdivision of area 5, which is anatomically distinct (area 5 is parietal). | Query 'Cingulate area 23c' is a cingulate area; top1 'cingulate subdivision of area 5' is anatomically wrong (area 5 is parietal, not cingulate). | Cingulate area 23c is part of area 23, not a cingulate subdivision of area 5 (parietal). Wrong region.
4_unresolved_incorrect.csv
row 53
Cingulate area 23d cingulate subdivision of area 5
HOMBA:10217 / score 0.493369
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query is Cingulate area 23d, a cingulate region. Top1 is cingulate subdivision of area 5, which is not part of cingulate cortex (area 5 is parietal). | Query 'Cingulate area 23d' is cingulate; top1 'cingulate subdivision of area 5' is incorrect (area 5 is parietal). | Cingulate area 23d is part of area 23, not area 5. Wrong anatomical assignment.
4_unresolved_incorrect.csv
row 54
Cingulate area 31a cingulate subdivision of area 5
HOMBA:10217 / score 0.493369
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query is Cingulate area 31a, a posterior cingulate region. Top1 is cingulate subdivision of area 5, which refers to a different anatomical area (area 5 is parietal). | Query 'Cingulate area 31a' is cingulate; top1 'cingulate subdivision of area 5' is wrong (area 5 is not cingulate). | Cingulate area 31a is part of area 31, not area 5. Top1 is anatomically incorrect.
4_unresolved_incorrect.csv
row 55
Cingulate area a24 cingulate subdivision of area 5
HOMBA:10217 / score 0.493369
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query refers to cingulate area a24 (cingulate gyrus); top1 is cingulate subdivision of area 5, which is parietal, anatomically different. | Query is Cingulate area a24 (area 24), but top1 is cingulate subdivision of area 5, which is a different anatomical region. | Query is cingulate area a24 (a subdivision of cingulate cortex), not the parietal area 5. Top1 'cingulate subdivision of area 5' is anatomically different.
4_unresolved_incorrect.csv
row 56
Cingulate area p24 cingulate subdivision of area 5
HOMBA:10217 / score 0.493369
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query refers to cingulate area p24 (cingulate gyrus); top1 is cingulate subdivision of area 5, which is parietal, anatomically different. | Query is Cingulate area p24 (area 24), but top1 is cingulate subdivision of area 5, which is a different anatomical region. | Query is cingulate area p24 (cingulate subdivision), top1 refers to a subdivision of area 5 (parietal). No anatomical match.
4_unresolved_incorrect.csv
row 62
Centre median parafascicular complex posterior nuclear complex of thalamus
HOMBA:10428 / score 0.501895
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Centre median parafascicular complex is part of intralaminar thalamic nuclei, not posterior nuclear complex. | Centre median parafascicular complex is an intralaminar nuclear group, not the posterior nuclear complex of thalamus. | Centromedian-parafascicular complex is intralaminar, not part of posterior nuclear complex. Anatomically different thalamic structures.
4_unresolved_incorrect.csv
row 63
Laterodorsal tegmentum laterodorsal subdivision of PuM
HOMBA:AA30860 / score 0.504843
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.8
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Laterodorsal tegmentum refers to brainstem tegmental nucleus; top1 laterodorsal subdivision of PuM is a different structure. | top1_name 'laterodorsal subdivision of PuM' is a specific subregion, whereas query 'Laterodorsal tegmentum' likely refers to a broader tegmental region. | Laterodorsal tegmentum is a brainstem nucleus, not a thalamic subdivision (laterodorsal subdivision of PuM). Entirely different structures.
4_unresolved_incorrect.csv
row 69
Supracalcarine cortex dorsolateral temporal cortex
HOMBA:13322 / score 0.513508
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Supracalcarine cortex is occipital visual cortex, not part of temporal lobe; dorsolateral temporal cortex is off-structure. | Query 'Supracalcarine cortex' is located in occipital lobe; top1 'dorsolateral temporal cortex' is anatomically different (temporal vs occipital). | Supracalcarine cortex is occipital/medial (above calcarine sulcus), not temporal. Top1 dorsolateral temporal cortex is anatomically incorrect.
4_unresolved_incorrect.csv
row 77
Opercular area OP1 opercular subdivision of area 44
HOMBA:266441161 / score 0.520818
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.85
Query 'Opercular area OP1' refers to parietal operculum; top1 'opercular subdivision of area 44' is in frontal operculum, anatomically different. | Query 'OP1' is a specific opercular area; top1 'opercular subdivision of area 44' is a different parcellation, not synonymous. | Opercular area OP1 is a subdivision of the opercular region; opercular subdivision of area 44 is the correct broader parent region.
4_unresolved_incorrect.csv
row 78
Opercular area OP4 opercular subdivision of area 44
HOMBA:266441161 / score 0.527818
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.85
Query 'Opercular area OP4' refers to parietal operculum; top1 'opercular subdivision of area 44' is in frontal operculum, anatomically different. | Query 'OP4' is a distinct opercular area; top1 'opercular subdivision of area 44' is not the same structure. | Opercular area OP4 is a subdivision of the opercular region; opercular subdivision of area 44 is the correct broader parent region.
4_unresolved_incorrect.csv
row 79
Area PH subincertal nucleus (area)
HOMBA:AA30351 / score 0.529821
不整合 medium
3/3
3-0
stable+low_certainty
Pass 1 / DeepSeek flash / prompt A 不整合 low / 0.6
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query 'Area PH' likely refers to parahippocampal area; top1 'subincertal nucleus (area)' is a hypothalamic structure, unrelated. | Query 'Area PH' typically refers to perihypoglossal nucleus; top1 'subincertal nucleus' is a different brain region. | Area PH (likely posterior hypothalamic area) is anatomically distinct from subincertal nucleus; the match is based solely on the word 'area'.
4_unresolved_incorrect.csv
row 80
Precuneal cortex prefrontal cortex
HOMBA:10172 / score 0.534309
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Precuneal cortex is parietal; prefrontal cortex is frontal; different lobe. | Precuneal cortex is parietal; prefrontal cortex is frontal; anatomically different structures. | Precuneal cortex is parietal lobe, prefrontal cortex is frontal lobe; anatomically distinct structures.
4_unresolved_incorrect.csv
row 83
A1 catecholaminergic cell group A8 dopamine cell group
HOMBA:AA30843 / score 0.546631
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
A1 is noradrenergic medullary group; A8 is dopaminergic midbrain group; different. | A1 catecholaminergic cell group is in medulla; A8 dopamine cell group is in midbrain; distinct cell groups. | A1 catecholaminergic cell group is noradrenergic; A8 dopamine cell group is a different cell group.
4_unresolved_incorrect.csv
row 84
A4 catecholaminergic cell group A8 dopamine cell group
HOMBA:AA30843 / score 0.546631
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
A4 is noradrenergic medullary group; A8 is dopaminergic midbrain group; different. | A4 catecholaminergic cell group is distinct from A8 dopamine cell group; different locations and neurotransmitter. | A4 catecholaminergic cell group is noradrenergic; A8 dopamine cell group is a different cell group.
4_unresolved_incorrect.csv
row 85
A5 catecholaminergic cell group A8 dopamine cell group
HOMBA:AA30843 / score 0.546631
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
A5 and A8 are distinct catecholaminergic cell groups; top1 anatomically different from query. | A5 catecholaminergic cell group and A8 dopamine cell group are distinct brainstem cell groups. | A5 and A8 are distinct brainstem catecholaminergic cell groups; A5 is in ventrolateral pons, A8 in retrorubral field.
4_unresolved_incorrect.csv
row 91
Anterior intraparietal area lobule II (central lobule and wing, anterior part)
HOMBA:12840 / score 0.554875
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.99
Anterior intraparietal area is in parietal lobe, not cerebellar lobule II. | 'Anterior intraparietal area' is in parietal cortex, but top1 refers to cerebellar lobule II, a completely different structure. | Anterior intraparietal area is a parietal cortical region; top1 is a cerebellar lobule (II), anatomically different.
4_unresolved_incorrect.csv
row 92
Cuneal cortex external shell (cortex) of inferior colliculus
HOMBA:12308 / score 0.566442
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.99
Cuneal cortex is in occipital lobe; top1 is inferior colliculus (midbrain). | 'Cuneal cortex' is occipital visual cortex, top1 is inferior colliculus (auditory midbrain), anatomically unrelated. | Cuneal cortex is the cuneus (occipital lobe); top1 is external shell of inferior colliculus, a brainstem auditory structure, anatomically different.
4_unresolved_incorrect.csv
row 106
Ventral striatal region, unspecified anterior (ventral /principal) pretectal nucleus
HOMBA:12187 / score 0.601926
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
top1 (anterior pretectal nucleus) is anatomically unrelated to ventral striatal region; it is in the midbrain, not basal ganglia. | Top1 is anterior pretectal nucleus, not related to ventral striatal region. | Ventral striatal region is striatal (basal ganglia); top1 is anterior pretectal nucleus, anatomically unrelated.
4_unresolved_incorrect.csv
row 112
Orbital cortex (ventral) anterior (ventral /principal) pretectal nucleus
HOMBA:12187 / score 0.62947
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
top1 is a pretectal nucleus (midbrain), not orbital cortex (prefrontal). | top1 is anterior pretectal nucleus (midbrain), not orbital cortex (frontal cortex). | Orbital cortex is a frontal lobe region; anterior pretectal nucleus is a midbrain structure. Anatomically unrelated.
4_unresolved_incorrect.csv
row 115
Supratemporal plane, posterior caudal (posterior) branch of anterior commissure
HOMBA:AA30485 / score 0.639186
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Supratemporal plane is part of temporal lobe; top1 is a branch of anterior commissure, anatomically different. | Query 'Supratemporal plane, posterior' refers to a region of the temporal lobe. Top1 candidate 'caudal (posterior) branch of anterior commissure' is a different structure (commissural fiber tract), not anatomically related. | Supratemporal plane is cortical region; anterior commissure branch is white matter tract, anatomically different.
4_unresolved_incorrect.csv
row 116
Lateral parietal cortex, superior superior medial parietal cortex
HOMBA:10215 / score 0.639812
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query specifies lateral parietal cortex, but top1 is medial parietal cortex; lateral vs medial are distinct regions. | Query specifies 'Lateral parietal cortex, superior', but top1 is 'superior medial parietal cortex', which is medial, not lateral. Anatomically different region. | Lateral parietal cortex vs superior medial parietal cortex are anatomically distinct locations (lateral vs medial).
4_unresolved_incorrect.csv
row 119
Nucleus of the stria medullaris stria medullaris of thalamus
HOMBA:10590 / score 0.645767
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Query asks for nucleus of stria medullaris; top1 is the fiber tract (stria medullaris), not the nucleus. | Query 'Nucleus of the stria medullaris' is a specific nucleus (gray matter) associated with the stria medullaris. Top1 'stria medullaris of thalamus' is a fiber tract, not the nucleus. Different anatomical entity. | Query refers to a nucleus (gray matter), top1 is the stria medullaris tract (white matter), different structures.
4_unresolved_incorrect.csv
row 120
Central opercular cortex, posterior frontal motor cortex (posterior frontal cortex)
HOMBA:AA30009 / score 0.646011
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.75
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Central opercular cortex, posterior is not synonymous with frontal motor cortex; posterior frontal cortex is a broader region, not specifically opercular. | Query is posterior central opercular cortex; top1 is frontal motor cortex, anatomically different region. | Central opercular cortex is part of the frontal operculum, a component of the frontal lobe. Top1 'frontal motor cortex (posterior frontal cortex)' is a broader parent region that includes this area.
4_unresolved_incorrect.csv
row 121
Laterodorsal thalamic nucleus, ventrolateral part rostral intralaminar nuclei of thalamus
HOMBA:10443 / score 0.647906
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Laterodorsal thalamic nucleus, ventrolateral part is a lateral nucleus, not rostral intralaminar nuclei. | Laterodorsal thalamic nucleus is a specific nucleus, not part of rostral intralaminar nuclei. | Laterodorsal thalamic nucleus is a distinct limbic nucleus, not part of the intralaminar system. Top1 'rostral intralaminar nuclei of thalamus' is a different thalamic group.
4_unresolved_incorrect.csv
row 122
Anterior Interposed Cerebellar Nucleus pontine raphe region
HOMBA:12471 / score 0.649711
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Anterior Interposed Cerebellar Nucleus is a deep cerebellar nucleus, not pontine raphe region. | Anterior interposed cerebellar nucleus is a cerebellar nucleus, not pontine raphe region. | Anterior interposed nucleus is a deep cerebellar nucleus; 'pontine raphe region' lies in the pons, completely outside the cerebellum. Anatomically off-structure.
4_unresolved_incorrect.csv
row 124
Laterodorsal thalamic nucleus, dorsomedial part ventral midline nuclei of thalamus
HOMBA:AA30276 / score 0.664608
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Laterodorsal thalamic nucleus, dorsomedial part is a lateral nucleus, not ventral midline nuclei. | Laterodorsal thalamic nucleus is lateral; ventral midline nuclei are different group. | Laterodorsal nucleus is a limbic thalamic nucleus, not a ventral midline nucleus. Top1 'ventral midline nuclei of thalamus' is a different group.
4_unresolved_incorrect.csv
row 125
Posterior Interposed Cerebellar Nucleus posterior lobe of cerebellar cortex
HOMBA:12844 / score 0.665441
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query is a cerebellar nucleus; top1 is the cerebellar cortex lobe, anatomically different structure. | Query is a cerebellar nucleus (posterior interposed), top1 is cerebellar cortical lobe, anatomically distinct. | Query is a deep cerebellar nucleus; top1 is the posterior lobe of cerebellar cortex, a different structure.
4_unresolved_incorrect.csv
row 128
Ventroposterior medial and lateral thalamic nuclei medial subdivision of LaV
HOMBA:11515 / score 0.681714
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Query is ventroposterior thalamic nuclei; top1 is 'medial subdivision of LaV' (likely lateral ventricle), not thalamic. | Query refers to ventroposterior thalamic nuclei (VPM/VPL); top1 is a subdivision of lateral ventral nucleus (LaV), a different group. | Query specifies ventroposterior medial & lateral thalamic nuclei (VPM/VPL); top1 is a medial subdivision of LaV, not matching.
4_unresolved_incorrect.csv
row 129
Ventral orbital area anterior (ventral /principal) pretectal nucleus
HOMBA:12187 / score 0.695
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Ventral orbital area is cortical; top1 is a pretectal nucleus in brainstem, anatomically off. | Ventral orbital area is frontal cortex; top1 is a pretectal nucleus, anatomically distinct. | Ventral orbital area is a prefrontal cortical region; top1 is an anterior pretectal nucleus, anatomically distinct.
4_unresolved_incorrect.csv
row 131
Lateral Cerebellar Nucleus lateral region of cerebellar hemisphere
HOMBA:AA30564 / score 0.700172
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
top1 is a cortical region, not the deep cerebellar nucleus queried. | query 'Lateral Cerebellar Nucleus' is a deep cerebellar nucleus; top1 'lateral region of cerebellar hemisphere' is a cortical region, anatomically different. | Lateral Cerebellar Nucleus is a deep cerebellar nucleus (dentate), while top1 'lateral region of cerebellar hemisphere' is a cortical region, anatomically different.
4_unresolved_incorrect.csv
row 132
Ventroposterior inferior thalamic nucleus pulvinar of thalamus
HOMBA:10409 / score 0.700393
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
top1 is a different thalamic nucleus (pulvinar), not the ventroposterior inferior nucleus. | query 'Ventroposterior inferior thalamic nucleus' is a specific thalamic nucleus; top1 'pulvinar of thalamus' is a different thalamic nucleus. | Ventroposterior inferior thalamic nucleus is a specific sensory thalamic nucleus, distinct from the pulvinar, which is a separate thalamic nuclear complex.
4_unresolved_incorrect.csv
row 136
Orbital cortex (ventrolateral) ventrolateral temporal cortex
HOMBA:13324 / score 0.715939
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
top1 identifies ventrolateral temporal cortex, which is a different region from orbital cortex; mismatch in lobe (temporal vs frontal). | Orbital cortex is frontal lobe; ventrolateral temporal cortex is temporal lobe, anatomically different region. | Orbital cortex (frontal lobe) vs ventrolateral temporal cortex (temporal lobe); anatomically different.
4_unresolved_incorrect.csv
row 138
Interanteromedial Thalamus ventral midline nuclei of thalamus
HOMBA:AA30276 / score 0.724368
不整合 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.85
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.75
Pass 3 / DeepSeek pro / prompt C 不整合 medium / 0.7
top1 identifies ventral midline nuclei, whereas interanteromedial is a distinct midline nucleus; not a correct match. | Interanteromedial nucleus is a specific midline nucleus; ventral midline nuclei typically refer to reuniens and rhomboid, not including interanteromedial. | Interanteromedial thalamus is a dorsal midline nucleus, not part of ventral midline nuclei; different sub-group.
4_unresolved_incorrect.csv
row 144
Pedunculopontine Nucleus pontine nucleus
HOMBA:12406 / score 0.739583
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Pedunculopontine nucleus is distinct from pontine nuclei; top1 is a different anatomical entity. | Pedunculopontine nucleus is distinct from pontine nucleus (pontine nuclei in pons); anatomically different. | Pedunculopontine nucleus is a tegmental nucleus, distinct from the basilar pontine nuclei; anatomically different structures.
4_unresolved_incorrect.csv
row 145
Ventrolateral thalamic nucleus rostral intralaminar nuclei of thalamus
HOMBA:10443 / score 0.744627
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Ventrolateral thalamic nucleus is distinct from rostral intralaminar nuclei; different nuclear groups. | Ventrolateral thalamic nucleus is part of lateral nuclear group; rostral intralaminar nuclei are a different group. Not the same structure. | Ventrolateral thalamic nucleus vs. rostral intralaminar nuclei are different nuclear groups in thalamus, not synonyms.
4_unresolved_incorrect.csv
row 147
Laterodorsal thalamic nucleus anterodorsal nucleus of thalamus
HOMBA:10393 / score 0.769656
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Laterodorsal thalamic nucleus and anterodorsal nucleus are distinct thalamic nuclei; not synonyms. | Laterodorsal thalamic nucleus is distinct from anterodorsal nucleus of thalamus. Different nuclei. | Laterodorsal nucleus and anterodorsal nucleus are distinct anterior thalamic nuclei, not parent or synonym.
4_unresolved_incorrect.csv
row 149
Juxtaparaventricular nucleus paraventricular nucleus of thalamus
HOMBA:10457 / score 0.773333
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Juxtaparaventricular nucleus is a distinct nucleus adjacent to paraventricular nucleus, not the same. | Juxtaparaventricular nucleus is adjacent to but distinct from paraventricular nucleus of thalamus. Not the same. | Juxtaparaventricular nucleus is adjacent to paraventricular nucleus, not the same structure.
4_unresolved_incorrect.csv
row 150
Precuneiform Nucleus cuneiform nucleus
HOMBA:12240 / score 0.773333
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Precuneiform nucleus and cuneiform nucleus are distinct structures; 'precuneiform' is not a synonym or variant of 'cuneiform'. | Precuneiform nucleus is a distinct structure anterior to the cuneiform nucleus; top1 is different. | Precuneiform nucleus is distinct from cuneiform nucleus; top1 names a different structure.
4_unresolved_incorrect.csv
row 151
A11 dopamine cell group A8 dopamine cell group
HOMBA:AA30843 / score 0.776304
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
A11 dopamine cell group is a different catecholaminergic cluster than A8 dopamine cell group. | A11 dopamine cell group is a different brainstem nucleus from A8; top1 is anatomically distinct. | A11 dopamine cell group is distinct from A8; they are separate populations.
4_unresolved_incorrect.csv
row 152
A13 dopamine cell group A8 dopamine cell group
HOMBA:AA30843 / score 0.776304
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
A13 dopamine cell group is a distinct hypothalamic group, not equivalent to A8 dopamine cell group. | A13 dopamine cell group is in hypothalamus; top1 A8 is retrorubral field; not the same. | A13 dopamine cell group is distinct from A8; separate hypothalamic vs midbrain group.
4_unresolved_incorrect.csv
row 153
Mesencephalic Reticular Formation isthmic reticular formation
HOMBA:15547 / score 0.777459
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Isthmic reticular formation is not synonymous with mesencephalic reticular formation; the queries differ in region. | Isthmic reticular formation is a subregion of the reticular formation; mesencephalic reticular formation is broader midbrain region; top1 is narrower. | Mesencephalic reticular formation is midbrain; isthmic reticular formation is in isthmus, different region.
4_unresolved_incorrect.csv
row 154
Spinal Trigeminal Nucleus Intermediate afferent nuclei of cranial nerves in pons
HOMBA:12436 / score 0.7809
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.75
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Spinal trigeminal nucleus intermediate is not the same as afferent nuclei of cranial nerves in pons; they are anatomically different. | Spinal trigeminal nucleus intermediate is a specific nucleus; top1 is a group of afferent nuclei in pons, a broader category that likely includes it. | Spinal trigeminal nucleus intermediate lies in medulla, not pons; top1 is a pontine grouping, different structure.
4_unresolved_incorrect.csv
row 155
Ventral periolivary nuclei solitary nucleus, ventral division
HOMBA:12568 / score 0.78137
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Ventral periolivary nuclei and solitary nucleus ventral division are distinct brainstem structures; not synonyms or related. | Ventral periolivary nuclei and solitary nucleus, ventral division are anatomically distinct structures; incorrect mapping. | Periolivary nuclei are part of superior olivary complex in pons; solitary nucleus is a distinct medullary complex. Anatomically unrelated.
4_unresolved_incorrect.csv
row 157
Cerebellar Lobule 10 Vermis cerebellar morphology
HOMBA:AA30563 / score 0.792065
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Cerebellar morphology is a general descriptor, not the specific cerebellar lobule 10 vermis structure. | Query 'Cerebellar Lobule 10 Vermis' is a specific subregion; top1 'cerebellar morphology' is a very broad but valid parent. | Query is a specific cerebellar lobule (X); 'cerebellar morphology' is a high-level morphological category, not a correct anatomical parent or the lobule itself.
4_unresolved_incorrect.csv
row 158
Cerebellar Lobule 1 Vermis cerebellar morphology
HOMBA:AA30563 / score 0.798634
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Cerebellar morphology is too broad and not an anatomical part for cerebellar lobule 1 vermis. | Query 'Cerebellar Lobule 1 Vermis' is a specific subregion; top1 'cerebellar morphology' is a very broad but valid parent. | Query is a specific cerebellar lobule (I); 'cerebellar morphology' is a general morphological category, not a valid anatomical container or the lobule.
4_unresolved_incorrect.csv
row 159
Cerebellar Lobule 2 Vermis cerebellar morphology
HOMBA:AA30563 / score 0.798634
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Cerebellar morphology is not a specific structure matching cerebellar lobule 2 vermis. | Query 'Cerebellar Lobule 2 Vermis' is a specific subregion; top1 'cerebellar morphology' is a very broad but valid parent. | Query is a specific cerebellar lobule (II); 'cerebellar morphology' is a general morphological category, not a valid anatomical container or the lobule.
4_unresolved_incorrect.csv
row 167
Medial Raphe fastigial (medial) nucleus
HOMBA:12402 / score 0.8075
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Medial Raphe refers to brainstem raphe nuclei; top1 fastigial nucleus is a cerebellar nucleus, anatomically different. | Medial Raphe refers to brainstem raphe nuclei; top1 'fastigial (medial) nucleus' is a deep cerebellar nucleus, anatomically different. | Medial Raphe refers to raphe nucleus; top1 is fastigial (medial) cerebellar nucleus, different structure.
4_unresolved_incorrect.csv
row 169
Dorsal Lateral Leminscus Nucleus lateral geniculate nucleus (dorsal lateral geniculate nucleus)
HOMBA:10429 / score 0.81101
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C ソース/HOMBA要確認 medium / 0.7
Query likely dorsal lateral lemniscus nucleus; top1 is lateral geniculate nucleus, an anatomically distinct thalamic nucleus. | Dorsal Lateral Leminscus Nucleus (likely misspelling of lemniscus) refers to auditory brainstem nucleus; top1 'lateral geniculate nucleus' is thalamic visual structure. | 'Leminscus' is likely a misspelling; ambiguous whether intended lemniscus (auditory) or geniculate, preventing definite consistency judgment.
4_unresolved_incorrect.csv
row 170
4th ventricle olfactory recess (ventricle) and ependyma
HOMBA:AA30475 / score 0.815
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
top1 is olfactory recess/ventricle, not 4th ventricle; anatomically different structure | 4th ventricle is a distinct brain ventricle; top1 refers to olfactory recess and ependyma, not 4th ventricle. | 4th ventricle is a hindbrain cavity; olfactory recess is a forebrain ventricular extension, anatomically different.
4_unresolved_incorrect.csv
row 171
Retroreuniens thalamic nucleus reuniens (medioventral) nucleus of thalamus
HOMBA:10403 / score 0.815
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
top1 is reuniens nucleus; query 'retroreuniens' is a distinct nucleus behind reuniens | Query specifies retroreuniens nucleus; top1 is reuniens nucleus, a different thalamic nucleus. | Retroreuniens nucleus is a distinct thalamic nucleus posterior to reuniens, not the reuniens nucleus itself.
4_unresolved_incorrect.csv
row 174
Ventromedial thalamic nucleus caudal intralaminar nuclei of thalamus
HOMBA:10448 / score 0.823683
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
top1 is caudal intralaminar nuclei; ventromedial thalamic nucleus is a different nucleus | Ventromedial thalamic nucleus is not part of caudal intralaminar nuclei; different structure. | Ventromedial thalamic nucleus is a ventral relay nucleus, not a caudal intralaminar nucleus; anatomically distinct.
4_unresolved_incorrect.csv
row 175
Dorsal Medial Hypothalamic Nucleus dorsal division of VMHco
HOMBA:10489 / score 0.842294
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
'Dorsal Medial Hypothalamic Nucleus' refers to dorsomedial hypothalamic nucleus, but top1 is dorsal division of VMHco (ventromedial hypothalamic nucleus), a different structure. | Query 'Dorsal Medial Hypothalamic Nucleus' likely refers to dorsomedial hypothalamic nucleus (DMH), but top1 is a division of ventromedial nucleus (VMH), a different structure. | Query likely dorsomedial hypothalamic nucleus; top1 is dorsal part of ventromedial nucleus, anatomically separate.
4_unresolved_incorrect.csv
row 177
Paraventricular hypothalamic nucleus dorsal midline nuclei of thalamus
HOMBA:AA30274 / score 0.866136
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 不整合 high / 1.0
Top1 'dorsal midline nuclei of thalamus' is in thalamus, while query 'Paraventricular hypothalamic nucleus' is in hypothalamus; anatomically different. | Query 'Paraventricular hypothalamic nucleus' is a hypothalamic structure; top1 'dorsal midline nuclei of thalamus' is from the thalamus, anatomically distinct. | Query is hypothalamic nucleus; top1 is thalamic nuclei, entirely different brain region.
4_unresolved_incorrect.csv
row 179
Lateral Ventral Amygdaloid Nucleus ventral amygdaloid efferent path
HOMBA:12093 / score 0.601114
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.97
Pass 3 / DeepSeek pro / prompt C 不整合 high / 1.0
Query is a nucleus (lateral ventral amygdaloid nucleus); top1 is a fiber tract (ventral amygdaloid efferent path), different structure type. | Query 'Lateral Ventral Amygdaloid Nucleus' is a nucleus; top1 'ventral amygdaloid efferent path' is a fiber tract, not the same anatomical entity. | Query is an amygdaloid nucleus; top1 is an efferent pathway, not a nucleus.
4_unresolved_incorrect.csv
row 180
Paraventricular hypothalamic nucleus (medial parvicellular dorsal zone) dorsal division of VMHco
HOMBA:10489 / score 0.640426
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Query specifies paraventricular hypothalamic nucleus, but top1 is dorsal division of ventromedial hypothalamic nucleus (VMHco), a different nucleus. | VMHco is ventromedial hypothalamus, not paraventricular nucleus. | Query is paraventricular hypothalamic nucleus subdivision; top1 is dorsal division of ventromedial hypothalamic nucleus, a different hypothalamic nucleus.
4_unresolved_incorrect.csv
row 181
Pretectothalamic lamina dentatothalamic tract
HOMBA:12357 / score 0.290576
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query 'Pretectothalamic lamina' refers to pretectum lamina, but top1 is 'dentatothalamic tract', a fiber tract from cerebellum. | Pretectothalamic lamina and dentatothalamic tract are different structures. | Pretectothalamic lamina involves pretectum; dentatothalamic tract originates from cerebellar dentate nucleus. Anatomically distinct.
4_unresolved_incorrect.csv
row 184
Spiral ganglion basal ganglia (basal nuclei)
HOMBA:10332 / score 0.325676
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 1.0
Query 'Spiral ganglion' is a cochlear structure, but top1 'basal ganglia' are forebrain nuclei; completely different systems. | Spiral ganglion (cochlear) vs basal ganglia (cerebral) are different. | Spiral ganglion is cochlear (inner ear); basal ganglia are cerebral nuclei. Anatomically unrelated.
4_unresolved_incorrect.csv
row 186
P1 Mesencephalic Reticulum mesencephalic trigeminal tract
HOMBA:12767 / score 0.406954
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Query is mesencephalic reticulum; top1 is a specific tract, not the reticular formation. | Query 'P1 Mesencephalic Reticulum' likely refers to midbrain reticular formation, but top1 is the mesencephalic trigeminal tract, a different structure. | P1 Mesencephalic Reticulum is a reticular formation region of midbrain; mesencephalic trigeminal tract is a fiber bundle, not a reticular area.
4_unresolved_incorrect.csv
row 188
Vestibular apparatus vestibular nuclei in pons
HOMBA:12448 / score 0.450809
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Vestibular apparatus includes peripheral and central parts; top1 is only central nuclei. | Query 'Vestibular apparatus' refers to peripheral inner ear structures, but top1 is central vestibular nuclei in pons, anatomically different. | Vestibular apparatus is the peripheral balance organ (semi-circular canals, utricle, saccule). Top1 (vestibular nuclei in pons) is a brainstem nucleus receiving its input, anatomically a different structure.
4_unresolved_incorrect.csv
row 190
Cochlea cochlear nuclei
HOMBA:12437 / score 0.46225
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Cochlea is the inner ear organ; cochlear nuclei are brainstem auditory nuclei. Anatomically distinct structures. | Cochlea is a sensory organ in the inner ear; cochlear nuclei are brainstem nuclei that process auditory input from the cochlea, anatomically distinct structures. | Cochlea is the peripheral auditory organ; cochlear nuclei are in the brainstem. Anatomically distinct.
4_unresolved_incorrect.csv
row 191
Central opercular cortex, anterior anterior lobe of cerebellar cortex
HOMBA:12838 / score 0.472507
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Central opercular cortex (frontal lobe) and anterior lobe of cerebellar cortex are different brain regions; no anatomical relation. | Central opercular cortex is part of the frontal lobe; anterior lobe of cerebellar cortex is part of the cerebellum, different brain regions. | Central opercular cortex is cerebral; anterior lobe of cerebellar cortex is cerebellar. Distinct structures.
4_unresolved_incorrect.csv
row 193
Ventricular system, unspecified ventricular zone of neocortex
HOMBA:10542 / score 0.483204
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Ventricular system (brain ventricles) is not the ventricular zone of neocortex; completely different anatomical entities. | Ventricular system comprises brain ventricles; ventricular zone is a developmental germinal layer, not part of the adult ventricular system. | Ventricular system refers to brain ventricles; ventricular zone of neocortex is an embryonic germinal layer.
4_unresolved_incorrect.csv
row 195
Retrosplenial dysgranular area dysgranular division of area prostriata
HOMBA:AA30028 / score 0.491053
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.85
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Retrosplenial dysgranular area is not the same as dysgranular division of area prostriata; area prostriata is a different cortical region. | Retrosplenial dysgranular area is synonymous with dysgranular division of area prostriata in the retrosplenial cortex. | Retrosplenial dysgranular area resides in retrosplenial cortex, not in area prostriata, which is a distinct cortical region.
4_unresolved_incorrect.csv
row 196
Fourth Nerve fourth ventricle
HOMBA:12805 / score 0.496163
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.99
Fourth Nerve (cranial nerve IV) is completely different from fourth ventricle (brain ventricle). | Fourth Nerve (cranial nerve IV) is anatomically distinct from the fourth ventricle, a brain cavity. | 'Fourth Nerve' is the trochlear nerve (CN IV); 'fourth ventricle' is a brainstem CSF cavity. Anatomically unrelated.
4_unresolved_incorrect.csv
row 197
Ventroposterior Inferior Thalamus ventral midline nuclei of thalamus
HOMBA:AA30276 / score 0.502419
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Ventroposterior Inferior Thalamus (VPI nucleus) is not the same as ventral midline nuclei of thalamus. | Ventroposterior inferior thalamus (VPi) is a specific nucleus, not equivalent to ventral midline nuclei of thalamus. | 'Ventroposterior Inferior Thalamus' likely denotes VPI nucleus; 'ventral midline nuclei' are a different intralaminar thalamic group.
4_unresolved_incorrect.csv
row 198
Cingulate area 1 cingulate subdivision of area 5
HOMBA:10217 / score 0.504041
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Cingulate area 1 is part of cingulate cortex; area 5 is parietal cortex, not cingulate. | Cingulate area 1 is a distinct cingulate cortical area; cingulate subdivision of area 5 refers to a different region in area 5. | 'Cingulate area 1' is a cingulate parcel; 'cingulate subdivision of area 5' belongs to area 5 in parietal lobe, not area 1.
4_unresolved_incorrect.csv
row 199
Cingulate area 2 cingulate subdivision of area 5
HOMBA:10217 / score 0.504041
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Cingulate area 2 is not synonymous with cingulate subdivision of area 5; area 5 is parietal. | Cingulate area 2 is a distinct cingulate cortical area; the top1 matches cingulate subdivision of area 5, not the same. | 'Cingulate area 2' is a cingulate parcel; 'cingulate subdivision of area 5' is a parietal area 5 subdivision, not area 2.
4_unresolved_incorrect.csv
row 200
Intracalcarine cortex, inferior inferior colliculus
HOMBA:12305 / score 0.506184
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Intracalcarine cortex is occipital visual area; inferior colliculus is midbrain auditory structure, anatomically distinct. | Intracalcarine cortex (occipital lobe) is anatomically distinct from inferior colliculus (midbrain auditory). | Intracalcarine cortex is visual cortex; inferior colliculus is a midbrain auditory structure. Anatomically distinct.
4_unresolved_incorrect.csv
row 201
Supratemporal plane, anterior rostral (anterior) branch of anterior commissure
HOMBA:AA30484 / score 0.510644
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Supratemporal plane is temporal lobe surface; rostral branch of anterior commissure is forebrain tract, not related. | Supratemporal plane is temporal cortex; top1 is anterior branch of anterior commissure (white matter tract), not the same region. | Supratemporal plane is a cortical surface of the temporal lobe; anterior commissure branch is a white matter tract. Unrelated.
4_unresolved_incorrect.csv
row 204
Cerebellar Lobule 3 Intermediate cerebellar morphology
HOMBA:AA30563 / score 0.547161
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.75
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query specific cerebellar lobule; top1 'cerebellar morphology' is a general concept, not a structure or parent. | Cerebellar Lobule 3 Intermediate is a specific lobule; 'cerebellar morphology' is a broad concept, not the named structure. | Query is a specific cerebellar lobule; top1 is a generic concept ('cerebellar morphology'), not the corresponding structure.
4_unresolved_incorrect.csv
row 208
Acoustic striae acoustic radiation
HOMBA:266441583 / score 0.548026
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Acoustic striae (brainstem fibers) and acoustic radiation (temporal lobe) are anatomically distinct auditory structures. | Acoustic striae is a brainstem auditory structure; acoustic radiation is a different thalamocortical tract. | Acoustic striae are brainstem auditory pathways; acoustic radiation is a thalamocortical tract, a different anatomical entity.
4_unresolved_incorrect.csv
row 209
Intracalcarine cortex, superior posterior parietal cortex
HOMBA:10214 / score 0.549864
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Intracalcarine cortex is in occipital lobe; posterior parietal cortex is in parietal lobe, different anatomical regions. | Intracalcarine cortex (primary visual) is anatomically distinct from posterior parietal cortex. | Intracalcarine cortex (superior) is primary visual cortex in occipital lobe; posterior parietal cortex is a different cortical region.
4_unresolved_incorrect.csv
row 210
Mircrocellular Tegmentum paracollicular tegmentum
HOMBA:12282 / score 0.556024
不整合 medium
2/3
2-1
majority_vote+low_certainty
Pass 1 / DeepSeek flash / prompt A ソース/HOMBA要確認 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 不整合 low / 0.3
Pass 3 / DeepSeek pro / prompt C 不整合 medium / 0.2
Query 'Mircrocellular Tegmentum' appears to be a misspelling; top1 'paracollicular tegmentum' is not a known synonym, making consistency judgment unreliable. | Query 'Mircrocellular Tegmentum' (likely misspelled) is not a direct synonym of 'paracollicular tegmentum'; these are distinct structures. | Query 'Mircrocellular Tegmentum' (likely microcellular tegmental nucleus) is not the same as top1 'paracollicular tegmentum', which is a different part of the tegmentum.
4_unresolved_incorrect.csv
row 213
Medial Dorsal Tegmentum magnocellular (dorsal) division of BM
HOMBA:11522 / score 0.592028
不整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Query 'Medial Dorsal Tegmentum' is midbrain tegmentum; top1 'magnocellular (dorsal) division of BM' is in basal forebrain, anatomically different. | Medial Dorsal Tegmentum is a tegmental region; top1 'magnocellular (dorsal) division of BM' is a basal forebrain structure, anatomically different. | Top1 is magnocellular dorsal division of nucleus basalis (BM), a basal forebrain structure, not the tegmental region 'Medial Dorsal Tegmentum'.
4_unresolved_incorrect.csv
row 214
Anterior Thalamus ventroanterior-ventrolateral nuclear complex of thalamus
HOMBA:AA30289 / score 0.592982
不整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Query 'Anterior Thalamus' refers to anterior nuclear group; top1 'ventroanterior-ventrolateral complex' is a ventral group, not the same. | Anterior Thalamus refers to anterior nuclear group, not ventroanterior-ventrolateral complex which is more ventral/lateral. | Query 'Anterior Thalamus' is the whole anterior region; top1 'ventroanterior-ventrolateral nuclear complex' is a specific subcomponent, not the full anterior thalamus.
1_highconf_correct.csv
row 71
Lenticular nucleus (putamen) putamen (lateroventral division of the CP)
HOMBA:10338 / score 1.0
部分一致・狭すぎ medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.8
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query 'Lenticular nucleus (putamen)' includes broader term; top1 is only putamen, a part of the lenticular nucleus. | Top1 covers only putamen part of lenticular nucleus; query specifies putamen but primary term includes full nucleus. | Query includes both lenticular nucleus and putamen; top1 is only putamen, a part of lenticular nucleus.
1_highconf_correct.csv
row 166
Lateral ventricle body of lateral ventricles
HOMBA:10598 / score 0.976667
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Top1 names only the body of the lateral ventricle, which is a subpart, while the query refers to the entire lateral ventricle. | Query 'Lateral ventricle' refers to entire structure; top1 'body of lateral ventricles' is a subdivision (narrower). | Query is whole lateral ventricle; top1 is only the body of the lateral ventricle, a subregion.
1_highconf_correct.csv
row 220
Habenula habenular nuclei
HOMBA:10452 / score 1.0
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.8
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Top1_name 'habenular nuclei' is an accepted synonym for 'Habenula' as confirmed by matched alias. | Query 'Habenula' is a broader region; top1 'habenular nuclei' is a subcomponent, not a synonym. | Habenula is broader (nuclei + tracts); top1 only names the nuclei, thus narrower.
1_highconf_correct.csv
row 233
Insular cortex major insular cortex
HOMBA:10288 / score 1.0
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Major insular cortex is a synonym for insular cortex in HOMBA. | Query is 'Insular cortex' but top1 is 'major insular cortex,' a subdivision, not the whole region. | Major insular cortex is a subdivision/part of the insular cortex, not the entire region.
1_highconf_correct.csv
row 275
Oculomotor complex oculomotor nucleus
HOMBA:12198 / score 1.0
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.75
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.97
Query 'oculomotor complex' implies broader structure (nucleus plus associated fibers), top1 is only the nucleus. | Query 'Oculomotor complex' is a broader term encompassing multiple structures, but top1 'oculomotor nucleus' is only one component, narrower than the query. | Oculomotor complex and nucleus are synonymous in anatomy.
1_highconf_correct.csv
row 381
Lateral ventricle body of lateral ventricles
HOMBA:10598 / score 0.976667
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query is whole lateral ventricle, top1 is restricted to its body. | Query 'Lateral ventricle' refers to the whole structure, but top1 'body of lateral ventricles' is a subpart (the body), which is narrower. | top1 'body of lateral ventricles' is only a subdivision of the lateral ventricle, not the whole ventricle as queried.
2_highconf_incorrect.csv
row 14
Medial parietal cortex superior medial parietal cortex
HOMBA:10215 / score 0.9975
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
top1 is a subdivision (superior part) of the queried medial parietal cortex, thus narrower. | Top1 names a subdivision (superior part) of the query's medial parietal cortex, so it is narrower. | top1 is superior medial parietal cortex, a specific subregion of the broader medial parietal cortex queried.
2_highconf_incorrect.csv
row 18
Lateral hypothalamic area lateral hypothalamic area, tuberal part
HOMBA:10494 / score 0.967588
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query is lateral hypothalamic area; top1 is a specific part (tuberal part), so narrower. | Top1 is a specific subdivision (tuberal part) of the broader lateral hypothalamic area queried. | top1 is tuberal part of lateral hypothalamic area, a narrower subregion of the queried broader area.
3_unresolved_correct.csv
row 4
Visual area V3 dorsal third visual area (V3D, V3)
HOMBA:AA30824 / score 0.624612
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query 'Visual area V3' is broader; top1 is a specific subdivision (dorsal third visual area) and not the whole V3. | Top1 is a synonym for V3; includes V3D and V3. | top1 is dorsal third visual area (V3D, V3), a dorsal subdivision of V3, not the full visual area V3 (which includes ventral V3).
3_unresolved_correct.csv
row 5
Olfactory cortex olfactory division of entorhinal cortex
HOMBA:11371 / score 0.640353
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.75
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.85
Query 'Olfactory cortex' is a broader region; top1 'olfactory division of entorhinal cortex' is a specific subdivision. | Top1 is a specific subdivision (olfactory division of entorhinal cortex), narrower than general olfactory cortex. | top1 is olfactory division of entorhinal cortex, a small subregion within the broader olfactory cortex; too narrow for the query.
3_unresolved_correct.csv
row 7
Medial insular area medial division of orbitofrontal insular cortex
HOMBA:AA30006 / score 0.649001
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Top1 'medial division of orbitofrontal insular cortex' is a specific subdivision that may partially correspond to 'medial insular area', but adds 'orbitofrontal' which is not explicit in query. | Medial division of orbitofrontal insular cortex likely corresponds to medial insular area. | top1 is medial division of orbitofrontal insular cortex, a specific subregion of the insula; likely a narrower component of the more general 'medial insular area'.
3_unresolved_correct.csv
row 8
Visual area V6 sixth visual area V6 , part A
HOMBA:267499151 / score 0.660445
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query 'Visual area V6' is general; top1 'sixth visual area V6, part A' is a specific part of V6. | Top1 is a subpart (part A) of V6, narrower than the general V6 query. | top1 is sixth visual area V6, part A (V6A), a distinct component of the V6 complex, not the whole visual area V6.
3_unresolved_correct.csv
row 17
Vagus (spinal accessory) neurons spinal accessory nucleus
HOMBA:AA30587 / score 0.729697
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.8
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Query mentions both vagus and spinal accessory neurons; top1 only covers spinal accessory nucleus. | Query mentions both vagus and spinal accessory neurons; top1 covers only spinal accessory nucleus, missing the vagus component. | Query references both vagus and spinal accessory neurons; top1 only captures the spinal accessory nucleus, missing the vagus component.
3_unresolved_correct.csv
row 19
Temporal frontal cortex (anterior) rostral division of area 22
HOMBA:10241 / score 0.759299
部分一致・狭すぎ medium
2/3
2-1
majority_vote+low_certainty
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C ソース/HOMBA要確認 low / 0.3
Query 'Temporal frontal cortex (anterior)' suggests both temporal and frontal components; top1 is only temporal (anterior superior temporal cortex), missing frontal. | Query includes 'frontal' but top1 is only rostral area 22 (temporal). Matched alias suggests anterior superior temporal cortex, missing frontal part. | Query 'Temporal frontal cortex (anterior)' appears misspelled or source-specific. Top1 'rostral division of area 22' is a specific superior temporal region; no clear anatomical mapping to the query.
3_unresolved_correct.csv
row 23
Paracentral lobule paracentral lobule, rostral part
HOMBA:12126 / score 0.789651
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query 'Paracentral lobule' refers to the whole structure; top1 is only the rostral part, a subdivision. | Query 'Paracentral lobule' is the whole structure, but top1 is only its rostral part. | Query is the whole paracentral lobule; top1 is only its rostral part, a subdivision.
3_unresolved_correct.csv
row 26
Frontal medial cortex medial orbital frontal cortex (area 14)
HOMBA:10195 / score 0.837395
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query is frontal medial cortex (broad medial frontal); top1 is medial orbital frontal cortex (area 14), a specific part. | Frontal medial cortex is broad; top1 medial orbital frontal cortex is a specific subregion, not exact match. | Query 'Frontal medial cortex' is broad; top1 'medial orbital frontal cortex' is a narrow subdivision, not covering the whole medial frontal surface.
3_unresolved_correct.csv
row 83
Cingulate gyrus (anterior posterior part) anterior cingulate cortex (ventromedial prefrontal cortex)
HOMBA:10278 / score 0.895
部分一致・狭すぎ medium
2/3
2-1
majority_vote+low_certainty
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 曖昧 low / 0.6
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Top1 anterior cingulate cortex is only the anterior part, while query specifies anterior posterior part, which seems to include both; top1 is narrower. | query modifier 'anterior posterior part' is ambiguous; top1 is anterior cingulate cortex, which may be partial or misinterpretation. | Query: cingulate gyrus (anterior posterior part); top1 covers only anterior cingulate cortex, missing the posterior component.
3_unresolved_correct.csv
row 89
Temporal pole (middle temporal gyrus) temporal pole (temporopolar cortex)
HOMBA:12146 / score 1.0
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query includes both temporal pole and middle temporal gyrus; top1 only covers temporal pole, missing the specified gyrus component. | Top1 matches 'Temporal pole' but ignores parenthetical 'middle temporal gyrus', covering only part of the compound query. | Query specifies temporal pole on the middle temporal gyrus; top1 is the entire temporal pole, a broader parent region.
3_unresolved_correct.csv
row 90
Temporal pole (superior temporal gyrus) temporal pole (temporopolar cortex)
HOMBA:12146 / score 1.0
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query includes both temporal pole and superior temporal gyrus; top1 only covers temporal pole, missing the gyrus part. | Top1 matches 'Temporal pole' but ignores parenthetical 'superior temporal gyrus', covering only part of the compound query. | Query specifies temporal pole on the superior temporal gyrus; top1 is the entire temporal pole, a broader parent region.
3_unresolved_correct.csv
row 92
Median cingulate and paracingulate gyri paracingulate gyrus
HOMBA:146034872 / score 0.455738
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.99
Query explicitly names two gyri (median cingulate and paracingulate); top1 only returns paracingulate gyrus. | Query includes both median cingulate and paracingulate gyri; top1 only returns paracingulate gyrus. | Query lists both median cingulate and paracingulate gyri; top1 covers only the paracingulate gyrus.
3_unresolved_correct.csv
row 97
Frontal opercular cortex inferior frontal gyrus, opercular part
HOMBA:12119 / score 0.498321
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Frontal opercular cortex is broader than the opercular part of IFG alone; top1 covers only a subregion. | Top1 is the exact anatomical region; 'frontal opercular cortex' refers to the opercular part of inferior frontal gyrus. | Frontal opercular cortex encompasses more than just the pars opercularis (e.g., precentral operculum); top1 is a specific subregion.
3_unresolved_correct.csv
row 98
Anterior cingulate and paracingulate gyri anterior cingulate cortex (ventromedial prefrontal cortex)
HOMBA:10278 / score 0.53058
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query includes both anterior cingulate and paracingulate gyri; top1 only covers anterior cingulate cortex. | Query includes both anterior cingulate and paracingulate gyri; top1 only covers anterior cingulate, missing the paracingulate component. | Query specifies both anterior cingulate and paracingulate gyri; top1 only matches anterior cingulate cortex, missing the paracingulate component.
3_unresolved_correct.csv
row 101
Calcarine fissure and surrounding cortex calcarine sulcus (fissure)
HOMBA:10612 / score 0.572195
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query includes 'surrounding cortex' but top1 only names the fissure, missing cortex. | Query includes surrounding cortex; top1 only covers the fissure itself, missing the cortex component. | Query includes both the calcarine fissure and surrounding cortex; top1 covers only the fissure, missing the cortical component.
3_unresolved_correct.csv
row 102
Intralaminar thalamic nuclei posterior marginal (intralaminar) nucleus of thalamus (PIL)
HOMBA:AA30311 / score 0.592628
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query refers to multiple intralaminar nuclei, top1 is a single nucleus (PIL). | Top1 is one specific intralaminar nucleus (PIL); query requests intralaminar nuclei (plural), which is broader. | Query is the plural group 'intralaminar thalamic nuclei'; top1 is a single specific nucleus (PIL), a subset of the group.
3_unresolved_correct.csv
row 107
Facial nerve, unspecified root of facial nerve
HOMBA:12862 / score 0.611513
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query for unspecified facial nerve; top1 is only the root, a narrow component. | Query is the general facial nerve; top1 'root of facial nerve' is a specific part, narrower than the whole nerve. | Query is the entire facial nerve; top1 is only the root of the facial nerve, a specific part, not the whole nerve.
3_unresolved_correct.csv
row 111
Justaparaventricular Lateral Hypothalamus accessory secretory cells of lateral hypothalamus
HOMBA:13337 / score 0.61498
部分一致・狭すぎ medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.8
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Query refers to a lateral hypothalamic region; top1 is a specific cell subset within that area. | Query is a lateral hypothalamus region; top1 is a specific cell type (accessory secretory cells) within that region, narrower than the region query. | Query is a region of lateral hypothalamus; top1 names a specific cell population within that region, narrower.
3_unresolved_correct.csv
row 116
Peduncular Lateral Hypothalamus accessory secretory cells of lateral hypothalamus
HOMBA:13337 / score 0.631824
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 不整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Top1 refers to a specific cell type (accessory secretory cells) within lateral hypothalamus, while query asks for the region 'Peduncular Lateral Hypothalamus'. Too narrow. | Query is a region (Peduncular Lateral Hypothalamus), top1 is a cell type (accessory secretory cells), anatomically off-structure. | Top1 is a specific cell type within lateral hypothalamus, much narrower than the queried peduncular lateral hypothalamic region.
3_unresolved_correct.csv
row 123
Zona Incerta and Lenticular Fascicles zona incerta
HOMBA:10463 / score 0.637706
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.98
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query is a compound structure ('Zona Incerta and Lenticular Fascicles'), but top1 only covers zona incerta, missing lenticular fascicles. | Query has two structures joined by 'and'; top1 only covers one (zona incerta), missing lenticular fascicles. | Query is a compound of 'Zona Incerta' and 'Lenticular Fascicles'; top1 matches only the zona incerta, missing the lenticular fascicles.
3_unresolved_correct.csv
row 125
Zona incerta, A11 dopamine cells zona incerta
HOMBA:10463 / score 0.649092
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.99
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Compound query 'Zona incerta, A11 dopamine cells' only partly covered by top1 'zona incerta'. | Query is compound ('Zona incerta, A11 dopamine cells'); top1 only covers 'zona incerta', missing the A11 cell group. | Query is a compound: zona incerta + A11 dopamine cells. Top1 only captures zona incerta, omitting the specific A11 cell group.
3_unresolved_correct.csv
row 126
Zona incerta, A13 dopamine cells zona incerta
HOMBA:10463 / score 0.649092
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.99
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Compound query 'Zona incerta, A13 dopamine cells' only partly covered by top1 'zona incerta'. | Query is compound ('Zona incerta, A13 dopamine cells'); top1 only covers 'zona incerta', missing the A13 cell group. | Query is a compound: zona incerta + A13 dopamine cells. Top1 only captures zona incerta, omitting the specific A13 cell group.
3_unresolved_correct.csv
row 129
Corticofugal tract and corona radiata corona radiata
HOMBA:12030 / score 0.655791
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query includes two structures (corticofugal tract and corona radiata); top1 covers only corona radiata. | Query is compound (two structures); top1 covers only 'corona radiata', missing 'corticofugal tract'. | top1 covers only corona radiata, missing corticofugal tract from the compound query.
3_unresolved_correct.csv
row 132
Vestibular nerve root of vestibulocochlear nerve
HOMBA:12868 / score 0.665229
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.85
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Query is the whole vestibular nerve; top1 is its root (root of vestibulocochlear nerve), which is a subpart and includes both components. | Top1 'root of vestibulocochlear nerve' is broader than the specific 'vestibular nerve' branch. | Vestibular nerve is the full nerve; root of vestibulocochlear nerve is only part of the nerve pathway, making top1 narrower.
3_unresolved_correct.csv
row 139
Ventromedial Posterior+basal Thalamus ventral posterior nuclear complex of thalamus
HOMBA:10423 / score 0.683433
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query names two regions (Ventromedial Posterior and basal Thalamus). Top1 covers only the ventral posterior nuclear complex, not the basal part. | Query combines ventromedial, posterior, and basal thalamus; top1 only covers ventral posterior complex, missing other components. | Query is a compound structure (Ventromedial Posterior+basal Thalamus); top1 corresponds to only the ventral posterior part, ignoring the basal thalamus.
3_unresolved_correct.csv
row 143
Lamina terminalis and vascular organ lamina terminalis
HOMBA:12105 / score 0.690325
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query names two structures (lamina terminalis and vascular organ); top1 only covers lamina terminalis. | Query includes lamina terminalis and vascular organ; top1 covers only lamina terminalis, missing the vascular organ. | Query includes 'vascular organ' (likely organum vasculosum of lamina terminalis) in addition to lamina terminalis; top1 only matches the lamina terminalis, missing the vascular organ.
3_unresolved_correct.csv
row 150
Zona incerta and H fields zona incerta
HOMBA:10463 / score 0.715544
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query includes both zona incerta and H fields; top1 only covers zona incerta, missing H fields. | Query specifies 'zona incerta and H fields' but top1 covers only zona incerta, missing the H fields component. | Top1 only covers 'zona incerta', missing 'H fields' (fields of Forel); partial match to compound query.
3_unresolved_correct.csv
row 151
Parietal association cortex, medial area superior medial parietal cortex
HOMBA:10215 / score 0.716234
部分一致・狭すぎ medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Query specifies parietal medial area; top1 is superior medial parietal cortex, a more specific subregion (narrower). | Query is medial area of parietal association cortex; top1 is 'superior medial' which is a more specific subdivision, thus narrower. | Top1 is 'superior medial parietal cortex', a subdivision of the larger 'medial area' of parietal association cortex; likely narrower.
3_unresolved_correct.csv
row 153
Parietal association cortex, lateral area inferior lateral parietal cortex
HOMBA:10225 / score 0.717914
部分一致・狭すぎ medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Query is parietal lateral area; top1 is inferior lateral parietal cortex, a more specific inferior subregion (narrower). | Query is lateral area of parietal association cortex; top1 is 'inferior lateral' which is a more specific subdivision, thus narrower. | Top1 'inferior lateral parietal cortex' is a part of the lateral parietal association cortex, not the entire lateral area; likely narrower.
3_unresolved_correct.csv
row 175
Central canal central canal of medulla oblongata
HOMBA:12826 / score 0.760417
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query is general 'central canal'; top1 is limited to central canal of medulla oblongata, missing the spinal cord portion. | top1 refers to medullary portion, query covers entire central canal | Central canal refers to the entire spinal cord central canal; top1 is only its medullary portion, a narrower component.
3_unresolved_correct.csv
row 189
Superior cerebellar peduncle and prerubral field superior cerebellar peduncle (brachium conjunctivum)
HOMBA:12354 / score 0.775873
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query includes both superior cerebellar peduncle and prerubral field; top1 covers only the peduncle. | Query includes two structures; top1 only covers superior cerebellar peduncle, missing prerubral field. | Compound query: superior cerebellar peduncle AND prerubral field. Top1 matches only the peduncle; prerubral field is missing.
3_unresolved_correct.csv
row 191
Anterior commissure, posterior limb interstitial nucleus of posterior limb of anterior commissure (fundus of striatum)
HOMBA:10388 / score 0.778847
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Query 'anterior commissure, posterior limb' is the tract; top1 is the interstitial nucleus within that limb, a narrower component. | Query 'anterior commissure, posterior limb' likely refers to fiber tract; top1 is a nucleus within that limb, narrower scope. | Query is the posterior limb of the anterior commissure (fiber tract). Top1 is the interstitial nucleus within that limb, a distinct grey matter structure.
3_unresolved_correct.csv
row 201
Medullar Reticular Nucleus medullary reticular nucleus, ventral division (medial reticular nucleus)
HOMBA:12640 / score 0.816244
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.8
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query refers to medullary reticular nucleus generally, but top1 is specifically the ventral division (medial reticular nucleus), a narrower subdivision. | Query 'Medullar Reticular Nucleus' is general; top1 specifies 'ventral division (medial reticular nucleus)', which is a subdivision, thus narrower. | Query likely refers to the whole medullary reticular nucleus; top1 specifies only the ventral/medial division, which is a narrower component.
3_unresolved_correct.csv
row 208
Precentral gyrus, medial/supplementary motor area medial division of area 6 (supplementary motor area)
HOMBA:AA30012 / score 0.827822
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.97
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.97
top1 covers only the supplementary motor area, ignoring the precentral gyrus part of the query. | Top1 covers only the supplementary motor area component of the compound query, missing the precentral gyrus part. | Top1 covers only the supplementary motor area portion, not the precentral gyrus; query is compound.
3_unresolved_correct.csv
row 209
Frontal medial cortex medial orbital frontal cortex (area 14)
HOMBA:10195 / score 0.837395
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Top1 is a specific subregion (medial orbital frontal cortex) of the broader query 'Frontal medial cortex'; not exact match. | Query 'Frontal medial cortex' is broader; top1 'medial orbital frontal cortex' is a specific subregion. Narrower match. | Medial orbital frontal cortex is on the ventral (orbital) surface, not the medial surface of the frontal lobe.
3_unresolved_correct.csv
row 211
Medial orbital area medial orbital gyrus
HOMBA:12122 / score 0.841567
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Medial orbital area' is broader than top1 'medial orbital gyrus', which is a specific gyrus. | Query 'Medial orbital area' is broader; top1 'medial orbital gyrus' is a specific gyrus. Partial match. | Medial orbital area is a standard synonym for medial orbital gyrus.
3_unresolved_correct.csv
row 217
Septum and diagonal band diagonal band
HOMBA:12034 / score 0.854167
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
query includes both septum and diagonal band; top1 only covers diagonal band, missing septum. | Query includes both septum and diagonal band; top1_name only covers diagonal band, missing septum. | Query is a compound structure (septum + diagonal band); top1 only covers the diagonal band component, missing the septum entirely.
3_unresolved_correct.csv
row 221
Periventricular gray periventricular gray of pons
HOMBA:AA30845 / score 0.856667
部分一致・狭すぎ medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query 'Periventricular gray' is general; top1 specifies periventricular gray of pons, a narrower locus. | Query 'Periventricular gray' is broader (brainstem-wide); top1 is specifically periventricular gray of pons, covering only part of the query's likely scope. | Query is general 'Periventricular gray'; top1 is 'periventricular gray of pons', a specific part too narrow for the broad query.
3_unresolved_correct.csv
row 228
Parvicellular and Intermediate Reticular Nuclei parvicellular reticular nucleus
HOMBA:12618 / score 0.876067
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.97
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query refers to both parvicellular and intermediate reticular nuclei, but top1 only covers parvicellular; missing the intermediate component. | Query includes both parvicellular and intermediate reticular nuclei; top1 only covers parvicellular. | Query includes two nuclei; top1 covers only parvicellular reticular nucleus, missing intermediate reticular nucleus.
3_unresolved_correct.csv
row 244
Posterior thalamic nuclear group (triangular part) posterior nucleus of thalamus
HOMBA:10440 / score 0.633668
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.7
Top1 is 'posterior nucleus of thalamus', a specific nucleus within the broader 'posterior thalamic nuclear group'; query includes 'triangular part' modifier, so top1 is narrower/partial. | top1 names only the posterior nucleus, not the full posterior thalamic nuclear group including triangular part | Query asks for triangular part of posterior thalamic group; top1 is the whole posterior nucleus, a likely parent structure.
3_unresolved_correct.csv
row 257
Intermediate+ventral Lateral Lemniscus Nuclei intermediate nucleus of lateral lemniscus
HOMBA:12456 / score 0.860049
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Top1 covers only the intermediate nucleus, missing the ventral nucleus of lateral lemniscus. | Query includes both intermediate and ventral nuclei of lateral lemniscus; top1 only covers intermediate. | Query combines intermediate and ventral nuclei of lateral lemniscus; top1 only covers the intermediate nucleus, missing the ventral component.
3_unresolved_correct.csv
row 270
Fields of Forel nucleus of the field of Forel
HOMBA:10462 / score 0.446861
部分一致・狭すぎ medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.75
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query 'Fields of Forel' refers to a broader region including multiple fields; top1 'nucleus of the field of Forel' is a specific nucleus within that region, not the entire fields. | Fields of Forel are white matter zones; top1 is a specific nucleus within that region, narrower in scope. | Query refers to the entire Fields of Forel region; top1 is a specific nucleus within it, therefore narrower.
3_unresolved_correct.csv
row 273
Centromedian and parafascicular thalamic complex parafascicular nucleus of thalamus
HOMBA:10450 / score 0.512572
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query specifies 'Centromedian and parafascicular thalamic complex' (two components); top1 only covers 'parafascicular nucleus', missing centromedian component. | Query names centromedian and parafascicular complex; top1 covers only the parafascicular nucleus, missing half. | Query includes both centromedian and parafascicular thalamic nuclei; top1 covers only parafascicular, partial match.
3_unresolved_correct.csv
row 274
Visceral Motor Nuclei efferent nuclei of the cranial nerves in midbrain
HOMBA:12196 / score 0.514851
部分一致・狭すぎ medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.65
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Top1 covers only midbrain efferent nuclei, not all visceral motor nuclei; partial match. | Visceral Motor Nuclei include all cranial nerve visceral motor nuclei, but top1 is limited to those in the midbrain. | Query is general visceral motor nuclei; top1 specifies only the midbrain subset, making it narrower.
4_unresolved_incorrect.csv
row 113
Ethmoid-Limitans nucleus ethmoid thalamic nucleus
HOMBA:AA30314 / score 0.63091
部分一致・狭すぎ medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.75
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Query 'Ethmoid-Limitans' likely includes limitans; top1 only covers ethmoid thalamic nucleus. | top1 only covers ethmoid part; query includes both ethmoid and limitans, so top1 is partial. | Query 'Ethmoid-Limitans nucleus' likely combines ethmoid and limitans components; top1 'ethmoid thalamic nucleus' covers only the ethmoid part, missing limitans.
4_unresolved_incorrect.csv
row 130
Caudate putamen caudate-putamen cell bridges
HOMBA:146034746 / score 0.69875
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
top1 is a component (cell bridges) of the caudate-putamen, not the whole structure. | query 'Caudate putamen' is the combined caudate and putamen; top1 'caudate-putamen cell bridges' is a specific subcomponent, not the whole. | top1 'caudate-putamen cell bridges' is a specific subcomponent (cell bridges) within the broader caudate putamen complex, not the whole structure.
4_unresolved_incorrect.csv
row 141
Optic tract and optic chiasm optic chiasm
HOMBA:10644 / score 0.727822
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.98
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query includes both optic tract and chiasm; top1 only covers chiasm, missing tract. | Query includes optic tract and optic chiasm; top1 only covers optic chiasm, missing tract. | Query includes both optic tract and optic chiasm; top1 only matches the optic chiasm component.
4_unresolved_incorrect.csv
row 143
Superior Olive medial superior olivary nucleus
HOMBA:12470 / score 0.734583
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query refers to entire superior olivary complex; top1 is only the medial nucleus. | Superior olive includes medial and lateral nuclei; top1 medial superior olivary nucleus is a subdivision. | Superior Olive typically denotes the entire superior olivary complex; medial superior olivary nucleus is only one subnucleus.
4_unresolved_incorrect.csv
row 156
Optic tract/chiasma optic tract
HOMBA:10589 / score 0.788377
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.93
Query includes both optic tract and chiasma, but top1 only covers optic tract, missing the chiasma component. | Query is compound 'Optic tract/chiasma'; top1 covers only 'optic tract', missing chiasma. | Query is a compound 'Optic tract/chiasma'; top1 names only the optic tract, missing the optic chiasma component.
4_unresolved_incorrect.csv
row 176
Occulomotor Nerve root of occulomotor nerve
HOMBA:12376 / score 0.856667
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query 'Occulomotor Nerve' is the whole nerve; top1 'root of occulomotor nerve' is a part of it, thus narrower. | Query is 'Occulomotor Nerve'; top1 is 'root of occulomotor nerve', a subcomponent of the nerve, not the whole nerve itself. | Top1 is root of occulomotor nerve, a specific part, not the whole nerve.
4_unresolved_incorrect.csv
row 185
Intramedullary thalamic area interanteromedial nucleus of thalamus
HOMBA:13048 / score 0.381754
部分一致・狭すぎ medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.98
Query refers to a thalamic area; top1 is a specific nucleus, likely narrower. | Top1 is a specific thalamic nucleus, but query is a broader area ('Intramedullary thalamic area'), so top1 is narrower. | Intramedullary thalamic area refers to internal medullary lamina region; interanteromedial nucleus is a distinct specific nucleus, not the medullary area.
4_unresolved_incorrect.csv
row 187
External medullary lamina, auditory radiation external medullary lamina of globus pallidus
HOMBA:12037 / score 0.445726
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Compound query; top1 covers only first part (external medullary lamina), missing auditory radiation. | Top1 covers only 'external medullary lamina', missing 'auditory radiation' component of compound query. | Query is compound (External medullary lamina + auditory radiation). Top1 matches only the external medullary lamina, missing the auditory radiation entirely.
4_unresolved_incorrect.csv
row 189
Hypothalamic region, unspecified hypothalamic sulcus
HOMBA:10607 / score 0.453071
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.85
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Hypothalamic region is broad; top1 is a specific sulcus within it. | Query is a broad hypothalamic region, top1 is a specific sulcus, which is a narrower structure within the hypothalamus. | Query is the broad hypothalamic region. Top1 hypothalamic sulcus is a specific groove on the third ventricle wall, a very narrow landmark within that region, not the region itself.
4_unresolved_incorrect.csv
row 202
Brainstem, unspecified gray matter of midbrain (mesencephalon, upper brainstem)
HOMBA:10648 / score 0.530552
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.8
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Query is whole brainstem; top1 is only midbrain gray matter, a subcomponent. | Top1 is gray matter of midbrain, a specific subpart of brainstem; query 'brainstem, unspecified' is broader. | Query is entire brainstem; top1 is only the gray matter of the midbrain, a subregion. Partial/narrower coverage.
4_unresolved_incorrect.csv
row 212
Vestibulochoclear Nerve root of vestibulocochlear nerve
HOMBA:12868 / score 0.585
部分一致・狭すぎ high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query 'Vestibulochoclear Nerve' refers to the whole nerve; top1 'root of vestibulocochlear nerve' is a specific subdivision, thus narrower. | Query is 'Vestibulochoclear Nerve', but top1 'root of vestibulocochlear nerve' is a subpart (root) of the whole nerve. | Top1 'root of vestibulocochlear nerve' is only the proximal portion, not the entire nerve queried.
4_unresolved_incorrect.csv
row 203
Mediolateral Fascicle cuneate fasciculus
HOMBA:12731 / score 0.537009
ソース/HOMBA要確認 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A ソース/HOMBA要確認 medium / 0.7
Pass 2 / DeepSeek flash / prompt B ソース/HOMBA要確認 medium / 0.7
Pass 3 / DeepSeek pro / prompt C ソース/HOMBA要確認 medium / 0.7
Query 'Mediolateral Fascicle' not standard; top1 'cuneate fasciculus' suggests possible misspelling or nonstandard term. | 'Mediolateral Fascicle' is non-standard; cuneate fasciculus may be a different tract, likely misspelling or missing in ontology. | Query 'Mediolateral Fascicle' is not a standard, unambiguous anatomical term; likely source-specific. Cannot strictly judge consistency.
2_highconf_incorrect.csv
row 12
Vestibular Nucleus vestibular nuclei in pons
HOMBA:12448 / score 1.0
判定不一致 low
1/3
1-1-1
split_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.85
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Query is general 'Vestibular Nucleus', top1 specifies 'vestibular nuclei in pons', a narrower region. Anatomically related but more specific. | Query 'Vestibular Nucleus' singular may refer to a specific nucleus; top1 is the plural group 'vestibular nuclei in pons', a valid parent. | Vestibular Nucleus refers to the vestibular nuclear complex; top1 'vestibular nuclei in pons' is the same entity, plural form and locational qualifier do not change identity.
3_unresolved_correct.csv
row 9
Temporal occipital fusiform cortex ventrolateral temporal cortex
HOMBA:13324 / score 0.674326
判定不一致 low
1/3
1-1-1
split_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.7
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 is ventrolateral temporal cortex, which does not include occipital or fusiform parts of the query compound region. | Query 'Temporal occipital fusiform cortex' is a specific fusiform region spanning temporal and occipital lobes, but top1 'ventrolateral temporal cortex' is a different lateral temporal area, not an accepted synonym or parent. | Fusiform cortex is part of the ventrolateral temporal cortex; top1 is the correct anatomical parent region.
3_unresolved_correct.csv
row 25
Secondary visual cortex dorsolateral extrastriate occipital cortex
HOMBA:AA30822 / score 0.83465
判定不一致 low
1/3
1-1-1
split_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is secondary visual cortex (broad); top1 specifies dorsolateral extrastriate occipital cortex, a narrower subdivision. | Secondary visual cortex is synonym for extrastriate cortex; top1 is specific extrastriate region, accepted alias. | Secondary visual cortex (V2) is a specific area within the broader extrastriate occipital cortex, which the top1 names.
3_unresolved_correct.csv
row 94
Rolandic operculum frontal operculum
HOMBA:12127 / score 0.483531
判定不一致 low
1/3
1-1-1
split_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Rolandic operculum refers to central/sensorimotor operculum, not frontal operculum; anatomically different region. | Top1 is a broader region; Rolandic operculum is a specific part of the operculum, frontal operculum is a more general region. | Rolandic operculum consists of both precentral (frontal) and postcentral (parietal) opercular parts; frontal operculum covers only the anterior component.
3_unresolved_correct.csv
row 187
Ventral Lateral Posteroventral Thalamus ventral lateral nucleus of thalamus
HOMBA:10420 / score 0.774846
判定不一致 low
1/3
1-1-1
split_vote+low_certainty
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.7
Pass 3 / DeepSeek pro / prompt C ソース/HOMBA要確認 low / 0.65
top1 matches only 'ventral lateral' part of query, missing 'posteroventral' modifier; likely a subdivision. | Query 'Ventral Lateral Posteroventral Thalamus' matches ventral lateral nucleus of thalamus; top1 is synonym despite extra words. | Query 'Ventral Lateral Posteroventral Thalamus' is oddly phrased; HOMBA top1 is ventral lateral nucleus, but 'posteroventral' modifier is unclear, likely source-specific or misspelling.
3_unresolved_correct.csv
row 248
Ventral Lateral Anterior Thalamus ventral anterior nucleus of thalamus
HOMBA:10417 / score 0.743407
判定不一致 low
1/3
1-1-1
split_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 整合 medium / 0.8
Query 'Ventral Lateral Anterior Thalamus' likely refers to a combination of ventral lateral and ventral anterior; top1 'ventral anterior nucleus' omits 'lateral', so mismatched. | top1 covers only the anterior component, missing the lateral part indicated in the query | Ventral lateral anterior thalamus likely refers to the ventral anterior nucleus; top1 matches that nucleus exactly, ignoring superfluous lateral modifier.
3_unresolved_correct.csv
row 272
Ventrolateral Tegmentum pontine tegmentum
HOMBA:12416 / score 0.508195
判定不一致 low
1/3
1-1-1
split_vote+low_certainty
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 曖昧 low / 0.5
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.75
Query 'Ventrolateral Tegmentum' likely refers to ventral tegmental area (midbrain); top1 'pontine tegmentum' is a different anatomical region (pons). Not a correct parent or synonym. | Ventrolateral tegmentum is ambiguous; may refer to VTA or part of pontine tegmentum; top1 is broader but not clearly matching. | Pontine tegmentum is the parent region; query specifies a ventrolateral subdivision, so top1 is broader.
4_unresolved_incorrect.csv
row 30
Paracentral area 5mv paracentral lobule, rostral part
HOMBA:12126 / score 0.468271
判定不一致 low
1/3
1-1-1
split_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.65
Pass 3 / DeepSeek pro / prompt C 不整合 medium / 0.7
Top1 is a specific part of paracentral lobule, but query refers to area 5mv, not necessarily the rostral part. | Paracentral area is synonymous with paracentral lobule; rostral part is a valid subdivision, although '5mv' modifier not explicitly captured. | Paracentral area 5 is likely Brodmann area 5 in the superior parietal lobule, not in the rostral part of the paracentral lobule.
4_unresolved_incorrect.csv
row 31
Paracentral area 5L paracentral lobule, rostral part
HOMBA:12126 / score 0.473193
判定不一致 low
1/3
1-1-1
split_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.65
Pass 3 / DeepSeek pro / prompt C 不整合 medium / 0.7
Top1 is a specific part of paracentral lobule, but query refers to area 5L, not necessarily the rostral part. | Paracentral area is synonymous with paracentral lobule; rostral part is valid, though '5L' modifier not explicitly captured. | Paracentral area 5L is a subdivision of area 5, which is not part of the paracentral lobule; top1 is anatomically misaligned.
4_unresolved_incorrect.csv
row 32
Paracentral area 5m paracentral lobule, rostral part
HOMBA:12126 / score 0.473193
判定不一致 low
1/3
1-1-1
split_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.65
Pass 3 / DeepSeek pro / prompt C 不整合 medium / 0.7
Top1 is a specific part of paracentral lobule, but query refers to area 5m, not necessarily the rostral part. | Paracentral area is synonymous with paracentral lobule; rostral part is valid, though '5m' modifier not explicitly captured. | Paracentral area 5m is a subarea of area 5, which is not located in the rostral paracentral lobule; mismatch.
4_unresolved_incorrect.csv
row 192
Linear raphe linear nucleus of the midbrain
HOMBA:12230 / score 0.476073
判定不一致 low
1/3
1-1-1
split_vote+low_certainty
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 曖昧 low / 0.4
Pass 3 / DeepSeek pro / prompt C 整合 medium / 0.8
Linear raphe typically refers to raphe linearis (medulla/pons), not the linear nucleus of the midbrain; likely different structure. | Linear raphe may refer to the linear nucleus of the midbrain (raphe linearis), but the term is not standard; unclear if it is a direct synonym or different structure. | Linear raphe likely denotes the linear raphe nucleus, synonymous with linear nucleus of the midbrain. Minor name variant.
4_unresolved_incorrect.csv
row 194
Capsule of the Antherior Thalamus thalamus
HOMBA:10390 / score 0.49017
判定不一致 low
1/3
1-1-1
split_vote+low_certainty
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 曖昧 low / 0.5
Query specifies 'capsule' of anterior thalamus; top1 is just thalamus, missing the capsule component and not equivalent. | Query specifies capsule of anterior thalamus; top1 is thalamus, the broader parent structure, anatomically correct but not exact. | Query misspelled. 'Capsule of the Antherior Thalamus' is ambiguous; unclear if it refers to a capsule-like structure or if top1 thalamus is broader or wrong.
3_unresolved_correct.csv
row 193
Arcuate nucleus arcuate nucleus of medulla oblongata
HOMBA:12536 / score 0.786859
曖昧 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 曖昧 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 曖昧 medium / 0.6
Pass 3 / DeepSeek pro / prompt C 曖昧 medium / 0.5
Query 'arcuate nucleus' is ambiguous (hypothalamic vs medullary); top1 specifies medullary, but no context to determine intent. | Query 'arcuate nucleus' ambiguous (hypothalamus vs medulla); top1 picks medulla, but not clearly aligned or wrong. | Query 'Arcuate nucleus' is ambiguous (hypothalamic vs. medullary). Without context, cannot determine if top1's medullary choice is correct.
3_unresolved_correct.csv
row 229
Internal medullary lamina internal medullary lamina of globus pallidus
HOMBA:12062 / score 0.8775
曖昧 medium
2/3
2-1
majority_vote+low_certainty
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 曖昧 low / 0.6
Pass 3 / DeepSeek pro / prompt C 曖昧 medium / 0.6
top1 is the same anatomical structure as query, with additional anatomical context specifying location within globus pallidus. | Query 'Internal medullary lamina' could refer to thalamic or pallidal lamina; top1 specifies pallidal variant, but ambiguity remains. | Internal medullary lamina could refer to thalamic or pallidal structure. Top1 specifies globus pallidus; ambiguous without context.
3_unresolved_correct.csv
row 281
Peri-basal region basal forebrain
HOMBA:10349 / score 0.569163
曖昧 medium
2/3
2-1
majority_vote+low_certainty
Pass 1 / DeepSeek flash / prompt A 曖昧 low / 0.4
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.75
Pass 3 / DeepSeek pro / prompt C 曖昧 low / 0.5
Query 'Peri-basal region' is non-standard; top1 'basal forebrain' could be related but not clearly equivalent or broader. | 'Peri-basal region' likely refers to area around basal forebrain; top1 is the broader parent structure. | Query 'Peri-basal region' likely means area surrounding basal forebrain, but top1 is basal forebrain itself. Ambiguous mapping.
1_highconf_correct.csv
row 9
Anterior thalamic nucleus anterior nuclear complex of thalamus
HOMBA:10392 / score 1.0
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Query 'anterior thalamic nucleus' (singular) is a component of 'anterior nuclear complex of thalamus'; top1 is broader parent. | Top1 is broader: anterior nuclear complex includes the anterior thalamic nucleus. Anatomically correct parent. | Query refers to anterior thalamic nucleus group; top1 is the accepted complex (anterior nuclear complex of thalamus). Singular/plural variation does not change the anatomical entity.
1_highconf_correct.csv
row 250
Medial amygdaloid nucleus medial nuclear complex of amygdala
HOMBA:10376 / score 1.0
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
'Medial amygdaloid nucleus' is part of the 'medial nuclear complex of amygdala'; top1 is broader parent. | Medial amygdaloid nucleus is a specific nucleus; medial nuclear complex of amygdala is a broader grouping containing it. | Medial amygdaloid nucleus is a specific division; top1 'medial nuclear complex of amygdala' is the broader parent complex, not the exact nucleus.
2_highconf_incorrect.csv
row 5
Ventral posterior internal thalamic nucleus ventral posterior nuclear complex of thalamus
HOMBA:10423 / score 0.968565
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
'Ventral posterior internal thalamic nucleus' is a subnucleus of 'ventral posterior nuclear complex'; top1 is broader parent. | Top1 is the broader nuclear complex that includes the internal subnucleus; accurate parent. | Query likely refers to ventral posterior medial nucleus; top1 is the entire ventral posterior complex, anatomically correct parent.
2_highconf_incorrect.csv
row 6
Internal globus pallidus globus pallidus (paleostriatum)
HOMBA:10342 / score 0.938625
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
'Internal globus pallidus' is a subdivision of 'globus pallidus'; top1 is the whole structure (parent). | Top1 is the whole globus pallidus, broader than the internal segment; valid parent. | Query specifies internal segment of globus pallidus; top1 is the whole globus pallidus, the broader parent structure.
2_highconf_incorrect.csv
row 9
Lateral posterior thalamic nucleus, lateral part lateral posterior nucleus of thalamus
HOMBA:10408 / score 1.0
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Top1 names the parent nucleus (lateral posterior nucleus of thalamus) while query specifies a subpart (lateral part). Anatomically correct but broader. | Top1 is the parent nucleus of the queried subpart (lateral part) minus the modifier. | Query specifies 'lateral part' of lateral posterior thalamic nucleus; top1 is the whole nucleus, missing the part-specific subdivision.
2_highconf_incorrect.csv
row 10
Lateral posterior thalamic nucleus, mediocaudal part lateral posterior nucleus of thalamus
HOMBA:10408 / score 1.0
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Top1 names the parent nucleus, query specifies mediocaudal part. Broader but correct parent. | Top1 is the parent nucleus of the queried subpart (mediocaudal part) minus the modifier. | Query specifies 'mediocaudal part'; top1 is the entire lateral posterior nucleus, not the subregion.
2_highconf_incorrect.csv
row 11
Lateral posterior thalamic nucleus, mediorostral part lateral posterior nucleus of thalamus
HOMBA:10408 / score 1.0
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Top1 names the parent nucleus, query specifies mediorostral part. Broader but correct parent. | Top1 is the parent nucleus of the queried subpart (mediorostral part) minus the modifier. | Query specifies 'mediorostral part'; top1 is the whole nucleus, not the requested subpart.
2_highconf_incorrect.csv
row 15
Ventral cochlear nucleus, cap area ventral cochlear nucleus
HOMBA:12439 / score 0.9975
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies cap area of ventral cochlear nucleus; top1 is the parent structure without the subregion. | Top1 is the whole ventral cochlear nucleus, while query specified its cap area; top1 is parent structure. | query specifies the cap area of the ventral cochlear nucleus; top1 returns the entire nucleus (broader parent).
2_highconf_incorrect.csv
row 17
Ventral cochlear nucleus, anterior part ventral cochlear nucleus
HOMBA:12439 / score 0.968684
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies anterior part of ventral cochlear nucleus; top1 is the broader ventral cochlear nucleus. | Top1 is the whole ventral cochlear nucleus, while query asked for anterior part; parent structure. | query specifies anterior part of ventral cochlear nucleus; top1 is the entire nucleus (broader parent).
2_highconf_incorrect.csv
row 20
Internal globus pallidus globus pallidus (paleostriatum)
HOMBA:10342 / score 0.938625
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.96
Internal globus pallidus is a subdivision of globus pallidus; top1 is the parent structure. | Query refers to internal segment; top1 is the whole globus pallidus, which is a broader anatomical structure but correct parent. | 'Internal globus pallidus' is GPi, a subdivision of globus pallidus; top1 is the full pallidum, a broader parent.
2_highconf_incorrect.csv
row 21
Ansiform Lobule Crus1 lobule VII (semilunar-gracile lobule)
HOMBA:AA30411 / score 0.936667
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Ansiform lobule crus1 is a hemispheric cerebellar structure; lobule VII is vermian and not equivalent. | Query is Ansiform Lobule Crus1, which is a subdivision of lobule VII; top1 is lobule VII, a broader parent. | 'Ansiform Lobule Crus1' is part of ansiform lobule/lobule VII; top1 is lobule VII (parent), which contains both crura.
2_highconf_incorrect.csv
row 22
Ansiform Lobule Crus2 lobule VII (semilunar-gracile lobule)
HOMBA:AA30411 / score 0.936667
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Ansiform lobule crus2 is hemispheric, not equivalent to vermian lobule VII. | Query is Ansiform Lobule Crus2, which is a subdivision of lobule VII; top1 is lobule VII, a broader parent. | 'Ansiform Lobule Crus2' is part of ansiform lobule/lobule VII; top1 is lobule VII (parent), which contains both crura.
2_highconf_incorrect.csv
row 23
Posterior intralaminar nucleus caudal intralaminar nuclei of thalamus
HOMBA:10448 / score 0.934768
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Posterior intralaminar nucleus is part of the caudal intralaminar nuclei group; top1 is the broader group. | Query is posterior intralaminar nucleus; top1 is broader group of caudal intralaminar nuclei, which includes the posterior part. | 'Posterior intralaminar nucleus' matches caudal/posterior intralaminar group; top1 is the same, just plural.
2_highconf_incorrect.csv
row 24
Inferior colliculus, central nucleus inferior colliculus
HOMBA:12305 / score 0.933772
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query specifies a subregion (central nucleus) of the inferior colliculus; top1 is the parent structure, anatomically correct. | Top1 returns the parent structure (inferior colliculus) for query referring to its central nucleus. | Query specifies central nucleus of inferior colliculus; top1 is only the broader inferior colliculus, missing the nucleus subdivision.
2_highconf_incorrect.csv
row 25
Lateral lemniscus, commissure lateral lemniscus
HOMBA:12760 / score 0.929524
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query specifies commissure of lateral lemniscus; top1 is the broader lateral lemniscus. | Query specifies commissure of lateral lemniscus; top1 is the whole lateral lemniscus, a valid parent. | Query requests commissure of lateral lemniscus; top1 is the lateral lemniscus itself, not the commissure.
2_highconf_incorrect.csv
row 26
Medial geniculate complex (medial division) medial geniculate nuclear complex
HOMBA:AA30307 / score 0.923334
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
Query specifies medial division of medial geniculate complex; top1 is the entire nuclear complex. | Top1 is the parent complex; query specifies a division within it. | Query specifies medial division of medial geniculate complex; top1 is the whole complex, not the specific division.
3_unresolved_correct.csv
row 3
Fundal superior temporal area temporal lobe
HOMBA:12139 / score 0.623143
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.7
Query specifies a specific area within the temporal lobe; top1 is the broader temporal lobe. | Top1 returns the broader temporal lobe for a specific subarea. | Fundal superior temporal area is a specific region within temporal lobe; top1 temporal lobe is a valid higher-order anatomical container but lacks specificity.
3_unresolved_correct.csv
row 6
Middle occipital gyrus occipital lobe
HOMBA:12148 / score 0.643905
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query 'Middle occipital gyrus' is a gyrus within the top1 'occipital lobe', which is a broader anatomical parent. | Occipital lobe is the broader parent structure containing the middle occipital gyrus. | top1 is occipital lobe, the parent anatomical structure that contains the middle occipital gyrus; correct but broader.
3_unresolved_correct.csv
row 10
Parietal opercular cortex parietal cortex
HOMBA:10208 / score 0.697975
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 'parietal cortex' is broader than the query 'parietal opercular cortex', which is a subregion. | Query 'Parietal opercular cortex' is a subdivision of the parietal cortex; top1 'parietal cortex' is the valid anatomical parent. | Parietal opercular cortex is a subdivision of the parietal cortex; top1 is the broader parent lobe.
3_unresolved_correct.csv
row 11
Anterior pulvinar pulvinar of thalamus
HOMBA:10409 / score 0.7009
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 'pulvinar of thalamus' is broader than 'anterior pulvinar', which is a subdivision. | Query 'Anterior pulvinar' specifies a subregion; top1 'pulvinar of thalamus' is the correct parent structure. | Anterior pulvinar is a part of the pulvinar of thalamus; top1 is the whole nucleus, a broader parent.
3_unresolved_correct.csv
row 12
Frontal orbital cortex (anterior) orbital frontal cortex
HOMBA:10194 / score 0.715158
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 'orbital frontal cortex' is broader than the query's anterior subdivision. | Query 'Frontal orbital cortex (anterior)' requests the anterior part; top1 'orbital frontal cortex' is the broader region without the modifier. | Query specifies anterior subdivision of frontal orbital cortex; top1 is the whole orbital frontal cortex, a broader parent.
3_unresolved_correct.csv
row 13
Frontal orbital cortex (posterior) orbital frontal cortex
HOMBA:10194 / score 0.715158
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 'orbital frontal cortex' is broader than the query's posterior subdivision. | Query 'Frontal orbital cortex (posterior)' requests the posterior part; top1 'orbital frontal cortex' is the broader region without the modifier. | Query specifies posterior subdivision of frontal orbital cortex; top1 is the whole orbital frontal cortex, a broader parent.
3_unresolved_correct.csv
row 16
Ventrolateral medulla myelencephalon (medulla oblongata)
HOMBA:10662 / score 0.72379
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query is ventrolateral medulla, a subregion; top1 is entire medulla oblongata (parent structure). | Query is ventrolateral medulla, top1 is entire medulla oblongata (myelencephalon). Ventrolateral medulla is a subregion, so top1 is a broader parent. | Ventrolateral medulla is a subdivision of the medulla oblongata; top1 returns the whole medulla, a broader parent structure.
3_unresolved_correct.csv
row 20
Pedunculopontine tegmentum pontine tegmentum
HOMBA:12416 / score 0.761218
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Pedunculopontine tegmentum is a part of the pontine tegmentum; top1 is the broader parent region. | Top1 'pontine tegmentum' is a broader parent of the more specific 'pedunculopontine tegmentum'. | Pedunculopontine tegmentum is a specific tegmental region; pontine tegmentum is the broader parent structure containing it.
3_unresolved_correct.csv
row 24
Occipital fusiform gyrus fusiform (occipitotemporal) gyrus
HOMBA:AA30549 / score 0.791667
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies occipital fusiform gyrus; top1 is the whole fusiform gyrus (occipitotemporal), which is the broader parent structure. | query specifies occipital portion of fusiform gyrus; top1 is whole fusiform gyrus (parent structure). | Query 'Occipital fusiform gyrus' is a subregion; top1 'fusiform (occipitotemporal) gyrus' is the whole gyrus, anatomically the correct parent structure.
3_unresolved_correct.csv
row 29
Superior parietal gyrus parietal lobe
HOMBA:12131 / score 0.877148
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is parietal lobe, which is the parent structure of the more specific superior parietal gyrus. | top1 is the parent lobe containing the query, not the specific gyrus. | Superior parietal gyrus is a specific gyrus within the parietal lobe; top1 names the lobe, which is the broader anatomical parent.
3_unresolved_correct.csv
row 30
Angular gyrus (anterior) angular gyrus
HOMBA:12136 / score 0.88
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Top1 is angular gyrus; query includes 'anterior' modifier, specifying a subregion. Top1 is the whole structure. | Query specifies a subregion (anterior) of angular gyrus; top1 returns the whole angular gyrus, a valid parent. | Query specifies anterior part of angular gyrus; top1 is the whole gyrus. Top1 is broader than query's specific subregion, not an exact match.
3_unresolved_correct.csv
row 31
Angular gyrus (posterior) angular gyrus
HOMBA:12136 / score 0.88
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Top1 is angular gyrus; query includes 'posterior' modifier, specifying a subregion. Top1 is the whole structure. | Query specifies a subregion (posterior) of angular gyrus; top1 returns the whole angular gyrus, a valid parent. | Query specifies posterior part of angular gyrus; top1 is the whole gyrus. Top1 is broader than query's specific subregion.
3_unresolved_correct.csv
row 33
Cerebellar cortex (granular layer) cerebellar cortex
HOMBA:10657 / score 0.88
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Top1 is cerebellar cortex; query includes 'granular layer' modifier, specifying a sublayer. Top1 is the whole structure. | Query specifies a layer (granular) of cerebellar cortex; top1 returns the whole cerebellar cortex, a valid parent. | Query specifies granular layer of cerebellar cortex; top1 is the whole cortex. Top1 is broader than query's specific layer.
3_unresolved_correct.csv
row 36
Fornix (anterior columns) fornix
HOMBA:10576 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'anterior columns' of fornix; top1 is whole 'fornix' (parent structure), not wrong but broader. | Query specifies 'anterior columns' of fornix, but top1 is 'fornix' (the whole structure). Anatomically correct parent. | Query is anterior columns of fornix; top1 is the whole fornix, anatomically the parent structure.
3_unresolved_correct.csv
row 37
Frontal pole (lateral) frontal pole
HOMBA:146034888 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'lateral' part of frontal pole; top1 is generic 'frontal pole', which is the broader parent. | Query specifies 'lateral' part of frontal pole, but top1 is 'frontal pole' (the whole region). Valid broader match. | Query is lateral part of frontal pole; top1 is the entire frontal pole, the broader parent region.
3_unresolved_correct.csv
row 38
Frontal pole (medial) frontal pole
HOMBA:146034888 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'medial' part of frontal pole; top1 is generic 'frontal pole', the broader parent structure. | Query specifies 'medial' part of frontal pole, but top1 is 'frontal pole' (the whole region). Valid broader match. | Query is medial part of frontal pole; top1 is the entire frontal pole, the broader parent region.
3_unresolved_correct.csv
row 39
Inferior frontal gyrus (anterior) inferior frontal gyrus
HOMBA:12117 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 names the broader parent structure (inferior frontal gyrus) which anatomically contains the specified subregion (anterior). | Query specifies anterior part of inferior frontal gyrus; top1 returns the parent gyrus, which is anatomically valid but broader. | Query ‘Inferior frontal gyrus (anterior)’ specifies anterior part; top1 is the entire gyrus, the correct parent structure.
3_unresolved_correct.csv
row 40
Inferior frontal gyrus (orbital part) inferior frontal gyrus
HOMBA:12117 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 names the broader parent structure (inferior frontal gyrus) which anatomically contains the specified subregion (orbital part). | Query specifies orbital part of inferior frontal gyrus; top1 returns the parent gyrus, which is broader but anatomically correct. | Query specifies orbital part of IFG; top1 returns the whole inferior frontal gyrus, the parent region.
3_unresolved_correct.csv
row 41
Inferior frontal gyrus (pars opercularis) inferior frontal gyrus
HOMBA:12117 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 names the broader parent structure (inferior frontal gyrus) which anatomically contains the specified subregion (pars opercularis). | Query specifies pars opercularis of inferior frontal gyrus; top1 returns the parent gyrus, which is broader but anatomically correct. | Query asks for pars opercularis within IFG; top1 is the full IFG, an anatomically correct parent.
3_unresolved_correct.csv
row 42
Inferior frontal gyrus (pars orbitalis) inferior frontal gyrus
HOMBA:12117 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 names the broader parent structure (inferior frontal gyrus) which anatomically contains the specified subregion (pars orbitalis). | Query specifies pars orbitalis of inferior frontal gyrus; top1 returns the parent gyrus, which is broader but anatomically correct. | Query specifies pars orbitalis of IFG; top1 is the entire gyrus, which is broader but valid parent.
3_unresolved_correct.csv
row 43
Inferior frontal gyrus (pars triangularis) inferior frontal gyrus
HOMBA:12117 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 names the broader parent structure (inferior frontal gyrus) which anatomically contains the specified subregion (pars triangularis). | Query specifies pars triangularis of inferior frontal gyrus; top1 returns the parent gyrus, which is broader but anatomically correct. | Query targets pars triangularis of IFG; top1 returns the whole inferior frontal gyrus, the parent.
3_unresolved_correct.csv
row 44
Inferior temporal gyrus (anterior) inferior temporal gyrus
HOMBA:12142 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies anterior part of inferior temporal gyrus; HOMBA top1 is the whole gyrus, which is the correct anatomical parent. No finer subdivision exists. | Query specifies anterior subregion of inferior temporal gyrus; top1 is the full gyrus, which is the anatomically correct parent. | Query specifies anterior part of inferior temporal gyrus; top1 is the whole gyrus, a correct broader parent structure.
3_unresolved_correct.csv
row 45
Inferior temporal gyrus (posterior) inferior temporal gyrus
HOMBA:12142 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies posterior part of inferior temporal gyrus; HOMBA top1 is the whole gyrus, the immediate parent structure. | Query specifies posterior subregion of inferior temporal gyrus; top1 is the full gyrus, an appropriate broader term. | Query specifies posterior part; top1 is the entire inferior temporal gyrus, a correct broader parent.
3_unresolved_correct.csv
row 46
Inferior temporal gyrus (temporo-occipital) inferior temporal gyrus
HOMBA:12142 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies temporo-occipital part of inferior temporal gyrus; HOMBA top1 is the full gyrus, anatomically correct parent. | Query specifies temporo-occipital part of inferior temporal gyrus; top1 is the full gyrus, covering the region. | Query specifies temporo-occipital part; top1 is the entire inferior temporal gyrus, a correct broader parent.
3_unresolved_correct.csv
row 47
Insular cortex (anterior) major insular cortex
HOMBA:10288 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies anterior part of insular cortex; HOMBA top1 is 'major insular cortex', which represents the whole structure and is the appropriate parent. | Query specifies anterior insular cortex; top1 is major insular cortex, a broader term for the whole insula. | Query specifies anterior insular cortex; top1 'major insular cortex' is the whole insula, a correct broader parent.
3_unresolved_correct.csv
row 48
Insular cortex (posterior) major insular cortex
HOMBA:10288 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies posterior part of insular cortex; HOMBA top1 is the whole insular cortex, correct parent for the subregion. | Query specifies posterior insular cortex; top1 is major insular cortex, a broader term encompassing the whole structure. | Query specifies posterior insular cortex; top1 is the whole insula, a correct broader parent.
3_unresolved_correct.csv
row 50
Middle frontal gyrus (anterior) middle frontal gyrus
HOMBA:12116 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 names whole middle frontal gyrus; query specifies anterior part, so top1 is the parent structure. | Query specifies anterior part of middle frontal gyrus, but top1 is the whole gyrus without subdivision. | Query specifies anterior part of middle frontal gyrus; top1 is the whole gyrus, which is broader but anatomically correct parent.
3_unresolved_correct.csv
row 51
Middle frontal gyrus (orbital part) middle frontal gyrus
HOMBA:12116 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 names whole middle frontal gyrus; query specifies orbital part, so top1 is broader parent. | Query specifies orbital part of middle frontal gyrus, but top1 is the whole gyrus without subdivision. | Query specifies orbital part of middle frontal gyrus; top1 is the whole gyrus, broader parent.
3_unresolved_correct.csv
row 52
Middle frontal gyrus (posterior) middle frontal gyrus
HOMBA:12116 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 names whole middle frontal gyrus; query specifies posterior part, so top1 is broader parent. | Query specifies posterior part of middle frontal gyrus, but top1 is the whole gyrus without subdivision. | Query specifies posterior part of middle frontal gyrus; top1 is the whole gyrus, broader parent.
3_unresolved_correct.csv
row 53
Middle temporal gyrus (anterior) middle temporal gyrus
HOMBA:12141 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 names whole middle temporal gyrus; query specifies anterior part, so top1 is broader parent. | Query specifies anterior part of middle temporal gyrus, but top1 is the whole gyrus without subdivision. | Query specifies anterior part of middle temporal gyrus; top1 is the whole gyrus, broader parent.
3_unresolved_correct.csv
row 54
Middle temporal gyrus (posterior) middle temporal gyrus
HOMBA:12141 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the whole middle temporal gyrus, which anatomically contains the specified posterior subregion; broader parent. | top1 is the whole middle temporal gyrus; query specifies posterior subregion, so top1 is a broader anatomical parent. | Query specifies “posterior” portion of the middle temporal gyrus; top1 returns the entire gyrus, which is the correct broader parent.
3_unresolved_correct.csv
row 55
Middle temporal gyrus (temporo-occipital) middle temporal gyrus
HOMBA:12141 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the whole middle temporal gyrus, which anatomically contains the specified temporo-occipital subregion; broader parent. | top1 is the whole middle temporal gyrus; query specifies temporo-occipital subregion, so top1 is a broader anatomical parent. | Query specifies “temporo-occipital” portion of the middle temporal gyrus; top1 is the whole gyrus, a broader parent.
3_unresolved_correct.csv
row 56
Postcentral gyrus (lateral inferior) postcentral gyrus
HOMBA:12132 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the whole postcentral gyrus, which anatomically contains the specified lateral inferior subregion; broader parent. | top1 is the whole postcentral gyrus; query specifies lateral inferior subregion, so top1 is a broader anatomical parent. | Query specifies “lateral inferior” part of the postcentral gyrus; top1 is the whole postcentral gyrus, a broader anatomical parent.
3_unresolved_correct.csv
row 57
Postcentral gyrus (lateral middle) postcentral gyrus
HOMBA:12132 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the whole postcentral gyrus, which anatomically contains the specified lateral middle subregion; broader parent. | top1 is the whole postcentral gyrus; query specifies lateral middle subregion, so top1 is a broader anatomical parent. | Query specifies “lateral middle” part of the postcentral gyrus; top1 is the whole gyrus, a broader parent.
3_unresolved_correct.csv
row 58
Postcentral gyrus (lateral superior) postcentral gyrus
HOMBA:12132 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the whole postcentral gyrus, which anatomically contains the specified lateral superior subregion; broader parent. | top1 is the whole postcentral gyrus; query specifies lateral superior subregion, so top1 is a broader anatomical parent. | Query specifies “lateral superior” part of the postcentral gyrus; top1 is the whole gyrus, a broader parent.
3_unresolved_correct.csv
row 59
Postcentral gyrus (medial) postcentral gyrus
HOMBA:12132 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the parent gyrus of the specified subregion; query includes a modifier indicating a part, but top1 correctly names the overall structure. | top1 is the parent gyrus (postcentral gyrus) but query specifies medial subregion; anatomically correct parent but not exact. | Query specifies the medial part of postcentral gyrus; top1 is the entire gyrus, which is the correct parent structure.
3_unresolved_correct.csv
row 60
Precentral gyrus (lateral inferior) precentral gyrus
HOMBA:12114 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the parent gyrus of the specified subregion; query includes a modifier indicating a part, but top1 correctly names the overall structure. | top1 is the parent gyrus (precentral gyrus) but query specifies lateral inferior subregion; anatomically correct parent but not exact. | Query specifies lateral inferior precentral gyrus; top1 is the broader precentral gyrus, anatomically correct parent.
3_unresolved_correct.csv
row 61
Precentral gyrus (lateral middle) precentral gyrus
HOMBA:12114 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the parent gyrus of the specified subregion; query includes a modifier indicating a part, but top1 correctly names the overall structure. | top1 is the parent gyrus (precentral gyrus) but query specifies lateral middle subregion; anatomically correct parent but not exact. | Query specifies lateral middle precentral gyrus; top1 is the broader precentral gyrus parent.
3_unresolved_correct.csv
row 62
Precentral gyrus (lateral superior) precentral gyrus
HOMBA:12114 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the parent gyrus of the specified subregion; query includes a modifier indicating a part, but top1 correctly names the overall structure. | top1 is the parent gyrus (precentral gyrus) but query specifies lateral superior subregion; anatomically correct parent but not exact. | Query specifies lateral superior precentral gyrus; top1 is the broader parent gyrus.
3_unresolved_correct.csv
row 63
Precentral gyrus (medial) precentral gyrus
HOMBA:12114 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the parent gyrus of the specified subregion; query includes a modifier indicating a part, but top1 correctly names the overall structure. | top1 is the parent gyrus (precentral gyrus) but query specifies medial subregion; anatomically correct parent but not exact. | Query specifies medial precentral gyrus; top1 is the broader parent gyrus.
3_unresolved_correct.csv
row 64
Spinal trigeminal nucleus (oralis) spinal trigeminal nucleus
HOMBA:12572 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query 'Spinal trigeminal nucleus (oralis)' specifies a subdivision; top1 'spinal trigeminal nucleus' is the broader parent structure. | Query specifies a subnucleus (oralis) of the spinal trigeminal nucleus; top1 covers the parent nucleus. | Query specifies oralis subdivision; top1 is the whole spinal trigeminal nucleus, the correct parent structure.
3_unresolved_correct.csv
row 65
Superior frontal gyrus (dorsolateral) superior frontal gyrus
HOMBA:12115 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query 'Superior frontal gyrus (dorsolateral)' specifies a subdivision; top1 'superior frontal gyrus' is the broader parent structure. | Query 'superior frontal gyrus (dorsolateral)' indicates a subregion; top1 is the whole gyrus. | Query specifies dorsolateral part; top1 is the whole superior frontal gyrus, the correct parent.
3_unresolved_correct.csv
row 66
Superior frontal gyrus (lateral anterior) superior frontal gyrus
HOMBA:12115 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query 'Superior frontal gyrus (lateral anterior)' specifies a subdivision; top1 'superior frontal gyrus' is the broader parent structure. | Query 'superior frontal gyrus (lateral anterior)' indicates a subregion; top1 is the whole gyrus. | Query specifies lateral anterior part; top1 is the whole superior frontal gyrus, the correct parent.
3_unresolved_correct.csv
row 67
Superior frontal gyrus (lateral middle) superior frontal gyrus
HOMBA:12115 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query 'Superior frontal gyrus (lateral middle)' specifies a subdivision; top1 'superior frontal gyrus' is the broader parent structure. | Query 'superior frontal gyrus (lateral middle)' indicates a subregion; top1 is the whole gyrus. | Query specifies lateral middle part; top1 is the whole superior frontal gyrus, the correct parent.
3_unresolved_correct.csv
row 68
Superior frontal gyrus (lateral posterior) superior frontal gyrus
HOMBA:12115 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query 'Superior frontal gyrus (lateral posterior)' specifies a subdivision; top1 'superior frontal gyrus' is the broader parent structure. | Query 'superior frontal gyrus (lateral posterior)' indicates a subregion; top1 is the whole gyrus. | Query specifies lateral posterior part; top1 is the whole superior frontal gyrus, the correct parent.
3_unresolved_correct.csv
row 69
Superior frontal gyrus (medial orbital) superior frontal gyrus
HOMBA:12115 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'medial orbital' part of superior frontal gyrus; top1 names the whole gyrus, which is the anatomically correct parent structure. | Top1 is the parent structure (superior frontal gyrus) without the subregion modifier 'medial orbital'. It is anatomically broader but consistent. | Top1 is the whole superior frontal gyrus; query specifies its medial orbital subdivision, anatomically correct parent.
3_unresolved_correct.csv
row 70
Superior frontal gyrus (medial) superior frontal gyrus
HOMBA:12115 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'medial' part of superior frontal gyrus; top1 names the whole gyrus, a broader parent. | Top1 is the parent structure (superior frontal gyrus) without the subregion modifier 'medial'. It is anatomically broader but consistent. | Top1 is the whole superior frontal gyrus; query specifies its medial subdivision, anatomically correct parent.
3_unresolved_correct.csv
row 71
Superior frontal gyrus (orbital part) superior frontal gyrus
HOMBA:12115 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'orbital part' of superior frontal gyrus; top1 names the whole gyrus, which is the parent structure. | Top1 is the parent structure (superior frontal gyrus) without the subregion modifier 'orbital part'. It is anatomically broader but consistent. | Top1 is the whole superior frontal gyrus; query specifies its orbital part, anatomically correct parent.
3_unresolved_correct.csv
row 72
Superior parietal lobule (anterior) superior parietal lobule (gyrus)
HOMBA:12133 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'anterior' part of superior parietal lobule; top1 names the whole lobule (with synonym), a broader parent. | Top1 is the whole superior parietal lobule, broader than the query which specifies 'anterior' subregion. Anatomically correct parent. | Top1 is the whole superior parietal lobule; query targets only the anterior part, anatomically correct parent.
3_unresolved_correct.csv
row 73
Superior parietal lobule (posterior) superior parietal lobule (gyrus)
HOMBA:12133 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'posterior' part of superior parietal lobule; top1 names the whole lobule, a broader parent. | Top1 is the whole superior parietal lobule, broader than the query which specifies 'posterior' subregion. Anatomically correct parent. | Top1 is the whole superior parietal lobule; query targets only the posterior part, anatomically correct parent.
3_unresolved_correct.csv
row 74
Superior temporal gyrus (anterior) superior temporal gyrus
HOMBA:12140 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the entire superior temporal gyrus; query specifies anterior part, but top1 is the broader parent. | Query specifies anterior part of superior temporal gyrus; top1 is the whole gyrus, which is the anatomically correct parent. | Query asks for anterior part of superior temporal gyrus; top1 returns the whole gyrus, which is the correct broader parent structure.
3_unresolved_correct.csv
row 75
Superior temporal gyrus (posterior) superior temporal gyrus
HOMBA:12140 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the entire superior temporal gyrus; query specifies posterior part, but top1 is the broader parent. | Query specifies posterior part of superior temporal gyrus; top1 is the whole gyrus, which is the anatomically correct parent. | Query asks for posterior part of superior temporal gyrus; top1 is the whole gyrus, the appropriate broader parent.
3_unresolved_correct.csv
row 76
Supramarginal gyrus (anterior) supramarginal gyrus
HOMBA:12135 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the entire supramarginal gyrus; query specifies anterior part, but top1 is the broader parent. | Query specifies anterior part of supramarginal gyrus; top1 is the whole gyrus, which is the anatomically correct parent. | Query specifies anterior supramarginal gyrus; top1 is the complete gyrus, a correct broader container.
3_unresolved_correct.csv
row 77
Supramarginal gyrus (posterior) supramarginal gyrus
HOMBA:12135 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the entire supramarginal gyrus; query specifies posterior part, but top1 is the broader parent. | Query specifies posterior part of supramarginal gyrus; top1 is the whole gyrus, which is the anatomically correct parent. | Query specifies posterior supramarginal gyrus; top1 is the whole gyrus, an anatomically correct broader parent.
3_unresolved_correct.csv
row 78
Thalamus (excluding pulvinar) thalamus
HOMBA:10390 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the entire thalamus; query specifies thalamus excluding pulvinar, but top1 is the broader parent. | Query is thalamus excluding pulvinar; top1 is thalamus (including pulvinar), which is a broader parent structure. | Query asks for thalamus excluding pulvinar; top1 returns entire thalamus, a broader parent that includes the excluded part.
3_unresolved_correct.csv
row 79
Lateral intraparietal area (ventral) lateral subdivision of area 7
HOMBA:267498979 / score 0.579282
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Top1 is lateral subdivision of area 7, broader than query lateral intraparietal area; matched alias indicates intraparietal subdivision, so likely a parent structure. | top1 is the entire lateral subdivision of area 7, while query specifies ventral part; top1 is valid parent. | Query specifies both lateral and ventral aspects; top1 matches only lateral subdivision of area 7, missing the 'ventral' modifier.
3_unresolved_correct.csv
row 84
Ventral posterior external thalamic nucleus ventral posterior nuclear complex of thalamus
HOMBA:10423 / score 0.9231
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query specifies the external subdivision of the ventral posterior thalamic nucleus; top1 is the broader nuclear complex, which anatomically contains it. | Top1 is the ventral posterior nuclear complex, which is the parent structure of the ventral posterior external nucleus; not exact match but valid parent. | Top1 is the ventral posterior nuclear complex, containing the queried external subnucleus. Query is a specific subdivision.
3_unresolved_correct.csv
row 85
Cingulate gyrus (anterior anterior part) anterior cingulate cortex (ventromedial prefrontal cortex)
HOMBA:10278 / score 0.9775
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.85
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.8
Query refers to the anterior anterior part of the cingulate gyrus; top1 is the anterior cingulate cortex, a broader region that includes this area. | Top1 is anterior cingulate cortex, the cortical part of the anterior cingulate gyrus; query specifies whole gyrus region, so top1 is narrower. | Top1 is anterior cingulate cortex, which forms the anterior cingulate gyrus; query's 'anterior anterior part' indicates an even finer subregion, making top1 a broader parent.
3_unresolved_correct.csv
row 86
Inferior olive (principal nucleus) inferior olive
HOMBA:12600 / score 1.0
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies the principal nucleus of the inferior olive; top1 is the whole inferior olive, which is the parent structure. | Top1 is the entire inferior olive, while query specifies principal nucleus; top1 is the parent structure. | Top1 is the whole inferior olive; query specifies its principal nucleus, a component. Top1 is the correct parent structure.
3_unresolved_correct.csv
row 87
Lateral reticular nucleus (magnocellular) lateral reticular nucleus
HOMBA:12634 / score 1.0
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies the magnocellular part of the lateral reticular nucleus; top1 is the entire lateral reticular nucleus, the broader parent. | Top1 is the lateral reticular nucleus, broader than query specifying magnocellular subdivision. | Top1 is the lateral reticular nucleus; query specifies its magnocellular subdivision. Top1 is the parent.
3_unresolved_correct.csv
row 88
Lateral reticular nucleus (parvicellular) lateral reticular nucleus
HOMBA:12634 / score 1.0
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies the parvicellular part of the lateral reticular nucleus; top1 is the entire lateral reticular nucleus, the broader parent. | Top1 is the lateral reticular nucleus, broader than query specifying parvicellular subdivision. | Top1 is the lateral reticular nucleus; query specifies its parvicellular subdivision. Top1 is the parent.
3_unresolved_correct.csv
row 96
Parahippocampal area PeEc parahippocampal gyrus
HOMBA:12162 / score 0.497208
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Parahippocampal area PeEc is a subregion of the parahippocampal gyrus; top1 is the broader parent structure. | Parahippocampal area PeEc is a subdivision of the parahippocampal gyrus; top1 is the parent structure. | Parahippocampal area PeEc is a specific cytoarchitectonic subarea within the parahippocampal gyrus; top1 is the broader parent structure.
3_unresolved_correct.csv
row 103
Basolateral Ventral Amygdaloid Nucleus basolateral nucleus (basal nucleus) of amygdala
HOMBA:10368 / score 0.601371
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.8
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.65
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'Ventral' but top1 is general basolateral nucleus, missing ventral specification. | Top1 is the general basolateral nucleus; query specifies 'ventral' subdivision, so top1 is broader parent but not exact. | Basolateral Ventral Amygdaloid Nucleus is a ventral subdivision of the basolateral nucleus; top1 is the broader parent basolateral nucleus.
3_unresolved_correct.csv
row 104
Basolateral Dorsal Amygdaloid Nucleus basolateral nucleus (basal nucleus) of amygdala
HOMBA:10368 / score 0.60277
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query specifies 'dorsal' subdivision of basolateral amygdaloid nucleus; top1 is the full basolateral nucleus, a broader parent structure. | Query specifies 'dorsal' subdivision; top1 is the general basolateral nucleus, which is the broader parent. | Query specifies dorsal subdivision of basolateral amygdaloid nucleus; top1 is the whole basolateral nucleus, the correct parent structure.
3_unresolved_correct.csv
row 109
Ventrolateral thalamic nucleus (posterodorsal part) ventral lateral nucleus of thalamus
HOMBA:10420 / score 0.613897
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.85
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'posterodorsal part' of ventrolateral thalamic nucleus, but top1 is the whole nucleus. | Query specifies posterodorsal part; top1 is the parent nucleus (ventral lateral nucleus). Anatomically correct broader structure. | Top1 is whole ventrolateral nucleus; query specifies posterodorsal subdivision; correct parent.
3_unresolved_correct.csv
row 110
Ventrolateral thalamic nucleus (posteroventral part) ventral lateral nucleus of thalamus
HOMBA:10420 / score 0.613897
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.85
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'posteroventral part' of ventrolateral thalamic nucleus, but top1 is the whole nucleus. | Query specifies posteroventral part; top1 is the parent nucleus (ventral lateral nucleus). Anatomically correct broader structure. | Top1 is whole ventrolateral nucleus; query specifies posteroventral subdivision; correct parent.
3_unresolved_correct.csv
row 112
Centromedial-parafascicular Thalamus caudal intralaminar nuclei of thalamus
HOMBA:10448 / score 0.616913
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Caudal intralaminar nuclei is an accepted term for the centromedial-parafascicular complex. | Query combines centromedial and parafascicular nuclei; top1 is caudal intralaminar nuclei which includes both as a valid parent group. | Centromedial-parafascicular complex is a subdivision of caudal intralaminar nuclei; top1 is correct parent.
3_unresolved_correct.csv
row 114
Frontal orbital cortex, posterior orbital frontal cortex
HOMBA:10194 / score 0.6246
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is 'orbital frontal cortex', the parent region of the posterior part specified in the query. The synonym matches the base structure. | Top1 'orbital frontal cortex' is the whole region; query specifies 'posterior' subregion but base structure matches. | Top1 'orbital frontal cortex' is synonym but misses posterior modifier; it is the appropriate parent region.
3_unresolved_correct.csv
row 115
Paratenial-paraventral-thalamus regions of thalamus
HOMBA:AA30265 / score 0.627903
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.8
Top1 'regions of thalamus' is a broad parent container for the specific paratenial and paraventral thalamic nuclei in the query. | Top1 'regions of thalamus' is a broader parent of the specific paratenial-paraventral thalamus compounds. | Query is a specific combined thalamic region; 'regions of thalamus' is a broad parent class, consistent but imprecise.
3_unresolved_correct.csv
row 117
Basolateral amygdaloid nucleus (dorsal) basolateral nucleus (basal nucleus) of amygdala
HOMBA:10368 / score 0.631948
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 'basolateral nucleus of amygdala' is the parent region of the dorsal part specified in the query. Correct base structure. | Top1 'basolateral nucleus of amygdala' is the whole nucleus; query includes 'dorsal' subdivision. | Top1 is the basolateral nucleus, correctly broader than the queried dorsal subdivision.
3_unresolved_correct.csv
row 118
Basolateral amygdaloid nucleus (intermediate) basolateral nucleus (basal nucleus) of amygdala
HOMBA:10368 / score 0.631948
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 'basolateral nucleus of amygdala' is the parent region of the intermediate part specified in the query. Correct base structure. | Top1 'basolateral nucleus of amygdala' is the whole nucleus; query includes 'intermediate' subdivision. | Top1 is the basolateral nucleus, correctly broader than the queried intermediate subdivision.
3_unresolved_correct.csv
row 119
Basolateral amygdaloid nucleus (ventral) basolateral nucleus (basal nucleus) of amygdala
HOMBA:10368 / score 0.631948
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the whole basolateral nucleus, while query specifies the ventral subregion; top1 is a broader parent structure. | top1 is the whole basolateral nucleus; query specifies ventral subdivision, so top1 is the parent structure. | Query is the ventral part of the basolateral amygdaloid nucleus, top1 is the whole basolateral nucleus. Broader but anatomically correct parent.
3_unresolved_correct.csv
row 120
Striate cortex, dorsolateral, inferior primary visual cortex (first visual cortex, striate cortex, area 17, area OC)
HOMBA:10269 / score 0.634968
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.85
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 is the entire striate (primary visual) cortex; query includes spatial modifiers 'dorsolateral, inferior' specifying a subregion. | top1 is primary visual cortex (striate cortex), same core structure as query; spatial modifiers dorsolateral/inferior not captured but do not change core identity. | Query specifies a dorsolateral inferior subdivision of striate cortex, top1 is the entire primary visual cortex (striate cortex). Broader but correct.
3_unresolved_correct.csv
row 121
Striate cortex, dorsolateral, superior primary visual cortex (first visual cortex, striate cortex, area 17, area OC)
HOMBA:10269 / score 0.634968
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.85
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 is the entire striate (primary visual) cortex; query includes spatial modifiers 'dorsolateral, superior' specifying a subregion. | top1 is primary visual cortex (striate cortex), same core structure; spatial modifiers dorsolateral/superior not captured but core identity matches. | Query specifies a dorsolateral superior subdivision of striate cortex, top1 is the whole primary visual cortex. Broader parent.
3_unresolved_correct.csv
row 127
Alveus of the hippocampus hippocampus
HOMBA:AA30093 / score 0.651054
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.85
Query specifies 'Alveus of hippocampus', top1 is parent 'hippocampus' which is broader but correct container. | Query specifies 'Alveus of the hippocampus' (a part); top1 is 'hippocampus' (the whole structure), anatomically broader but correct parent. | Query asks for alveus (a subdivision of hippocampus). Top1 is hippocampus, the immediate parent structure.
3_unresolved_correct.csv
row 130
Zona incerta, ventral part zona incerta
HOMBA:10463 / score 0.659012
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies ventral part of zona incerta; top1 is the broader parent structure zona incerta. | Top1 is the parent structure of the specified ventral part; broader_parent. | top1 is the entire zona incerta, which is the anatomically correct parent of the ventral part in the query.
3_unresolved_correct.csv
row 131
Retromammillary Hypothalamus hypothalamus
HOMBA:10467 / score 0.664676
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query is retromammillary hypothalamus (subregion); top1 is the broader hypothalamus. | Top1 'hypothalamus' is broader than 'Retromammillary Hypothalamus' subdivision. | Retromammillary hypothalamus is a specific region; top1 'hypothalamus' is its broader anatomical parent.
3_unresolved_correct.csv
row 133
Limitans Thalamus thalamus
HOMBA:10390 / score 0.665441
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is limitans thalamus (specific nucleus); top1 is the broader thalamus. | Top1 'thalamus' is broader than the specific 'Limitans thalamus' nucleus. | Limitans nucleus is a subpart of the thalamus; top1 'thalamus' is the broader correct parent.
3_unresolved_correct.csv
row 134
Zona incerta, caudal part zona incerta
HOMBA:10463 / score 0.667812
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies caudal part of zona incerta; top1 is the whole zona incerta, which is the correct parent structure. | top1 is the parent structure of the specified subregion (caudal part) | Query specifies caudal part; top1 is whole zona incerta, anatomically correct parent but broader than requested.
3_unresolved_correct.csv
row 135
Zona incerta, dorsal part zona incerta
HOMBA:10463 / score 0.667812
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies dorsal part of zona incerta; top1 is the whole zona incerta, the appropriate parent. | top1 is the parent structure of the specified subregion (dorsal part) | Query specifies dorsal part; top1 is whole zona incerta, anatomically correct parent but broader than requested.
3_unresolved_correct.csv
row 136
Temporal association cortex temporal cortex
HOMBA:10235 / score 0.669859
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Temporal association cortex is a subregion; top1 temporal cortex is the broader, correct parent structure. | top1 is broader parent; temporal association cortex is a subdivision of temporal cortex | Temporal association cortex is a functional subdivision; top1 'temporal cortex' is broader but anatomically correct parent.
3_unresolved_correct.csv
row 140
Cochlear nerve root of vestibulocochlear nerve
HOMBA:12868 / score 0.683495
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query 'Cochlear nerve' is a component of the vestibulocochlear nerve; top1 'root of vestibulocochlear nerve' is the parent structure. | Cochlear nerve is a component of vestibulocochlear nerve; top1 root includes both cochlear and vestibular parts. | Cochlear nerve is a component of the vestibulocochlear nerve; top1 is the root of the entire nerve, a broader parent structure.
3_unresolved_correct.csv
row 141
Deeper layers of the superior colliculus superior colliculus
HOMBA:12292 / score 0.684228
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'Deeper layers of the superior colliculus'; top1 is the whole superior colliculus, a broader parent structure. | Query specifies deeper layers, top1 is the whole superior colliculus, a valid parent structure. | Query specifies a subregion (deeper layers) of the superior colliculus; top1 is the whole superior colliculus, a broader parent.
3_unresolved_correct.csv
row 142
Prefornical Hypothalamus hypothalamus
HOMBA:10467 / score 0.6875
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'Prefornical Hypothalamus'; top1 is hypothalamus, a broader parent structure. | Prefornical hypothalamus is a subdivision; top1 hypothalamus is the broader parent structure. | Prefornical hypothalamus is a specific anterior region; top1 is the entire hypothalamus, which is a broader parent.
3_unresolved_correct.csv
row 144
Posterior thalamic nuclear group, triangular part posterior nucleus of thalamus
HOMBA:10440 / score 0.693668
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.7
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query specifies 'triangular part' of posterior thalamic nuclear group; top1 is posterior nucleus (a component of the group) but not the triangular subdivision. | Query specifies triangular part of posterior thalamic nuclear group; top1 is posterior nucleus of thalamus, a broader structure. | Top1 is the whole posterior nucleus of thalamus; query specifies the triangular part of the posterior nuclear group, so top1 is broader parent.
3_unresolved_correct.csv
row 145
Parietal opercular cortex parietal cortex
HOMBA:10208 / score 0.697975
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 'parietal cortex' is the broader region containing the more specific 'parietal opercular cortex'. | Query is parietal opercular cortex; top1 is parietal cortex, which is broader. | Top1 'parietal cortex' is the broader region; query is specifically the opercular part of parietal cortex, so broader parent.
3_unresolved_correct.csv
row 146
Intra-amygdaloid division of the bed nucleus of the stria terminalis bed nucleus of stria terminalis
HOMBA:10384 / score 0.700362
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 'bed nucleus of stria terminalis' is the parent structure of the intra-amygdaloid division. | Query is intra-amygdaloid division of bed nucleus; top1 is whole bed nucleus of stria terminalis, broader parent. | Top1 is the entire bed nucleus of stria terminalis; query is its intra-amygdaloid division, so top1 is broader parent.
3_unresolved_correct.csv
row 147
Anterior Pulvinar pulvinar of thalamus
HOMBA:10409 / score 0.7009
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 'pulvinar of thalamus' is the broader structure encompassing the anterior subdivision. | Query is anterior pulvinar; top1 is pulvinar of thalamus, broader parent. | Top1 'pulvinar of thalamus' is the whole pulvinar; query is anterior pulvinar, a subregion, making top1 broader parent.
3_unresolved_correct.csv
row 148
Mammillary Hypothalamus hypothalamus
HOMBA:10467 / score 0.703804
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 'hypothalamus' is the broader region containing the mammillary region specified in query. | Query is mammillary hypothalamus; top1 is hypothalamus, broader parent. | Top1 'hypothalamus' is the broader structure; query is mammillary hypothalamus, a specific region, so broader parent.
3_unresolved_correct.csv
row 149
Supraoptic Hypothalamus hypothalamus
HOMBA:10467 / score 0.703804
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Supraoptic hypothalamus is a specific subdivision of the hypothalamus; top1 is the broader parent structure. | Supraoptic hypothalamus is a subregion of hypothalamus; top1 is the parent structure, anatomically correct but not exact. | Hypothalamus is the parent structure; 'supraoptic' specifies a subregion, so top1 is broader but anatomically correct parent.
3_unresolved_correct.csv
row 154
Anterior pituitary pituitary body/gland (hypophysis)
HOMBA:10505 / score 0.718111
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies anterior pituitary; top1 is whole pituitary gland, which is the parent structure. | Query 'Anterior pituitary' is a subdivision; top1 is the whole pituitary gland (parent). | Query 'Anterior pituitary' refers specifically to the anterior lobe; top1 'pituitary body/gland (hypophysis)' is the whole pituitary, a correct parent structure.
3_unresolved_correct.csv
row 160
Premotor cortex, ventral premotor cortex (area 6, area FB, secondary motor cortex)
HOMBA:10168 / score 0.742101
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'ventral' part of premotor cortex; top1 is the broader premotor cortex region. | Top1 is premotor cortex, query specifies ventral part; top1 is valid parent. | Query specifies 'ventral' premotor cortex, a subdivision. Top1 returns the full 'premotor cortex'—the correct parent that includes both dorsal and ventral parts.
3_unresolved_correct.csv
row 161
Secondary auditory area, ventral part secondary auditory cortex (auditory belt region, area 42, area TB)
HOMBA:10239 / score 0.745877
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'ventral part' of secondary auditory area; top1 is the broader secondary auditory cortex. | Top1 is secondary auditory cortex, query specifies ventral part; parent structure. | Query asks for 'ventral part' of secondary auditory area. Top1 is the whole secondary auditory cortex, the correct parent covering ventral and dorsal subdivisions.
3_unresolved_correct.csv
row 162
Intraamygdaloid Stria Terminalis stria terminalis
HOMBA:10591 / score 0.746598
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query 'Intraamygdaloid Stria Terminalis' is a specific part; top1 is the broader 'stria terminalis'. | Top1 is stria terminalis, query specifies intraamygdaloid part; parent structure. | Intraamygdaloid stria terminalis is the portion within the amygdala. Top1 'stria terminalis' is the full tract—the correct broader parent structure.
3_unresolved_correct.csv
row 163
Zona incerta, rostral part zona incerta
HOMBA:10463 / score 0.748877
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'rostral part' of zona incerta; top1 is the broader zona incerta. | Top1 is zona incerta, query specifies rostral part; parent structure. | Rostral part of zona incerta is a subdivision. Top1 'zona incerta' is the whole structure, the correct anatomical parent.
3_unresolved_correct.csv
row 164
Anterior commissure, intrabulbar part anterior commissure
HOMBA:10559 / score 0.75
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is the parent structure (anterior commissure) of the queried intrabulbar part. | Query specifies intrabulbar part of anterior commissure; top1 is the whole anterior commissure. | Query specifies intrabulbar part of anterior commissure; top1 is the whole anterior commissure, a correct parent structure.
3_unresolved_correct.csv
row 165
Basolateral Intermediate Amygdaloid Nucleus basolateral nuclear group of amygdala
HOMBA:10366 / score 0.750773
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is the broader nuclear group, not the specific intermediate nucleus. | Query is a specific nucleus within basolateral nuclear group; top1 is the whole group. | Query is a specific nucleus within basolateral nuclear group; top1 is the broader group, correct parent.
3_unresolved_correct.csv
row 166
Precentral gyrus, lateral precentral gyrus
HOMBA:12114 / score 0.751667
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is the whole precentral gyrus, not specifically the lateral part. | Query includes lateral modifier of precentral gyrus; top1 is the whole gyrus. | Query describes lateral part of precentral gyrus; top1 is the whole gyrus, anatomically correct parent.
3_unresolved_correct.csv
row 167
Striate cortex, medial primary visual cortex (first visual cortex, striate cortex, area 17, area OC)
HOMBA:10269 / score 0.751667
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is the entire striate cortex, not specifically the medial part. | Query specifies medial part of striate cortex; top1 is the whole striate cortex. | Query indicates medial striate cortex; top1 is the full primary visual cortex, correct parent area.
3_unresolved_correct.csv
row 170
Postcentral gyrus, lateral postcentral gyrus
HOMBA:12132 / score 0.753867
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies lateral part of postcentral gyrus; top1 is the whole gyrus, which is the anatomically correct parent. | Query specifies 'lateral' part of postcentral gyrus; top1 is the whole gyrus, a valid parent structure. | Query specifies 'lateral' part of postcentral gyrus; top1 is the entire gyrus, a correct anatomical parent/container.
3_unresolved_correct.csv
row 171
Postcentral gyrus, medial postcentral gyrus
HOMBA:12132 / score 0.753867
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies medial part of postcentral gyrus; top1 is the whole gyrus, which is the anatomically correct parent. | Query specifies 'medial' part of postcentral gyrus; top1 is the whole gyrus, a valid parent structure. | Query specifies 'medial' part of postcentral gyrus; top1 is the whole gyrus, a correct anatomical parent/container.
3_unresolved_correct.csv
row 172
Premotor cortex, dorsal premotor cortex (area 6, area FB, secondary motor cortex)
HOMBA:10168 / score 0.753867
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies dorsal part of premotor cortex; top1 is the whole premotor cortex, which is the anatomically correct parent. | Query specifies 'dorsal' part of premotor cortex; top1 is the whole premotor cortex, a valid parent. | Query specifies 'dorsal' premotor cortex; top1 is the entire premotor cortex, broader but correct parent structure.
3_unresolved_correct.csv
row 173
Secondary auditory area, dorsal part secondary auditory cortex (auditory belt region, area 42, area TB)
HOMBA:10239 / score 0.753867
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies dorsal part of secondary auditory area; top1 is the whole secondary auditory cortex, which is the anatomically correct parent. | Query specifies 'dorsal part' of secondary auditory area; top1 is whole secondary auditory cortex, a valid parent. | Query specifies 'dorsal part' of secondary auditory area; top1 is the whole secondary auditory cortex, broader parent.
3_unresolved_correct.csv
row 178
Ventral Lateral Posterodorsal Thalamus ventral lateral nucleus of thalamus
HOMBA:10420 / score 0.765825
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.75
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query targets the posterodorsal subdivision of ventral lateral thalamus; top1 is the parent ventral lateral nucleus. | top1 is the broader VL nucleus, query specifies posterodorsal subdivision | Query specifies posterodorsal part of ventral lateral thalamus; top1 is the entire ventral lateral nucleus, a broader parent structure.
3_unresolved_correct.csv
row 179
Agranular insular cortex, posterior area agranular insular cortex (area Iag)
HOMBA:10328 / score 0.77
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 is the general agranular insular cortex, which is broader than the specified posterior area. | top1 is the whole agranular insular cortex, broader than query's posterior area subdivision but anatomically correct parent. | Top1 is the full agranular insular cortex; query asks for posterior area. Top1 is the anatomical parent region, missing the subdivision.
3_unresolved_correct.csv
row 180
Agranular insular cortex dorsal area agranular insular cortex (area Iag)
HOMBA:10328 / score 0.7722
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 is the broader agranular insular cortex, not the specific dorsal area. | top1 is the whole agranular insular cortex, broader than query's dorsal area subdivision but anatomically correct parent. | Top1 is the entire agranular insular cortex; query specifies dorsal area. Top1 is the parent structure, not the subregion.
3_unresolved_correct.csv
row 181
Agranular insular cortex, ventral area agranular insular cortex (area Iag)
HOMBA:10328 / score 0.7722
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 is the broader agranular insular cortex, not the specific ventral area. | top1 is the whole agranular insular cortex, broader than query's ventral area subdivision but anatomically correct parent. | Top1 is the whole agranular insular cortex; query asks for ventral area. Top1 is anatomically the parent, lacking subdivisional detail.
3_unresolved_correct.csv
row 182
Mediodorsal thalamic nucleus, lateral part mediodorsal nucleus of thalamus
HOMBA:10398 / score 0.7722
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 is the mediodorsal nucleus of thalamus (whole), broader than the lateral part. | top1 is the whole mediodorsal nucleus of thalamus, broader than query's lateral part but anatomically correct parent. | Top1 is the mediodorsal nucleus of thalamus; query seeks the lateral part. Top1 represents the undivided parent nucleus.
3_unresolved_correct.csv
row 183
Mediodorsal thalamic nucleus, medial part mediodorsal nucleus of thalamus
HOMBA:10398 / score 0.7722
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 is the mediodorsal nucleus of thalamus (whole), broader than the medial part. | top1 is the whole mediodorsal nucleus of thalamus, broader than query's medial part but anatomically correct parent. | Top1 is the mediodorsal nucleus of thalamus; query asks for medial part. Top1 is the broader parent structure, not the specific subdivision.
3_unresolved_correct.csv
row 184
Superior frontal gyrus, medial superior frontal gyrus
HOMBA:12115 / score 0.7722
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is the parent structure (superior frontal gyrus) for the specified medial subdivision in query. | Query specifies medial part of superior frontal gyrus, but top1 is whole gyrus, a valid parent. | Query specifies 'medial' subdivision of superior frontal gyrus; top1 is the entire gyrus, a correct parent structure.
3_unresolved_correct.csv
row 185
Ventral cortical amygdaloid nucleus cortical nucleus of amygdala
HOMBA:10373 / score 0.7722
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is the parent structure (cortical nucleus of amygdala) for the specified ventral subdivision. | Query specifies ventral part of cortical amygdaloid nucleus, top1 is the whole nucleus without ventral specification. | Query is 'Ventral cortical amygdaloid nucleus', a subregion; top1 is the whole cortical nucleus of amygdala, not the ventral part.
3_unresolved_correct.csv
row 197
Frontal orbital cortex, anterior frontal cortex
HOMBA:10161 / score 0.798344
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
frontal cortex is broader than frontal orbital cortex, anterior; query specifies subregion and subregion-modifier | Frontal cortex is a broader parent of frontal orbital cortex, anterior; not exact but anatomically valid. | Query is ‘anterior orbital frontal cortex’; top1 ‘frontal cortex’ is the correct broader parent region, anatomically appropriate but not precise.
3_unresolved_correct.csv
row 199
Cuneate Gracile Nuclei sensory relay nuclei in medulla oblongata
HOMBA:12587 / score 0.805236
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is a broader functional group (sensory relay nuclei in medulla) that includes both cuneate and gracile nuclei; anatomically correct parent. | Query specifies cuneate and gracile nuclei; top1 is a broader grouping 'sensory relay nuclei in medulla oblongata' which includes them. Anatomically correct parent. | Query names cuneate and gracile nuclei; top1 is the parent category 'sensory relay nuclei in medulla oblongata', which is anatomically correct but broader.
3_unresolved_correct.csv
row 206
Medial geniculate body, suprageniculate nucleus medial geniculate nucleus
HOMBA:10434 / score 0.820237
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.97
top1 is the parent medial geniculate nucleus, while query specifies the suprageniculate nucleus within it. | Top1 is the parent nucleus of the queried suprageniculate nucleus; anatomically broader but correct container. | Top1 corresponds to only the first part (medial geniculate body) of a two-part query; suprageniculate nucleus is missing.
3_unresolved_correct.csv
row 214
Anteroventral thalamic nucleus, ventrolateral part anteroventral nucleus of thalamus
HOMBA:10395 / score 0.850962
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the parent nucleus of the specified subpart, broader but anatomically correct. | top1_name 'anteroventral nucleus of thalamus' is the parent structure of the query's specified ventrolateral part. | Top1 is the whole anteroventral nucleus of thalamus; query specifies only its ventrolateral part, so top1 is the correct parent.
3_unresolved_correct.csv
row 218
Cornu ammonis 1 hippocampal proper (Cornu Ammonis)
HOMBA:10296 / score 0.856667
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the entire Cornu Ammonis; query specifies subfield CA1, so top1 is broader parent. | top1_name 'Cornu Ammonis' is the broader parent of the specific subfield CA1 (Cornu ammonis 1). | Top1 is hippocampal proper (entire Cornu Ammonis), while query is Cornu ammonis 1 (CA1), a subfield. Top1 is the correct parent structure.
3_unresolved_correct.csv
row 219
Cornu ammonis 2 hippocampal proper (Cornu Ammonis)
HOMBA:10296 / score 0.856667
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 is hippocampal proper (Cornu Ammonis), which is the broader parent of the specific subfield CA2. | Top1 is the whole Cornu Ammonis region, while query specifies CA2 subfield. Anatomically correct parent. | Query is 'Cornu ammonis 2' (CA2 subfield); top1 is the whole hippocampal proper, which is the anatomically correct parent but not the specific subfield.
3_unresolved_correct.csv
row 220
Cornu ammonis 3 hippocampal proper (Cornu Ammonis)
HOMBA:10296 / score 0.856667
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Top1 is hippocampal proper (Cornu Ammonis), broader parent of CA3. | Top1 is the whole Cornu Ammonis region, while query specifies CA3 subfield. Anatomically correct parent. | Query is 'Cornu ammonis 3' (CA3 subfield); top1 is whole hippocampal proper, broader parent structure, not exact but not wrong.
3_unresolved_correct.csv
row 224
Ventromedial occipital cortex extrastriate occipital cortex
HOMBA:10270 / score 0.863622
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 (extrastriate occipital cortex) is broader than query (ventromedial occipital cortex) but is the anatomically correct parent region. | Ventromedial occipital cortex is a subdivision; extrastriate occipital cortex is a broader visual association area. | Extrastriate occipital cortex is a broader region that includes the ventromedial occipital cortex.
3_unresolved_correct.csv
row 226
Anteroventral thalamic nucleus, dorsomedial part anteroventral nucleus of thalamus
HOMBA:10395 / score 0.87
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 (anteroventral nucleus of thalamus) is the parent nucleus of the specified dorsomedial part; broader but anatomically correct. | Query specifies dorsomedial part; top1 is the whole nucleus, a valid parent structure. | Anteroventral nucleus of thalamus is the parent structure of its dorsomedial part.
3_unresolved_correct.csv
row 230
Mediodorsal thalamic nucleus, central part mediodorsal nucleus of thalamus
HOMBA:10398 / score 0.8775
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'central part' of mediodorsal thalamic nucleus, but top1 is the whole mediodorsal nucleus, which is broader. | Top1 is parent nucleus of the queried subpart (central part of mediodorsal nucleus). | Top1 is the broader parent nucleus (mediodorsal) while query is specific central part; anatomically correct parent.
3_unresolved_correct.csv
row 231
Habenula (lateral part) habenular nuclei
HOMBA:10452 / score 0.88
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query asks for 'lateral part' of habenula, but top1 is the general habenular nuclei, which is broader. | Top1 is the habenular nuclei group, while query specifies lateral part. | Query specifies lateral part of habenula; top1 is the broader habenular nuclei, correct parent.
3_unresolved_correct.csv
row 232
Habenula (medial part) habenular nuclei
HOMBA:10452 / score 0.88
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query asks for 'medial part' of habenula, but top1 is the general habenular nuclei, which is broader. | Top1 is the habenular nuclei group, while query specifies medial part. | Query specifies medial part of habenula; top1 is the broader habenular nuclei, correct parent.
3_unresolved_correct.csv
row 233
Paraventricular thalamic nuclei (anterior and posterior) paraventricular nucleus of thalamus
HOMBA:10457 / score 0.88
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies 'anterior and posterior' parts of paraventricular thalamic nuclei, but top1 is the general paraventricular nucleus, broader. | Top1 is the paraventricular nucleus, while query specifies anterior and posterior parts. | Query refers to anterior/posterior parts of paraventricular thalamic nuclei; top1 is the broader paraventricular nucleus, correct parent.
3_unresolved_correct.csv
row 234
Zona incerta (caudal part) zona incerta
HOMBA:10463 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.98
Top1 is the whole zona incerta, while query specifies the caudal part; top1 is anatomically correct parent. | Query specifies 'caudal part' of zona incerta but top1 is whole structure zona incerta; anatomically correct parent. | Query specifies caudal part of zona incerta; top1 is the whole zona incerta, which is the anatomically correct parent structure.
3_unresolved_correct.csv
row 235
Zona incerta (dorsal part) zona incerta
HOMBA:10463 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.98
Top1 is the whole zona incerta, while query specifies the dorsal part; top1 is anatomically correct parent. | Query specifies 'dorsal part' of zona incerta but top1 is whole structure zona incerta; anatomically correct parent. | Query specifies dorsal part; top1 is the whole zona incerta, the correct parent.
3_unresolved_correct.csv
row 236
Zona incerta (rostral part) zona incerta
HOMBA:10463 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.98
Top1 is the whole zona incerta, while query specifies the rostral part; top1 is anatomically correct parent. | Query specifies 'rostral part' of zona incerta but top1 is whole structure zona incerta; anatomically correct parent. | Query specifies rostral part; top1 is the whole zona incerta, the correct parent.
3_unresolved_correct.csv
row 237
Zona incerta (ventral part) zona incerta
HOMBA:10463 / score 0.88
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.98
Top1 is the whole zona incerta, while query specifies the ventral part; top1 is anatomically correct parent. | Query specifies 'ventral part' of zona incerta but top1 is whole structure zona incerta; anatomically correct parent. | Query specifies ventral part; top1 is the whole zona incerta, the correct parent.
3_unresolved_correct.csv
row 246
Lateral Dorsal Amygdaloid Nucleus lateral nucleus of amygdala
HOMBA:10367 / score 0.713584
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.85
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.75
Top1 'lateral nucleus of amygdala' is the parent structure; query specifies 'Lateral Dorsal' which is a subdivision of the lateral nucleus. | top1 is the lateral nucleus of amygdala, which is the parent of the specified lateral dorsal subdivision | Query specifies dorsal subdivision of lateral amygdaloid nucleus; top1 is the lateral nucleus overall, a broader parent.
3_unresolved_correct.csv
row 247
Dorsal cochlear nucleus, fusiform and granule layer dorsal cochlear nucleus
HOMBA:12438 / score 0.732002
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 'dorsal cochlear nucleus' is the whole nucleus; query specifies layers (fusiform and granule), so top1 is the broader container. | top1 names the dorsal cochlear nucleus without the layer specification, which is a broader structure | Query names specific layers of dorsal cochlear nucleus; top1 is the entire dorsal cochlear nucleus, a valid parent structure.
3_unresolved_correct.csv
row 249
Lateral amygdaloid nucleus (dorsal) lateral nucleus of amygdala
HOMBA:10367 / score 0.754779
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is dorsal part of lateral amygdaloid nucleus; top1 is the whole lateral nucleus, which is the parent structure. | top1 is the lateral nucleus, which is the parent of the specified dorsal part. | Query specifies dorsal part of lateral amygdaloid nucleus; top1 is the entire lateral nucleus, anatomically the correct parent structure.
3_unresolved_correct.csv
row 250
Lateral amygdaloid nucleus (ventral) lateral nucleus of amygdala
HOMBA:10367 / score 0.754779
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is ventral part of lateral amygdaloid nucleus; top1 is the whole lateral nucleus, the parent structure. | top1 is the lateral nucleus, which is the parent of the specified ventral part. | Query specifies ventral part of lateral amygdaloid nucleus; top1 is the whole lateral nucleus, correct parent.
3_unresolved_correct.csv
row 252
Ventral cochlear nucleus, granule cell layer ventral cochlear nucleus
HOMBA:12439 / score 0.791105
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies granule cell layer of ventral cochlear nucleus; top1 is the whole ventral cochlear nucleus, the parent structure. | top1 is the ventral cochlear nucleus, parent of the granule cell layer. | Query asks for granule cell layer of ventral cochlear nucleus; top1 is the whole nucleus, correct parent.
3_unresolved_correct.csv
row 253
Dorsal cochlear nucleus, molecular layer dorsal cochlear nucleus
HOMBA:12438 / score 0.819808
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies molecular layer of dorsal cochlear nucleus; top1 is the whole dorsal cochlear nucleus, the parent structure. | top1 is the dorsal cochlear nucleus, parent of the molecular layer. | Query asks for molecular layer of dorsal cochlear nucleus; top1 is the whole nucleus, correct parent.
3_unresolved_correct.csv
row 254
Medial geniculate complex (dorsal division) medial geniculate nuclear complex
HOMBA:AA30307 / score 0.825834
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the whole medial geniculate complex, broader than query's dorsal division. | Top1 is the whole medial geniculate nuclear complex, broader than the query's dorsal division. | Query specifies dorsal division of medial geniculate complex; top1 is the whole complex, which is the correct parent structure but not the subdivision.
3_unresolved_correct.csv
row 255
Medial geniculate complex (ventral division) medial geniculate nuclear complex
HOMBA:AA30307 / score 0.825834
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the whole medial geniculate complex, broader than query's ventral division. | Top1 is the whole medial geniculate nuclear complex, broader than the query's ventral division. | Query specifies ventral division of medial geniculate complex; top1 is the whole complex, a broader parent but anatomically correct.
3_unresolved_correct.csv
row 256
Reticular (pre)thalamic nucleus, auditory segment reticular nucleus of thalamus
HOMBA:10464 / score 0.845326
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 is the entire reticular nucleus of thalamus, broader than the auditory segment. | Top1 is the whole reticular nucleus of thalamus, broader than the query's auditory segment. | Query is auditory segment of reticular thalamic nucleus; top1 is the entire nucleus, a broader parent structure.
3_unresolved_correct.csv
row 258
External globus pallidus (lateral part) external division of globus pallidus
HOMBA:10343 / score 0.860346
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.9
Top1 is the whole external globus pallidus, broader than the lateral part. | Top1 is whole external division of globus pallidus; query specifies lateral part, a subregion. | Query possibly refers to a lateral subpart of external globus pallidus. Top1 is the whole external division, broader but anatomically correct parent.
3_unresolved_correct.csv
row 259
External globus pallidus (medial part) external division of globus pallidus
HOMBA:10343 / score 0.860346
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the whole external division, broader than the medial part specified in query | Top1 is the whole external globus pallidus; query specifies medial part, so broader parent. | top1 is the whole external globus pallidus; query is its medial part. Correct parent.
3_unresolved_correct.csv
row 261
Ventral cochlear nucleus, posterior part ventral cochlear nucleus
HOMBA:12439 / score 0.896538
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the whole ventral cochlear nucleus, broader than the posterior part | Top1 is whole ventral cochlear nucleus; query specifies posterior part, so broader parent. | top1 is the entire ventral cochlear nucleus; query is posterior part. Correct parent.
3_unresolved_correct.csv
row 262
Dorsal cochlear nucleus, deep core dorsal cochlear nucleus
HOMBA:12438 / score 0.9
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the whole dorsal cochlear nucleus, broader than the deep core | Top1 is whole dorsal cochlear nucleus; query specifies deep core, so broader parent. | top1 is entire dorsal cochlear nucleus; query is deep core part. Correct parent.
3_unresolved_correct.csv
row 263
Globus pallidus external, lateral part external division of globus pallidus
HOMBA:10343 / score 0.901216
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the whole external division, broader than the lateral part | Top1 is whole external globus pallidus; query specifies lateral part, so broader parent. | top1 is whole external globus pallidus; query is lateral part. Correct parent.
3_unresolved_correct.csv
row 264
Globus pallidus external, medial part external division of globus pallidus
HOMBA:10343 / score 0.914167
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
Query specifies medial part of external globus pallidus; top1 is whole external division, so broader parent. | Query specifies medial part of external globus pallidus; top1 covers entire external division, a valid parent. | Query mentions both external and medial parts; top1 is only external division, missing medial part.
3_unresolved_correct.csv
row 266
Lateral septal nucleus (rostral division) lateral septal nuclear complex
HOMBA:10352 / score 1.0
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.85
Query is rostral division of lateral septal nucleus; top1 is the broader lateral septal nuclear complex. | Query specifies rostral division of lateral septal nucleus; top1 is lateral septal nuclear complex, a broader parent. | Query is a specific rostral division; top1 is the whole lateral septal nuclear complex, the correct parent.
3_unresolved_correct.csv
row 275
Ventrolateral orbital area orbital gyri
HOMBA:AA30533 / score 0.521543
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 'orbital gyri' is the parent region containing ventrolateral orbital area. | Orbital gyri is the broader region containing the ventrolateral orbital area, which is a specific subregion. | Ventrolateral orbital area is a specific subregion of the orbital gyri, so top1 is a broader parent.
3_unresolved_correct.csv
row 276
Dorsolateral orbital area orbital gyri
HOMBA:AA30533 / score 0.529075
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 'orbital gyri' is the parent region containing dorsolateral orbital area. | Orbital gyri is the broader region containing the dorsolateral orbital area, which is a specific subregion. | Dorsolateral orbital area is a subregion of the orbital gyri, making top1 anatomically broader.
3_unresolved_correct.csv
row 278
Superior periolivary region superior olivary complex
HOMBA:12462 / score 0.538222
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Top1 'superior olivary complex' is the parent structure containing the superior periolivary region. | Superior olivary complex includes the superior olive and periolivary regions; top1 is a broader structure. | Superior periolivary region is adjacent to, not the same as, the superior olivary complex; top1 names the complex itself.
3_unresolved_correct.csv
row 282
Paraventricular Posterior Thalamus paraventricular nucleus of thalamus
HOMBA:10457 / score 0.571494
上位概念として整合 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.6
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.85
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query specifies posterior part of paraventricular thalamus, but top1 is the whole nucleus (paraventricular nucleus of thalamus), which is a broader parent. | Query specifies paraventricular posterior thalamus; top1 is general paraventricular nucleus, a valid parent. | Query asks for posterior paraventricular thalamus; top1 is whole nucleus, the parent container. Broader but anatomically correct.
3_unresolved_correct.csv
row 283
Paraventricular Anterior Thalamus paraventricular nucleus of thalamus
HOMBA:10457 / score 0.579991
上位概念として整合 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.6
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.85
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query specifies anterior part of paraventricular thalamus, but top1 is the whole nucleus, broader parent. | Query specifies paraventricular anterior thalamus; top1 is general paraventricular nucleus, a valid parent. | Query asks for anterior paraventricular thalamus; top1 is whole nucleus, the parent container. Broader but anatomically correct.
4_unresolved_incorrect.csv
row 9
Somatosensory area 3a primary somatosensory cortex (first somatosensory cortex, areas 3,1,2)
HOMBA:10209 / score 0.665067
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Area 3a is a subdivision of primary somatosensory cortex; top1 names the broader parent including areas 3,1,2. | Area 3a is a subdivision of primary somatosensory cortex (areas 3,1,2); top1 is the valid parent structure. | Area 3a is a specific subfield of primary somatosensory cortex; top1 names the entire parent region (areas 3,1,2).
4_unresolved_incorrect.csv
row 10
Somatosensory area 3b primary somatosensory cortex (first somatosensory cortex, areas 3,1,2)
HOMBA:10209 / score 0.665067
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is area 3b, a subdivision of primary somatosensory cortex; top1 correctly names the broader parent structure. | Query 'Somatosensory area 3b' is a subdivision of area 3; top1 'primary somatosensory cortex' includes area 3b as part of S1, so it is a broader parent. | Area 3b is a subregion of primary somatosensory cortex (areas 3,1,2), so top1 is the broader anatomical parent.
4_unresolved_incorrect.csv
row 27
Frontoinsular area insular lobe
HOMBA:12176 / score 0.4375
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Frontoinsular area is a subdivision of the insular lobe; top1 is the broader structure. | Frontoinsular area includes frontal and insular cortex; top1 insular lobe only covers the insular component. | Frontoinsular area is a specific cortical region within the insula; insular lobe is the parent structure, thus a broader but anatomically correct container.
4_unresolved_incorrect.csv
row 28
Prefrontal area 10pp prefrontal cortex
HOMBA:10172 / score 0.466685
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Prefrontal area 10pp is a specific region within prefrontal cortex; top1 is broader. | Prefrontal area 10pp is a subregion of prefrontal cortex; top1 is the broader parent structure. | Prefrontal area 10pp is a subarea of the prefrontal cortex, which is the broader parent region.
4_unresolved_incorrect.csv
row 33
Prefrontal area 10d prefrontal cortex
HOMBA:10172 / score 0.473285
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Prefrontal area 10d is a subregion of prefrontal cortex, which is the broader anatomically correct parent. | Prefrontal cortex is a valid broader anatomical parent of the specific 'Prefrontal area 10d'. | Prefrontal area 10d is a specific subdivision of the prefrontal cortex, so top1 is the correct parent region.
4_unresolved_incorrect.csv
row 34
Prefrontal area 10r prefrontal cortex
HOMBA:10172 / score 0.473285
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Prefrontal area 10r is a subregion of prefrontal cortex, which is the broader anatomically correct parent. | Prefrontal cortex is a valid broader anatomical parent of the specific 'Prefrontal area 10r'. | Prefrontal area 10r is a subregion of prefrontal cortex; top1 is the appropriate broader anatomical parent.
4_unresolved_incorrect.csv
row 35
Prefrontal area 47l prefrontal cortex
HOMBA:10172 / score 0.473285
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 'prefrontal cortex' is the broader anatomical region containing the specific 'Prefrontal area 47l'. | Query is a specific subarea (area 47l) within prefrontal cortex; top1 is the entire prefrontal cortex, a valid parent. | Query 'Prefrontal area 47l' is a specific subregion of prefrontal cortex; top1 'prefrontal cortex' is the anatomically correct broader parent region.
4_unresolved_incorrect.csv
row 36
Prefrontal area 47m prefrontal cortex
HOMBA:10172 / score 0.473285
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 'prefrontal cortex' is the broader anatomical region containing the specific 'Prefrontal area 47m'. | Query is a specific subarea (area 47m) within prefrontal cortex; top1 is the entire prefrontal cortex, a valid parent. | Query 'Prefrontal area 47m' is a specific subregion of prefrontal cortex; top1 'prefrontal cortex' is the anatomically correct broader parent region.
4_unresolved_incorrect.csv
row 37
Prefrontal area 47r prefrontal cortex
HOMBA:10172 / score 0.473285
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 'prefrontal cortex' is the broader anatomical region containing the specific 'Prefrontal area 47r'. | Query is a specific subarea (area 47r) within prefrontal cortex; top1 is the entire prefrontal cortex, a valid parent. | Query 'Prefrontal area 47r' is a specific subregion of prefrontal cortex; top1 'prefrontal cortex' is the anatomically correct broader parent region.
4_unresolved_incorrect.csv
row 38
Prefrontal area 47s prefrontal cortex
HOMBA:10172 / score 0.473285
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 'prefrontal cortex' is the broader anatomical region containing the specific 'Prefrontal area 47s'. | Query is a specific subarea (area 47s) within prefrontal cortex; top1 is the entire prefrontal cortex, a valid parent. | Query 'Prefrontal area 47s' is a specific subregion of prefrontal cortex; top1 'prefrontal cortex' is the anatomically correct broader parent region.
4_unresolved_incorrect.csv
row 39
Prefrontal area 8Ad prefrontal cortex
HOMBA:10172 / score 0.473285
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 'prefrontal cortex' is the broader anatomical region containing the specific 'Prefrontal area 8Ad'. | Query is a specific subarea (area 8Ad) within prefrontal cortex; top1 is the entire prefrontal cortex, a valid parent. | Query 'Prefrontal area 8Ad' is a specific subregion of prefrontal cortex; top1 'prefrontal cortex' is the anatomically correct broader parent region.
4_unresolved_incorrect.csv
row 40
Prefrontal area 8Av prefrontal cortex
HOMBA:10172 / score 0.473285
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 returns the broader parent region 'prefrontal cortex' for the specific subarea 'Prefrontal area 8Av'. | Prefrontal area 8Av is a subregion of prefrontal cortex; top1 correctly identifies the parent structure. | Query is a specific prefrontal cytoarchitectonic area (8Av); top1 is the broader parent region prefrontal cortex.
4_unresolved_incorrect.csv
row 41
Prefrontal area 8BL prefrontal cortex
HOMBA:10172 / score 0.473285
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 returns the broader parent region 'prefrontal cortex' for the specific subarea 'Prefrontal area 8BL'. | Prefrontal area 8BL is a subregion of prefrontal cortex; top1 correctly identifies the parent structure. | Query is a specific prefrontal area (8BL); top1 is the broader parent region prefrontal cortex.
4_unresolved_incorrect.csv
row 42
Prefrontal area 8BM prefrontal cortex
HOMBA:10172 / score 0.473285
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 returns the broader parent region 'prefrontal cortex' for the specific subarea 'Prefrontal area 8BM'. | Prefrontal area 8BM is a subregion of prefrontal cortex; top1 correctly identifies the parent structure. | Query is a specific prefrontal area (8BM); top1 is the broader parent region prefrontal cortex.
4_unresolved_incorrect.csv
row 43
Prefrontal area 8C prefrontal cortex
HOMBA:10172 / score 0.48031
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 returns the broader parent region 'prefrontal cortex' for the specific subarea 'Prefrontal area 8C'. | Prefrontal area 8C is a subregion of prefrontal cortex; top1 correctly identifies the parent structure. | Query is a specific prefrontal area (8C); top1 is the broader parent region prefrontal cortex.
4_unresolved_incorrect.csv
row 44
Prefrontal area 9a prefrontal cortex
HOMBA:10172 / score 0.48031
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Top1 returns the broader parent region 'prefrontal cortex' for the specific subarea 'Prefrontal area 9a'. | Prefrontal area 9a is a subregion of prefrontal cortex; top1 correctly identifies the parent structure. | Query is a specific prefrontal area (9a); top1 is the broader parent region prefrontal cortex.
4_unresolved_incorrect.csv
row 45
Prefrontal area 9m prefrontal cortex
HOMBA:10172 / score 0.48031
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies a specific subregion of prefrontal cortex; top1 is the broader parent cortex. Anatomically consistent container. | 'Prefrontal cortex' is a valid parent region of 'Prefrontal area 9m', which is a specific subarea. | Query specifies area 9m, a subsection of prefrontal cortex; top1 is the broader parent region.
4_unresolved_incorrect.csv
row 46
Prefrontal area 9p prefrontal cortex
HOMBA:10172 / score 0.48031
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies a specific subregion of prefrontal cortex; top1 is the broader parent cortex. Anatomically consistent container. | 'Prefrontal cortex' is a valid parent region of 'Prefrontal area 9p'. | Query specifies area 9p, a subsection of prefrontal cortex; top1 is the broader parent region.
4_unresolved_incorrect.csv
row 50
Opercular area OP2-3 opercular subdivision of area 44
HOMBA:266441161 / score 0.48908
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.6
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Query specifies Opercular area OP2-3, a subregion of opercular cortex. Top1 is broader region covering the whole opercular subdivision of area 44. | Query 'Opercular area OP2-3' likely refers to subregions of opercular cortex; top1 'opercular subdivision of area 44' is broader encompassing OP2-3. | Opercular area OP2-3 is in parietal operculum, not a subdivision of area 44 (frontal operculum). Anatomically different.
4_unresolved_incorrect.csv
row 51
Premotor area 6mp premotor cortex (area 6, area FB, secondary motor cortex)
HOMBA:10168 / score 0.490741
上位概念として整合 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.85
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.7
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.85
Query specifies Premotor area 6mp, a medial subdivision of area 6. Top1 is the entire premotor cortex, a broader parent region. | Query 'Premotor area 6mp' is a specific part of area 6; top1 'premotor cortex (area 6...)' is broader covering entire area 6. | Premotor area 6mp is a part of area 6 premotor cortex, so top1 (premotor cortex area 6) is broader parent.
4_unresolved_incorrect.csv
row 57
Premotor area 6a premotor cortex (area 6, area FB, secondary motor cortex)
HOMBA:10168 / score 0.498215
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.99
Query specifies premotor area 6a (subdivision of area 6); top1 is premotor cortex (area 6), the broader parent region. | Query is Premotor area 6a, a subdivision of premotor cortex; top1 is premotor cortex (area 6), valid broader parent. | Premotor area 6a is a specific part of premotor cortex (area 6). Top1 is the whole premotor cortex, a valid parent structure.
4_unresolved_incorrect.csv
row 58
Premotor area 6d premotor cortex (area 6, area FB, secondary motor cortex)
HOMBA:10168 / score 0.498215
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.99
Query specifies premotor area 6d (subdivision of area 6); top1 is premotor cortex (area 6), the broader parent region. | Query is Premotor area 6d, a subdivision of premotor cortex; top1 is premotor cortex, valid broader parent. | Premotor area 6d is a subdivision of premotor cortex; top1 correctly names the parent region.
4_unresolved_incorrect.csv
row 59
Premotor area 6m premotor cortex (area 6, area FB, secondary motor cortex)
HOMBA:10168 / score 0.498215
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.99
Query specifies premotor area 6m (subdivision of area 6); top1 is premotor cortex (area 6), the broader parent region. | Query is Premotor area 6m, a subdivision of premotor cortex; top1 is premotor cortex, valid broader parent. | Premotor area 6m is a subdivision; top1 is the overarching premotor cortex, anatomically compatible.
4_unresolved_incorrect.csv
row 60
Premotor area 6r premotor cortex (area 6, area FB, secondary motor cortex)
HOMBA:10168 / score 0.498215
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Premotor area 6r is a subdivision of premotor cortex; top1 is the broader premotor cortex. | top1_name includes 'premotor cortex (area 6)' which directly matches the query 'Premotor area 6r'. | Top1 is the entire premotor cortex; query specifies subregion 6r. Anatomically correct parent.
4_unresolved_incorrect.csv
row 61
Premotor area 6v premotor cortex (area 6, area FB, secondary motor cortex)
HOMBA:10168 / score 0.498215
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Premotor area 6v is a subdivision of premotor cortex; top1 is the broader premotor cortex. | top1_name includes 'premotor cortex (area 6)' which directly matches the query 'Premotor area 6v'. | Top1 is premotor cortex; query is a subarea (6v). Broader parent, not wrong.
4_unresolved_incorrect.csv
row 64
Temporal area STSda temporal lobe
HOMBA:12139 / score 0.505197
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Temporal area STSda is part of temporal lobe; top1 temporal lobe is broader parent. | temporal lobe is a broader anatomical region that contains the temporal area STSda. | Top1 is temporal lobe; query is a specific cortical area within it (STSda). Correct parent, too broad.
4_unresolved_incorrect.csv
row 65
Temporal area STSdp temporal lobe
HOMBA:12139 / score 0.505197
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies a subregion of temporal lobe (STSdp); top1 is the parent structure temporal lobe. | Query 'Temporal area STSdp' is a specific subregion of temporal lobe; top1 'temporal lobe' is the broader anatomical parent. | Query is a specific cortical area (STSdp) within the temporal lobe; top1 is the broader temporal lobe, a correct parent region.
4_unresolved_incorrect.csv
row 66
Temporal area STSva temporal lobe
HOMBA:12139 / score 0.505197
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies a subregion of temporal lobe (STSva); top1 is the parent structure temporal lobe. | Query 'Temporal area STSva' is a specific subregion of temporal lobe; top1 'temporal lobe' is the broader anatomical parent. | Query is a specific cortical area (STSva) within the temporal lobe; top1 is the broader temporal lobe, a correct parent region.
4_unresolved_incorrect.csv
row 67
Temporal area STSvp temporal lobe
HOMBA:12139 / score 0.505197
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies a subregion of temporal lobe (STSvp); top1 is the parent structure temporal lobe. | Query 'Temporal area STSvp' is a specific subregion of temporal lobe; top1 'temporal lobe' is the broader anatomical parent. | Query is a specific cortical area (STSvp) within the temporal lobe; top1 is the broader temporal lobe, a correct parent region.
4_unresolved_incorrect.csv
row 68
Temporal area STGg temporal lobe
HOMBA:12139 / score 0.512266
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query specifies a subregion of temporal lobe (STGg); top1 is the parent structure temporal lobe. | Query 'Temporal area STGg' is a specific subregion of temporal lobe; top1 'temporal lobe' is the broader anatomical parent. | Query is a specific cortical area (STGg) within the temporal lobe; top1 is the broader temporal lobe, a correct parent region.
4_unresolved_incorrect.csv
row 70
Temporal area TE1a temporal lobe
HOMBA:12139 / score 0.514775
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is a specific subregion (TE1a) of temporal lobe; top1 is the broader parent structure. | top1 is temporal lobe, a broader parent of the specified temporal area subregion TE1a. | Query is specific cytoarchitectonic area TE1a in temporal lobe; top1 is temporal lobe, correct parent container but too broad.
4_unresolved_incorrect.csv
row 71
Temporal area TE1m temporal lobe
HOMBA:12139 / score 0.514775
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is a specific subregion (TE1m) of temporal lobe; top1 is the broader parent structure. | top1 is temporal lobe, a broader parent of the specified temporal area subregion TE1m. | Query TE1m is a temporal subregion; top1 temporal lobe is the anatomically correct parent, though much broader.
4_unresolved_incorrect.csv
row 72
Temporal area TE1p temporal lobe
HOMBA:12139 / score 0.514775
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is a specific subregion (TE1p) of temporal lobe; top1 is the broader parent structure. | top1 is temporal lobe, a broader parent of the specified temporal area subregion TE1p. | Query TE1p is a temporal lobe subarea; top1 returns the lobe itself, a broader but correct parent structure.
4_unresolved_incorrect.csv
row 73
Temporal area TE2a temporal lobe
HOMBA:12139 / score 0.514775
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is a specific subregion (TE2a) of temporal lobe; top1 is the broader parent structure. | top1 is temporal lobe, a broader parent of the specified temporal area subregion TE2a. | Specific area TE2a lies within temporal lobe; top1 lobe is the immediate anatomical parent, acceptable as broader.
4_unresolved_incorrect.csv
row 75
Temporal area PSL temporal lobe
HOMBA:12139 / score 0.519881
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query specifies a subregion (PSL) within the temporal area; top1 'temporal lobe' is the broader parent structure. | Query 'Temporal area PSL' likely a specific subregion; top1 'temporal lobe' is the broader parent region. | Temporal area PSL is a specific cortical area within the temporal lobe; temporal lobe is the correct higher-level structure.
4_unresolved_incorrect.csv
row 76
Temporal area TGd temporal lobe
HOMBA:12139 / score 0.519881
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query specifies a subregion (TGd) within the temporal area; top1 'temporal lobe' is the broader parent structure. | Query 'Temporal area TGd' likely a specific subregion; top1 'temporal lobe' is the broader parent. | Temporal area TGd is a subregion of the temporal lobe; temporal lobe is the appropriate broader parent.
4_unresolved_incorrect.csv
row 81
Prefrontal area 9-46d intermediate division of DFC (area 9/46)
HOMBA:10181 / score 0.544979
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Dorsal part of area 9/46 vs intermediate division; different subdivisions. | Query specifies dorsal division of area 9/46; top1 is the parent area 9/46 (intermediate division of DFC), anatomically valid broader region. | Area 9-46d is a specific dorsolateral prefrontal subdivision; area 9/46 is its parent region.
4_unresolved_incorrect.csv
row 82
Prefrontal area 9-46v intermediate division of DFC (area 9/46)
HOMBA:10181 / score 0.544979
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Ventral part of area 9/46 vs intermediate division; different subdivisions. | Query specifies ventral division of area 9/46; top1 is the parent area 9/46, anatomically valid broader region. | Area 9-46v is a specific dorsolateral prefrontal subdivision; area 9/46 is its parent region.
4_unresolved_incorrect.csv
row 86
Insular area FOP1 insular lobe
HOMBA:12176 / score 0.547455
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
FOP1 is a subregion within the insular lobe; top1 is broader parent structure. | FOP1 is a specific area within insular lobe; insular lobe is the broader parent structure. | FOP1 is a specific insular area; insular lobe is the correct parent region.
4_unresolved_incorrect.csv
row 87
Insular area FOP2 insular lobe
HOMBA:12176 / score 0.547455
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
FOP2 is a subregion of the insular lobe; top1 is broader parent structure. | FOP2 is a specific area within insular lobe; insular lobe is the broader parent structure. | FOP2 is a specific insular area; insular lobe is the correct parent region.
4_unresolved_incorrect.csv
row 88
Insular area FOP3 insular lobe
HOMBA:12176 / score 0.547455
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
FOP3 is a subregion of the insular lobe; top1 is broader parent structure. | FOP3 is a specific area within insular lobe; insular lobe is the broader parent structure. | FOP3 is a specific insular area; insular lobe is the correct parent region.
4_unresolved_incorrect.csv
row 89
Insular area FOP4 insular lobe
HOMBA:12176 / score 0.547455
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
FOP4 is a subregion of the insular lobe; top1 is broader parent structure. | FOP4 is a specific area within insular lobe; insular lobe is the broader parent structure. | FOP4 is a specific insular area; insular lobe is the correct parent region.
4_unresolved_incorrect.csv
row 90
Insular area FOP5 insular lobe
HOMBA:12176 / score 0.547455
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Insular area FOP5 is a specific subregion; insular lobe is its broader parent. | Query specifies insular area FOP5, but top1 is the entire insular lobe. Anatomically valid parent for this region. | Insular area FOP5 is a subdivision of the insular lobe; top1 names the entire lobe, a correct broader parent.
4_unresolved_incorrect.csv
row 94
Parietal area IP0 parietal lobe
HOMBA:12131 / score 0.574173
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Parietal area IP0 is a specific area; parietal lobe is its broader parent. | Query is 'parietal area IP0', top1 is 'parietal lobe', a valid broader anatomical container. | Parietal area IP0 is a specific intraparietal region; top1 is the entire parietal lobe, a correct broader parent.
4_unresolved_incorrect.csv
row 95
Parietal area IP1 parietal lobe
HOMBA:12131 / score 0.574173
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is a specific parietal area (IP1); top1 is the broader parietal lobe, its correct parent. | The query is a specific parietal area (IP1), but top1 is the broader parietal lobe, an anatomically valid parent. | Query 'Parietal area IP1' is a specific cortical region within the parietal lobe; top1 'parietal lobe' is the anatomically correct broader parent.
4_unresolved_incorrect.csv
row 96
Parietal area IP2 parietal lobe
HOMBA:12131 / score 0.574173
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is a specific parietal area (IP2); top1 is the broader parietal lobe, its correct parent. | The query is a specific parietal area (IP2), but top1 is the broader parietal lobe, an anatomically valid parent. | Query 'Parietal area IP2' is a specific cortical region within the parietal lobe; top1 'parietal lobe' is the anatomically correct broader parent.
4_unresolved_incorrect.csv
row 97
Parietal area PFt parietal lobe
HOMBA:12131 / score 0.574173
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is a specific parietal area (PFt); top1 is the broader parietal lobe, its correct parent. | The query is a specific parietal area (PFt), but top1 is the broader parietal lobe, an anatomically valid parent. | Query 'Parietal area PFt' is a specific cortical region within the parietal lobe; top1 'parietal lobe' is the anatomically correct broader parent.
4_unresolved_incorrect.csv
row 98
Parietal area PGi parietal lobe
HOMBA:12131 / score 0.574173
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is a specific parietal area (PGi); top1 is the broader parietal lobe, its correct parent. | The query is a specific parietal area (PGi), but top1 is the broader parietal lobe, an anatomically valid parent. | Query 'Parietal area PGi' is a specific cortical region within the parietal lobe; top1 'parietal lobe' is the anatomically correct broader parent.
4_unresolved_incorrect.csv
row 99
Parietal area PGp parietal lobe
HOMBA:12131 / score 0.574173
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Query is a specific parietal area (PGp); top1 is the broader parietal lobe, its correct parent. | The query is a specific parietal area (PGp), but top1 is the broader parietal lobe, an anatomically valid parent. | Query 'Parietal area PGp' is a specific cortical region within the parietal lobe; top1 'parietal lobe' is the anatomically correct broader parent.
4_unresolved_incorrect.csv
row 100
Parietal area PGs parietal lobe
HOMBA:12131 / score 0.574173
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the parent lobe of the specified cortical area | Query 'Parietal area PGs' is a specific subdivision of the parietal lobe; top1 is the broader lobe itself. | Query 'Parietal area PGs' is a specific parietal cortical area; top1 'parietal lobe' is its anatomical parent lobe, which is broader but correct container.
4_unresolved_incorrect.csv
row 101
Frontal area SFL frontal lobe
HOMBA:12113 / score 0.579864
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the parent lobe of the specified cortical area | Query 'Frontal area SFL' is a specific subdivision of the frontal lobe; top1 is the broader lobe itself. | Query 'Frontal area SFL' is a specific frontal cortical area; top1 'frontal lobe' is its anatomical parent lobe, a broader correct container.
4_unresolved_incorrect.csv
row 102
Parietal area PFm parietal lobe
HOMBA:12131 / score 0.584173
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the parent lobe of the specified cortical area | Query 'Parietal area PFm' is a specific subdivision of the parietal lobe; top1 is the broader lobe itself. | Query 'Parietal area PFm' is a specific parietal cortical area; top1 'parietal lobe' is its parent lobe, a broader but correct anatomical container.
4_unresolved_incorrect.csv
row 103
Parietal area PFop parietal lobe
HOMBA:12131 / score 0.585961
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the parent lobe of the specified cortical area | Query 'Parietal area PFop' is a specific subdivision of the parietal lobe; top1 is the broader lobe itself. | Query 'Parietal area PFop' is a specific parietal cortical area; top1 'parietal lobe' is the anatomically correct parent lobe, broader than the query.
4_unresolved_incorrect.csv
row 104
Parietal area PFcm parietal lobe
HOMBA:12131 / score 0.58735
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the parent lobe of the specified cortical area | Query 'Parietal area PFcm' is a specific subdivision of the parietal lobe; top1 is the broader lobe itself. | Query 'Parietal area PFcm' is a specific parietal cortical area; top1 'parietal lobe' is its broader anatomical parent, not the exact area but not wrong.
4_unresolved_incorrect.csv
row 105
Centrolateral and Paracentral Thalamus rostral intralaminar nuclei of thalamus
HOMBA:10443 / score 0.601481
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 names rostral intralaminar nuclei, which is the broader group containing centrolateral and paracentral nuclei. | top1 is the broader rostral intralaminar nuclei which includes centrolateral and paracentral thalamus. | Top1 (rostral intralaminar nuclei) is the parent group containing centrolateral and paracentral thalamic nuclei; query names two specific members.
4_unresolved_incorrect.csv
row 107
Fastigial Cerebellar Nucleus cerebellar deep nuclei
HOMBA:10660 / score 0.609505
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 (cerebellar deep nuclei) is the broader group that includes the fastigial nucleus. | Top1 is cerebellar deep nuclei, which includes the fastigial nucleus. | Fastigial nucleus is one of the cerebellar deep nuclei; top1 is the entire group, a correct anatomical parent.
4_unresolved_incorrect.csv
row 109
Primary somatosensory area, forelimb representation primary somatosensory cortex (first somatosensory cortex, areas 3,1,2)
HOMBA:10209 / score 0.616768
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.85
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the primary somatosensory cortex as a whole, which is the broader region containing the forelimb representation. | Top1 is primary somatosensory cortex, the broader area containing the forelimb representation. | Top1 is the entire primary somatosensory cortex; query specifies the forelimb representation subregion. Parent correct.
4_unresolved_incorrect.csv
row 110
Primary somatosensory area, hindlimb representation primary somatosensory cortex (first somatosensory cortex, areas 3,1,2)
HOMBA:10209 / score 0.616768
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the entire primary somatosensory cortex, while query specifies hindlimb representation within it. | top1 is primary somatosensory cortex, which contains the hindlimb representation; broader but correct parent. | Query is a specific subregion (hindlimb) within primary somatosensory cortex; top1 correctly names the whole cortex, which is the parent structure.
4_unresolved_incorrect.csv
row 111
Perirhinal area 36 perirhinal cortical region
HOMBA:AA30025 / score 0.623878
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.85
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the broader perirhinal cortical region, query specifies area 36. | top1 is perirhinal cortical region, broader than area 36 but correct parent. | Perirhinal area 36 is a specific cytoarchitectonic subarea of the perirhinal cortical region; top1 returns the broader parent region.
4_unresolved_incorrect.csv
row 114
Primary somatosensory area, trunk representation primary somatosensory cortex (first somatosensory cortex, areas 3,1,2)
HOMBA:10209 / score 0.637321
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the entire primary somatosensory cortex, while query specifies trunk representation. | top1 is primary somatosensory cortex, broader than trunk representation but correct parent. | Query is trunk representation within primary somatosensory cortex; top1 returns the whole primary somatosensory cortex, correct parent structure.
4_unresolved_incorrect.csv
row 118
Primary somatosensory area, face representation primary somatosensory cortex (first somatosensory cortex, areas 3,1,2)
HOMBA:10209 / score 0.645
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query specifies face representation of primary somatosensory area; top1 is whole primary somatosensory cortex, a broader parent. | Query specifies 'face representation' within primary somatosensory area. Top1 is whole primary somatosensory cortex, which is the valid parent containing that representation. Not an exact match but anatomically correct parent. | Query specifies face representation subregion of S1; top1 is the whole primary somatosensory cortex, anatomically correct parent.
4_unresolved_incorrect.csv
row 123
Frontal association cortex frontal cortex
HOMBA:10161 / score 0.663516
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
Frontal association cortex is a subdivision of frontal cortex; top1 is the parent region. | Frontal association cortex is a subdivision of frontal cortex; top1 is broader parent. | Frontal association cortex (prefrontal) is a subdivision of the frontal cortex. Top1 'frontal cortex' is its broader parent region.
4_unresolved_incorrect.csv
row 126
Primary somatosensory area, dysgranular zone primary somatosensory cortex (first somatosensory cortex, areas 3,1,2)
HOMBA:10209 / score 0.670083
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query specifies dysgranular zone; top1 is the broader primary somatosensory cortex without the zone. | Top1 is the broader primary somatosensory cortex; query specifies dysgranular zone, which is a subdivision contained within it. | Dysgranular zone is a subregion of primary somatosensory cortex; top1 names the whole correct parent region.
4_unresolved_incorrect.csv
row 133
Piriform cortex, layer 1 piriform cortex
HOMBA:10311 / score 0.705435
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the whole piriform cortex, which contains layer 1. | query 'Piriform cortex, layer 1' specifies a layer; top1 'piriform cortex' is the parent structure containing all layers. | Query specifies layer 1 of piriform cortex; top1 'piriform cortex' is the parent structure, broader but anatomically correct.
4_unresolved_incorrect.csv
row 134
Piriform cortex, layer 2 piriform cortex
HOMBA:10311 / score 0.705435
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 is the whole piriform cortex, which contains layer 2. | query 'Piriform cortex, layer 2' specifies a layer; top1 'piriform cortex' is the parent structure containing all layers. | Query specifies layer 2 of piriform cortex; top1 'piriform cortex' is the parent structure, broader but anatomically correct.
4_unresolved_incorrect.csv
row 135
Piriform cortex, layer 3 piriform cortex
HOMBA:10311 / score 0.705435
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
top1 returns the parent structure piriform cortex, which is broader than the specific layer 3 query; anatomically correct parent. | Top1 names the cortex without layer specification; layer 3 is a subdivision of piriform cortex, so top1 is a valid broader parent. | Query specifies layer 3 of piriform cortex; top1 only matches piriform cortex overall, missing the layer.
4_unresolved_incorrect.csv
row 137
Centrolateral and paracentral thalamic nuclei rostral intralaminar nuclei of thalamus
HOMBA:10443 / score 0.719859
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 medium / 0.85
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1 returns rostral intralaminar nuclei, which is the parent group containing both centrolateral and paracentral nuclei; broader but anatomically correct. | Centrolateral and paracentral nuclei are part of rostral intralaminar nuclei; top1 is a broader grouping that includes them. | Centrolateral and paracentral nuclei are subtypes of rostral intralaminar nuclei; top1 is the parent group.
4_unresolved_incorrect.csv
row 140
Basomedial amygdaloid nucleus basolateral nuclear group of amygdala
HOMBA:10366 / score 0.725873
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.9
Basomedial nucleus is part of the basolateral nuclear group; top1 is a broader parent structure. | Basomedial amygdaloid nucleus is part of basolateral nuclear group; top1 is a valid broader parent. | Basomedial amygdaloid nucleus is distinct from basolateral nuclear group; they are different subdivisions of the amygdala.
4_unresolved_incorrect.csv
row 142
Intermediodorsal Thalamus dorsal midline nuclei of thalamus
HOMBA:AA30274 / score 0.729483
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.85
Intermediodorsal nucleus is part of dorsal midline nuclei; top1 is broader. | Intermediodorsal thalamus is part of dorsal midline nuclei; top1 is a broader parent group. | Intermediodorsal thalamus is a specific nucleus within the dorsal midline nuclear group; top1 is the broader parent group.
4_unresolved_incorrect.csv
row 160
Cerebellar Lobule 3 Vermis cerebellar morphology
HOMBA:AA30563 / score 0.798634
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is general cerebellar morphology, which is the broader parent of specific lobule+vermis query. | Query 'Cerebellar Lobule 3 Vermis' is a specific cerebellar lobule; top1 'cerebellar morphology' is a broad parent term covering the cerebellum, anatomically valid but not exact. | Cerebellar morphology is the broader parent region for any cerebellar vermis lobule; top1 is anatomically appropriate but less specific.
4_unresolved_incorrect.csv
row 161
Cerebellar Lobule 4 Vermis cerebellar morphology
HOMBA:AA30563 / score 0.798634
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is general cerebellar morphology, broader parent of Cerebellar Lobule 4 Vermis. | Query 'Cerebellar Lobule 4 Vermis' is a specific cerebellar lobule; top1 'cerebellar morphology' is a broad parent term covering the cerebellum, anatomically valid but not exact. | Cerebellar morphology is the broader parent region for any cerebellar vermis lobule; top1 is anatomically appropriate but less specific.
4_unresolved_incorrect.csv
row 162
Cerebellar Lobule 5 Vermis cerebellar morphology
HOMBA:AA30563 / score 0.798634
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is general cerebellar morphology, broader parent of Cerebellar Lobule 5 Vermis. | Query 'Cerebellar Lobule 5 Vermis' is a specific cerebellar lobule; top1 'cerebellar morphology' is a broad parent term covering the cerebellum, anatomically valid but not exact. | Cerebellar morphology is the broader parent region for any cerebellar vermis lobule; top1 is anatomically appropriate but less specific.
4_unresolved_incorrect.csv
row 163
Cerebellar Lobule 6 Vermis cerebellar morphology
HOMBA:AA30563 / score 0.798634
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is general cerebellar morphology, broader parent of Cerebellar Lobule 6 Vermis. | Query 'Cerebellar Lobule 6 Vermis' is a specific cerebellar lobule; top1 'cerebellar morphology' is a broad parent term covering the cerebellum, anatomically valid but not exact. | Cerebellar morphology is the broader parent region for any cerebellar vermis lobule; top1 is anatomically appropriate but less specific.
4_unresolved_incorrect.csv
row 164
Cerebellar Lobule 7 Vermis cerebellar morphology
HOMBA:AA30563 / score 0.798634
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is general cerebellar morphology, broader parent of Cerebellar Lobule 7 Vermis. | Query 'Cerebellar Lobule 7 Vermis' is a specific cerebellar lobule; top1 'cerebellar morphology' is a broad parent term covering the cerebellum, anatomically valid but not exact. | Cerebellar morphology is the broader parent region for any cerebellar vermis lobule; top1 is anatomically appropriate but less specific.
4_unresolved_incorrect.csv
row 165
Cerebellar Lobule 8 Vermis cerebellar morphology
HOMBA:AA30563 / score 0.798634
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query specifies a cerebellar lobule and vermis; top1 is general cerebellar morphology, which is broader but still cerebellar. | Cerebellar Lobule 8 Vermis is a specific cerebellar subdivision; top1 'cerebellar morphology' is a general term for the whole cerebellum. | Query is specific cerebellar vermis lobule; top1 is broad 'cerebellar morphology' concept, not a structure match.
4_unresolved_incorrect.csv
row 166
Cerebellar Lobule 9 Vermis cerebellar morphology
HOMBA:AA30563 / score 0.798634
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Query specifies a cerebellar lobule and vermis; top1 is general cerebellar morphology, which is broader but still cerebellar. | Cerebellar Lobule 9 Vermis is a specific cerebellar subdivision; top1 'cerebellar morphology' is a general term for the whole cerebellum. | Same as 870, specific lobule vermis vs. broad morphology term.
4_unresolved_incorrect.csv
row 172
Abducens Motor Nucleus efferent nuclei of cranial nerves in pons
HOMBA:12417 / score 0.819332
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.95
top1 is a group of efferent cranial nerve nuclei including abducens; broader but anatomically correct | Top1 is a broader group containing the abducens nucleus; anatomically valid parent. | Abducens motor nucleus is a specific efferent nucleus; top1 is the broader set of pontine cranial nerve efferent nuclei.
4_unresolved_incorrect.csv
row 178
Subparafascicular parvocellular thalamic nucleus ventral midline nuclei of thalamus
HOMBA:AA30276 / score 0.89591
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query is specific thalamic nucleus (subparafascicular parvocellular); top1 'ventral midline nuclei' is a different group not typically containing this nucleus. | Query 'Subparafascicular parvocellular thalamic nucleus' is a specific thalamic nucleus; top1 'ventral midline nuclei of thalamus' is a broader parent category. | Subparafascicular nucleus belongs to ventral midline thalamic nuclei; top1 is broader grouping.
4_unresolved_incorrect.csv
row 182
Frontal association area 3 frontal lobe
HOMBA:12113 / score 0.304528
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.97
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
Query 'Frontal association area 3' is a specific region within frontal lobe; top1 'frontal lobe' is its broader anatomical parent. | Frontal lobe is broader than Frontal association area 3. | Query 'Frontal association area 3' is a specific cortical area; top1 'frontal lobe' is the correct parent region.
4_unresolved_incorrect.csv
row 205
Cerebellar Lobule 4 Intermediate cerebellar morphology
HOMBA:AA30563 / score 0.547161
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Cerebellar morphology is a broad term encompassing all cerebellar structures, not specific to lobule 4 intermediate. | Query specifies a particular cerebellar lobule; top1 is the broader 'cerebellar morphology' (valid parent). | Cerebellar Lobule 4 Intermediate is a specific lobule; cerebellar morphology is a broad trait concept, not an anatomical structure or direct parent.
4_unresolved_incorrect.csv
row 206
Cerebellar Lobule 5 Intermediate cerebellar morphology
HOMBA:AA30563 / score 0.547161
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Same as 910; cerebellar morphology is broader than the specific lobule 5 intermediate. | Query specifies a particular cerebellar lobule; top1 is the broader 'cerebellar morphology' (valid parent). | Cerebellar Lobule 5 Intermediate is a specific lobule; cerebellar morphology is a trait concept, anatomically off-target.
4_unresolved_incorrect.csv
row 207
Cerebellar Lobule 6 Intermediate cerebellar morphology
HOMBA:AA30563 / score 0.547161
上位概念として整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 不整合 high / 0.95
Cerebellar morphology is a broad parent of cerebellar lobule 6 intermediate. | Query specifies a particular cerebellar lobule; top1 is the broader 'cerebellar morphology' (valid parent). | Cerebellar Lobule 6 Intermediate is a specific lobule; cerebellar morphology is a broad non-structural term, not a valid container.
4_unresolved_incorrect.csv
row 211
Reuniens-rhomboid-xiphoid Thalamus ventral midline nuclei of thalamus
HOMBA:AA30276 / score 0.570161
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.8
Query lists specific midline nuclei (reuniens, rhomboid, xiphoid); top1 'ventral midline nuclei of thalamus' is the broader parent group encompassing these. | Ventral midline nuclei of thalamus is the broader parent of the reuniens-rhomboid-xiphoid thalamic nuclei listed in the query. | Query lists three specific midline thalamic nuclei (reuniens, rhomboid, xiphoid); top1 'ventral midline nuclei of thalamus' is the overarching nuclear group containing them.
4_unresolved_incorrect.csv
row 215
Corpus callosum and associated subcortical white matter white matter of brain
HOMBA:AA30482 / score 0.598768
上位概念として整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 high / 0.9
top1_name 'white matter of brain' is a broader term that includes both corpus callosum and subcortical white matter; anatomically correct parent. | Top1 is a parent term (white matter of brain) that encompasses both corpus callosum and subcortical white matter, but does not specifically name corpus callosum. | Query refers to corpus callosum plus subcortical white matter; top1 'white matter of brain' is the anatomical parent that contains both structures, making it broader but not incorrect.
1_highconf_correct.csv
row 2
Abducens nucleus abducens nucleus
HOMBA:12418 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Abducens nucleus' matches top1 'abducens nucleus' exactly except for case, referring to the same structure. | Exact match with case variation; same anatomical structure. | Exact match except case.
1_highconf_correct.csv
row 3
Accessory facial nucleus accessory facial nucleus
HOMBA:12419 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Accessory facial nucleus' matches top1 'accessory facial nucleus' exactly, identical structure. | Exact match, including modifier 'accessory'. | Exact match except case.
1_highconf_correct.csv
row 4
Alveus alveus
HOMBA:10570 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Alveus' matches top1 'alveus' exactly, same anatomical structure. | Exact match. | Exact match except case.
1_highconf_correct.csv
row 5
Amygdala amygdaloid complex
HOMBA:10361 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Amygdala' is a common synonym for top1 'amygdaloid complex'; accepted alternative name, consistent. | 'amygdaloid complex' is the standard term for amygdala; accepted synonym. | 'Amygdala' and 'amygdaloid complex' are synonymous in neuroanatomy.
1_highconf_correct.csv
row 6
Angular gyrus angular gyrus
HOMBA:12136 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Angular gyrus' matches top1 'angular gyrus' exactly except for case, same structure. | Exact match. | Exact match except case.
1_highconf_correct.csv
row 7
Ansa lenticularis ansa lenticularis
HOMBA:10571 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case-insensitive) between query and top1_name. | Exact match (case-insensitive). | Exact case-insensitive match.
1_highconf_correct.csv
row 8
Anterior commissure anterior commissure
HOMBA:10559 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case-insensitive) between query and top1_name. | Exact match (case-insensitive). | Exact case-insensitive match.
1_highconf_correct.csv
row 10
Arcuate fasciculus arcuate fasciculus
HOMBA:10569 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case-insensitive) between query and top1_name. | Exact match (case-insensitive). | Exact case-insensitive match.
1_highconf_correct.csv
row 11
Area 52 parainsular cortex (area 52)
HOMBA:10267 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 includes query as parenthetical alias; same anatomical structure. | Synonym match: 'parainsular cortex (area 52)' contains 'Area 52'. | Area 52 is parainsular cortex; top1 explicitly includes 'area 52' in name, exact correspondence.
1_highconf_correct.csv
row 12
Area postrema area postrema
HOMBA:12807 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct match: 'area postrema' is the same structure as 'Area postrema' with case variation. | Exact match with case difference; same anatomical structure. | Direct match ignoring capitalization; same anatomical structure.
1_highconf_correct.csv
row 13
Brachium conjunctivum superior cerebellar peduncle (brachium conjunctivum)
HOMBA:12354 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 includes the query as a synonym in parentheses; 'Brachium conjunctivum' is the same as 'superior cerebellar peduncle'. | Brachium conjunctivum is a synonym for superior cerebellar peduncle; top1_name includes the synonym parenthetically. | Accepted synonym: brachium conjunctivum is the superior cerebellar peduncle.
1_highconf_correct.csv
row 14
CA1 CA1 region of hippocampus
HOMBA:10297 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 'CA1 region of hippocampus' directly expands the abbreviation 'CA1' naming the same structure. | CA1 is the standard abbreviation for CA1 region of hippocampus. | CA1 is the abbreviation for CA1 region of hippocampus, same entity.
1_highconf_correct.csv
row 15
CA2 CA2 region of hippocampus
HOMBA:10298 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 'CA2 region of hippocampus' directly expands the abbreviation 'CA2' naming the same structure. | CA2 is the standard abbreviation for CA2 region of hippocampus. | CA2 is the abbreviation for CA2 region of hippocampus, same entity.
1_highconf_correct.csv
row 16
CA3 CA3 region of hippocampus
HOMBA:10299 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 'CA3 region of hippocampus' directly expands the abbreviation 'CA3' naming the same structure. | CA3 is the standard abbreviation for CA3 region of hippocampus. | CA3 is the abbreviation for CA3 region of hippocampus, same entity.
1_highconf_correct.csv
row 17
Caudate nucleus caudate nucleus (mediodorsal division of the CP)
HOMBA:10334 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 specifies a subdivision (mediodorsal division of CP) of the caudate nucleus, narrowing the query. | Exact anatomical structure name, with a parenthetical qualifier specifying a sub-division, still consistent. | Top1 name 'caudate nucleus (mediodorsal division of the CP)' directly contains the query 'Caudate nucleus'; the parenthetical is a clarifying description, not a different structure.
1_highconf_correct.csv
row 18
Cerebellar cortex (Purkinje cell layer) Purkinje cell layer of cerebellar cortex
HOMBA:AA30428 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 exactly matches the Purkinje cell layer of cerebellar cortex as specified in the query. | Query specifies 'cerebellar cortex (Purkinje cell layer)' and top1 names that exact layer. | Top1 'Purkinje cell layer of cerebellar cortex' matches query 'Cerebellar cortex (Purkinje cell layer)' exactly; accepted synonym.
1_highconf_correct.csv
row 19
Cerebellar hemisphere cerebellar hemisphere
HOMBA:10659 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: cerebellar hemisphere. | Exact match: 'cerebellar hemisphere' same as query. | Top1 'cerebellar hemisphere' is identical to query 'Cerebellar hemisphere' ignoring case.
1_highconf_correct.csv
row 20
Cerebellar vermis cerebellar vermis
HOMBA:10658 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: cerebellar vermis. | Exact match: 'cerebellar vermis' same as query. | Top1 'cerebellar vermis' is identical to query 'Cerebellar vermis' ignoring case.
1_highconf_correct.csv
row 21
Cerebral aqueduct cerebral aqueduct
HOMBA:12369 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: cerebral aqueduct. | Exact match: 'cerebral aqueduct' same as query. | Top1 'cerebral aqueduct' is identical to query 'Cerebral aqueduct' ignoring case.
1_highconf_correct.csv
row 22
Cerebral peduncle cerebral peduncle (crus cerebri)
HOMBA:12330 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name exactly matches query and includes synonym. | Exact match with parenthetical synonym (crus cerebri). | Top1 name exactly matches query; parenthetical synonym for clarification.
1_highconf_correct.csv
row 23
Cingulate gyrus (posterior) posterior cingulate cortex (PCC)
HOMBA:10285 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.6
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Query specifies 'Cingulate gyrus (posterior)' but top1 is 'posterior cingulate cortex'; gyrus vs cortex difference. | Matching posterior subdivision of cingulate gyrus/cortex. 'Cingulate gyrus (posterior)' equivalent to posterior cingulate cortex. | Posterior cingulate cortex is standard equivalent term for posterior cingulate gyrus.
1_highconf_correct.csv
row 24
Corticospinal tract corticospinal tract
HOMBA:12047 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name. | Exact match for corticospinal tract. | Exact match of corticospinal tract.
1_highconf_correct.csv
row 25
Cuneate fasciculus cuneate fasciculus
HOMBA:12731 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name. | Exact match for cuneate fasciculus. | Exact match of cuneate fasciculus.
1_highconf_correct.csv
row 26
Cuneate nucleus cuneate nucleus
HOMBA:12589 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name. | Exact match for cuneate nucleus. | Exact match of cuneate nucleus.
1_highconf_correct.csv
row 27
Cuneate nucleus (external) external (accessory/lateral) cuneate nucleus
HOMBA:12588 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is a synonym/expanded form of query 'Cuneate nucleus (external)'. | Top1 matches the query's external cuneate nucleus, including the modifier 'external' as a synonym. | top1 exactly matches 'external cuneate nucleus' with parenthetical alternate name; same structure.
1_highconf_correct.csv
row 28
Cuneus cuneus (gyrus)
HOMBA:12150 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name matches query exactly with parenthetical clarification. | Top1 is identical to the query, with parenthetical gyrus specification. | 'cuneus (gyrus)' is an accepted synonymous clarification of 'Cuneus'.
1_highconf_correct.csv
row 29
Dentate gyrus dentate gyrus
HOMBA:10295 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is identical to query. | Exact match: 'dentate gyrus'. | Exact match between query and top1 name.
1_highconf_correct.csv
row 30
Dentate nucleus dentate (lateral) nucleus
HOMBA:12396 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is a synonym for query 'Dentate nucleus'. | Top1 is a synonym (lateral nucleus) for dentate nucleus. | 'dentate (lateral) nucleus' is a synonym for 'Dentate nucleus'; same structure.
1_highconf_correct.csv
row 31
Dorsal cochlear nucleus dorsal cochlear nucleus
HOMBA:12438 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name matches query exactly. | Exact match: 'dorsal cochlear nucleus'. | Exact match for 'Dorsal cochlear nucleus'.
1_highconf_correct.csv
row 32
Dorsal motor nucleus of vagus dorsal motor nucleus of the vagus (vagal nerve nucleus)
HOMBA:12550 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is a conventional variant (dorsal motor nucleus of the vagus) with synonym, directly matching the query structure. | Top1 is a direct synonym with added parentheses; same structure. | Identical structure; 'vagus' vs 'the vagus' and parenthetical clarification are minor wording variants.
1_highconf_correct.csv
row 33
Emboliform nucleus lateral interpositus (emboliform) nucleus
HOMBA:12401 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Emboliform nucleus is a direct synonym of lateral interpositus (emboliform) nucleus; exact anatomical match. | Top1 includes the query synonym in parentheses; lateral interpositus (emboliform) nucleus. | Lateral interpositus (emboliform) nucleus is the accepted synonym for emboliform nucleus.
1_highconf_correct.csv
row 34
Entorhinal area entorhinal cortex
HOMBA:10317 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Entorhinal area and entorhinal cortex are synonymous; top1 directly names the same region. | 'Entorhinal area' and 'entorhinal cortex' are standard synonyms. | Entorhinal area and entorhinal cortex refer to the same anatomical region.
1_highconf_correct.csv
row 35
Entorhinal cortex entorhinal cortex
HOMBA:10317 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1 name (entorhinal cortex). | Exact match: query and top1 are identical. | Exact match.
1_highconf_correct.csv
row 36
External lateral parabrachial nucleus lateral parabrachial nucleus, external division
HOMBA:12485 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
External lateral parabrachial nucleus is the same as lateral parabrachial nucleus external division; phrasing variant. | Top1 is same structure with word order variant 'external division' vs 'External lateral'. | External lateral parabrachial nucleus is the external division of the lateral parabrachial nucleus; word-order variant.
1_highconf_correct.csv
row 37
Facial nucleus facial nucleus
HOMBA:12420 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match to 'facial nucleus'. | Exact match with case variant. | Exact match, case-insensitive. Both refer to the same structure.
1_highconf_correct.csv
row 38
Fastigial nucleus fastigial (medial) nucleus
HOMBA:12402 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonym: 'fastigial (medial) nucleus' is the same as fastigial nucleus. | Accepted synonym with descriptor in parentheses. | Accepted synonym: fastigial nucleus is the medial (fastigial) nucleus.
1_highconf_correct.csv
row 39
Fimbria fimbria
HOMBA:10575 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match to 'fimbria'. | Exact match. | Exact match, case-insensitive. Query and top1 name identical.
1_highconf_correct.csv
row 40
Flocculus lobule Xa (flocculus)
HOMBA:AA30424 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonym: 'lobule Xa (flocculus)' refers to the flocculus. | Alternative name for the same structure. | Flocculus is explicitly listed with parentheses, confirming it is the same as lobule Xa (flocculus).
1_highconf_correct.csv
row 41
Fornix fornix
HOMBA:10576 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match to 'fornix'. | Exact match. | Direct match, case-insensitive. Fornix matches exactly.
1_highconf_correct.csv
row 42
Fourth ventricle fourth ventricle
HOMBA:12805 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct exact match (case-insensitive) of query 'Fourth ventricle' with top1 'fourth ventricle'. | Exact match after case normalization. | Exact match, same structure name.
1_highconf_correct.csv
row 43
Fusiform gyrus fusiform (occipitotemporal) gyrus
HOMBA:AA30549 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 'fusiform (occipitotemporal) gyrus' is a standard synonym including query 'Fusiform gyrus'. | Synonym: fusiform gyrus is the same as fusiform (occipitotemporal) gyrus. | Fusiform gyrus is a common synonym of fusiform (occipitotemporal) gyrus. Same entity.
1_highconf_correct.csv
row 44
Globose nucleus medial interpositus (globose) nucleus
HOMBA:12400 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 'medial interpositus (globose) nucleus' lists 'globose' as synonym; query 'Globose nucleus' matches. | Synonym: globose nucleus is also known as medial interpositus nucleus. | Globose nucleus is synonymous with medial interpositus nucleus. HOMBA includes both.
1_highconf_correct.csv
row 45
Gracile fasciculus gracile fasciculus
HOMBA:12739 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case difference only) of query 'Gracile fasciculus' with top1 'gracile fasciculus'. | Exact match after case normalization. | Exact match, same structure.
1_highconf_correct.csv
row 46
Gracile nucleus gracile nucleus
HOMBA:12592 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case difference only) of query 'Gracile nucleus' with top1 'gracile nucleus'. | Exact match after case normalization. | Exact match, same structure.
1_highconf_correct.csv
row 47
Gyrus rectus rectus gyrus
HOMBA:12121 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
rectus gyrus is a conventional word-order variant of Gyrus rectus, same structure | Word order variant of 'Gyrus rectus'. | rectus gyrus is a direct synonym and accepted variant of Gyrus rectus.
1_highconf_correct.csv
row 48
Heschl gyrus transverse temporal gyrus (Heschl's gyrus)
HOMBA:12144 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
transverse temporal gyrus (Heschl's gyrus) includes Heschl gyrus as an accepted synonym | 'Heschl gyrus' is a synonym for transverse temporal gyrus. | transverse temporal gyrus (Heschl's gyrus) is the full standard name; Heschl gyrus refers to the same structure.
1_highconf_correct.csv
row 49
Heschl's gyrus transverse temporal gyrus (Heschl's gyrus)
HOMBA:12144 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
transverse temporal gyrus (Heschl's gyrus) matches Heschl's gyrus exactly | 'Heschl's gyrus' is a synonym for transverse temporal gyrus. | Same as Heschl gyrus; top1 exactly names Heschl's gyrus.
1_highconf_correct.csv
row 50
Hippocampal formation hippocampal formation
HOMBA:12170 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
top1_name is identical to query | Exact match (case-insensitive). | hippocampal formation is an exact string match, referring to the same anatomical entity.
1_highconf_correct.csv
row 51
Hippocampus hippocampus
HOMBA:AA30093 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
top1_name is identical to query | Exact match. | hippocampus is an exact match, same structure.
1_highconf_correct.csv
row 52
Hypoglossal nucleus hypoglossal nucleus
HOMBA:12545 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Exact match ignoring case: 'Hypoglossal nucleus' matches 'hypoglossal nucleus'. | Exact match: query and top1 refer to the same structure, only case difference. | Identical anatomical structure; case-insensitive string match to the hypoglossal nucleus.
1_highconf_correct.csv
row 53
Inferior cerebellar peduncle inferior cerebellar peduncle
HOMBA:12741 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Exact match ignoring case: 'Inferior cerebellar peduncle' matches 'inferior cerebellar peduncle'. | Exact match: query and top1 are identical terms for the same structure. | Exact match; inferior cerebellar peduncle is directly named, no variation.
1_highconf_correct.csv
row 54
Inferior colliculus inferior colliculus
HOMBA:12305 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Exact match ignoring case: 'Inferior colliculus' matches 'inferior colliculus'. | Exact match: query and top1 are identical terms for the same structure. | Direct match; inferior colliculus matches query precisely.
1_highconf_correct.csv
row 55
Inferior frontal gyrus (opercular part) inferior frontal gyrus, opercular part
HOMBA:12119 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Synonym variant: parenthetical 'opercular part' maps to comma-separated form; same anatomical entity. | Exact match: top1 uses comma instead of parentheses but refers to the same specific part. | Same structure; comma vs parentheses is a conventional formatting variant for 'opercular part'.
1_highconf_correct.csv
row 56
Inferior frontal gyrus (triangular part) inferior frontal gyrus, triangular part
HOMBA:12118 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Synonym variant: parenthetical 'triangular part' maps to comma-separated form; same anatomical entity. | Exact match: top1 uses comma instead of parentheses but refers to the same specific part. | Same structure; comma vs parentheses for 'triangular part' is an accepted synonym/format.
1_highconf_correct.csv
row 57
Inferior longitudinal fasciculus inferior longitudinal fasciculus
HOMBA:10580 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name; same anatomical structure. | Query and top1_name are identical except for case, same anatomical structure. | Exact case-insensitive match between query and top1_name.
1_highconf_correct.csv
row 58
Inferior occipital gyrus inferior occipital gyrus
HOMBA:12153 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name; same anatomical structure. | Query and top1_name are identical except for case, same anatomical structure. | Exact case-insensitive match between query and top1_name.
1_highconf_correct.csv
row 59
Inferior olive inferior olive
HOMBA:12600 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name; same anatomical structure. | Query and top1_name are identical except for case, same anatomical structure. | Exact match for 'inferior olive'.
1_highconf_correct.csv
row 60
Inferior parietal lobule inferior parietal lobule (gyrus)
HOMBA:12134 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1_name includes a parenthetical variation but directly names the same structure as query. | Top1_name includes parenthetical synonym, but refers to the same structure (inferior parietal lobule). | Parenthetical '(gyrus)' is a conventional synonym; match is correct.
1_highconf_correct.csv
row 61
Inferior pulvinar inferior division of pulvinar
HOMBA:10413 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1_name is a direct synonym for the query; inferior division of pulvinar equals inferior pulvinar. | Inferior pulvinar is synonymous with inferior division of pulvinar; same anatomical entity. | Inferior pulvinar and inferior division of pulvinar are synonymous.
1_highconf_correct.csv
row 62
Inferior salivatory nucleus inferior salivatory nucleus
HOMBA:12544 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case variation | Exact match; case difference only. | Exact name match (case difference irrelevant).
1_highconf_correct.csv
row 63
Inferior temporal gyrus inferior temporal gyrus
HOMBA:12142 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case variation | Exact match; case difference only. | Exact name match (case difference irrelevant).
1_highconf_correct.csv
row 64
Insula insular lobe
HOMBA:12176 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
'Insular lobe' is a common synonym for 'Insula' | Insula is synonymous with insular lobe. | Insula is a conventional synonym for insular lobe; HOMBA alias confirms.
1_highconf_correct.csv
row 65
Intermediate reticular zone intermediate reticular nucleus
HOMBA:12620 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.9
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
'Intermediate reticular nucleus' is the standard name for 'Intermediate reticular zone' | Intermediate reticular zone and intermediate reticular nucleus refer to the same structure. | Query 'Intermediate reticular zone' is a listed alias for 'intermediate reticular nucleus' in HOMBA; synonymous.
1_highconf_correct.csv
row 66
Internal capsule internal capsule
HOMBA:10581 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case variation | Exact match; case difference only. | Exact name match (case difference irrelevant).
1_highconf_correct.csv
row 67
Lateral geniculate nucleus lateral geniculate nucleus (dorsal lateral geniculate nucleus)
HOMBA:10429 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact synonym match with alternative name. | Exact match with standard name and synonym provided. | Exact match; top1 is lateral geniculate nucleus (with dorsal part noted).
1_highconf_correct.csv
row 68
Lateral parabrachial nucleus lateral parabrachial nucleus
HOMBA:12482 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match. | Exact match. | Exact match.
1_highconf_correct.csv
row 69
Lateral posterior thalamic nucleus lateral posterior nucleus of thalamus
HOMBA:10408 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonym variant: 'nucleus of thalamus' vs 'thalamic nucleus'. | Synonym; same structure. | Same nucleus; difference in phrasing ('thalamic nucleus' vs 'nucleus of thalamus').
1_highconf_correct.csv
row 70
Lateral pulvinar lateral division of pulvinar
HOMBA:10412 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of lateral division of pulvinar. | Synonym; lateral pulvinar equals lateral division of pulvinar. | Lateral pulvinar is synonymous with lateral division of pulvinar.
1_highconf_correct.csv
row 72
Limen insulae limen insula
HOMBA:12179 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Minor spelling variant (insula vs insulae), same anatomical structure. | top1_name 'limen insula' is a conventional spelling variant of query 'Limen insulae', indicating the same anatomical structure. | Exact anatomical structure, minor spelling variant ('insulae' vs 'insula'); matched alias confirms.
1_highconf_correct.csv
row 73
Lingual gyrus lingual gyrus
HOMBA:12151 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: query and top1_name are identical. | Exact match between query 'Lingual gyrus' and top1_name 'lingual gyrus'. | Exact match.
1_highconf_correct.csv
row 74
Locus coeruleus nucleus coeruleus (locus coeruleus)
HOMBA:12499 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonym: nucleus coeruleus is an accepted alternative name for locus coeruleus. | top1_name 'nucleus coeruleus (locus coeruleus)' includes the query 'Locus coeruleus' as a synonym, referring to the same structure. | Accepted synonym; top1 includes both names.
1_highconf_correct.csv
row 75
Mammillary body mammillary body
HOMBA:15546 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: query and top1_name are identical. | Exact match between query 'Mammillary body' and top1_name 'mammillary body'. | Exact match.
1_highconf_correct.csv
row 76
Mammillothalamic tract mammillothalamic tract
HOMBA:10586 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: query and top1_name are identical. | Exact match between query 'Mammillothalamic tract' and top1_name 'mammillothalamic tract'. | Exact match.
1_highconf_correct.csv
row 77
Medial geniculate nucleus medial geniculate nucleus
HOMBA:10434 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact anatomical match with case difference only. | Query 'Medial geniculate nucleus' exactly matches top1 'medial geniculate nucleus' (case variant). | Exact match: 'Medial geniculate nucleus'.
1_highconf_correct.csv
row 78
Medial lemniscus medial lemniscus
HOMBA:12763 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact anatomical match with case difference only. | Query 'Medial lemniscus' exactly matches top1 'medial lemniscus' (case variant). | Exact match: 'Medial lemniscus'.
1_highconf_correct.csv
row 79
Medial longitudinal fasciculus medial longitudinal fasciculus
HOMBA:12764 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact anatomical match with case difference only. | Query 'Medial longitudinal fasciculus' exactly matches top1 'medial longitudinal fasciculus' (case variant). | Exact match: 'Medial longitudinal fasciculus'.
1_highconf_correct.csv
row 80
Medial parabrachial nucleus medial parabrachial nucleus
HOMBA:12487 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact anatomical match with case difference only. | Query 'Medial parabrachial nucleus' exactly matches top1 'medial parabrachial nucleus' (case variant). | Exact match: 'Medial parabrachial nucleus'.
1_highconf_correct.csv
row 81
Medial pulvinar medial division of pulvinar
HOMBA:10411 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 name 'medial division of pulvinar' is a conventional synonym for the query 'Medial pulvinar'. | Query 'Medial pulvinar' directly corresponds to top1 'medial division of pulvinar' (synonym). | Synonym: 'Medial pulvinar' refers to the medial division of pulvinar.
1_highconf_correct.csv
row 82
Medial superior temporal area medial superior temporal area
HOMBA:AA30021 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is identical to query after case normalization; same anatomical structure. | Exact match with case variation; same anatomical structure. | Direct match: query and top1 are identical except for minor capitalization, same anatomical structure.
1_highconf_correct.csv
row 83
Median raphe median raphe nucleus
HOMBA:12235 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Median raphe is a common shorthand for median raphe nucleus; widely accepted synonym. | Query is common abbreviation for median raphe nucleus; same structure. | Query 'Median raphe' is a conventional shorthand for 'median raphe nucleus'. Top1 adds 'nucleus', same entity.
1_highconf_correct.csv
row 84
Mediodorsal thalamic nucleus mediodorsal nucleus of thalamus
HOMBA:10398 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Mediodorsal thalamic nucleus and mediodorsal nucleus of thalamus are synonymous terms. | Synonym with word order variant; both refer to same thalamic nucleus. | Word-order variant: 'Mediodorsal thalamic nucleus' vs 'mediodorsal nucleus of thalamus' refer to the same nucleus.
1_highconf_correct.csv
row 85
Middle cerebellar peduncle middle cerebellar peduncle (brachium pontis)
HOMBA:12768 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with alternative synonym in parentheses; same peduncular structure. | Exact match with parenthetical Latin synonym; same structure. | Top1 includes an accepted synonym in parentheses; 'middle cerebellar peduncle (brachium pontis)' is exactly the same structure.
1_highconf_correct.csv
row 86
Middle frontal gyrus middle frontal gyrus
HOMBA:12116 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of anatomical names; middle frontal gyrus is directly identified. | Exact match; middle frontal gyrus correctly identified. | Exact match: 'Middle frontal gyrus' and top1 are identical.
1_highconf_correct.csv
row 87
Middle temporal area fifth visual area (middle temporal area, MT)
HOMBA:267499039 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name includes 'middle temporal area' as an accepted synonym, directly matching the query. | top1_name directly includes 'middle temporal area' as an alias. | Middle temporal area is a standard synonym for MT/V5; top1 explicitly includes that alias.
1_highconf_correct.csv
row 88
Middle temporal gyrus middle temporal gyrus
HOMBA:12141 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of 'middle temporal gyrus' (case-insensitive). | Exact match with query 'Middle temporal gyrus'. | Exact match, same gyral structure.
1_highconf_correct.csv
row 89
Motor trigeminal nucleus motor nucleus of trigeminal nerve (motor trigeminal nucleus, Mo5)
HOMBA:12429 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name contains 'motor trigeminal nucleus' in parentheses as a synonym. | top1_name includes 'motor trigeminal nucleus' as an alias. | Motor trigeminal nucleus is a well-established alias for the motor nucleus of V.
1_highconf_correct.csv
row 90
Nucleus accumbens nucleus accumbens
HOMBA:10339 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of 'nucleus accumbens' (case-insensitive). | Exact match with query 'Nucleus accumbens'. | Identical entity, nucleus accumbens.
1_highconf_correct.csv
row 91
Nucleus ambiguus ambiguus nucleus
HOMBA:12540 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
'ambiguus nucleus' is a conventional spelling and word-order variant of 'Nucleus ambiguus'. | Synonym with word-order variant 'ambiguus nucleus' for 'Nucleus ambiguus'. | Nucleus ambiguus and ambiguus nucleus are accepted word-order variants for the same structure.
1_highconf_correct.csv
row 92
Nucleus of the solitary tract solitary nucleus
HOMBA:12557 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 'solitary nucleus' is a standard synonym for 'Nucleus of the solitary tract'. | top1 'solitary nucleus' is a direct synonym for 'Nucleus of the solitary tract'. | Accepted synonym: Nucleus of the solitary tract is the solitary nucleus.
1_highconf_correct.csv
row 93
Obex obex
HOMBA:12812 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match, identical anatomical structure. | Exact match, only case difference. | Exact match (case-insensitive).
1_highconf_correct.csv
row 94
Occipital pole occipital pole
HOMBA:12149 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match, same anatomical structure. | Exact match, only case difference. | Exact match (case-insensitive).
1_highconf_correct.csv
row 95
Oculomotor nucleus oculomotor nucleus
HOMBA:12198 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match, same anatomical structure. | Exact match, only case difference. | Exact match (case-insensitive).
1_highconf_correct.csv
row 96
Optic chiasm optic chiasm
HOMBA:10644 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match, same anatomical structure. | Exact match, only case difference. | Exact match (case-insensitive).
1_highconf_correct.csv
row 97
Optic tract optic tract
HOMBA:10589 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: 'optic tract' is same as query modulo case. | Exact match with case difference only. | Direct match, identical structure name.
1_highconf_correct.csv
row 98
Paracingulate gyrus paracingulate gyrus
HOMBA:146034872 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: 'paracingulate gyrus' is identical to query. | Exact match with case difference only. | Direct match, identical structure name.
1_highconf_correct.csv
row 99
Parahippocampal gyrus parahippocampal gyrus
HOMBA:12162 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: 'parahippocampal gyrus' is identical to query. | Exact match with case difference only. | Direct match, identical structure name.
1_highconf_correct.csv
row 100
Parahippocampal gyrus (anterior) anterior parahippocampal gyrus
HOMBA:12163 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Same structure; modifier reordered from (anterior) to anterior as prefix. | Query specifies anterior; top1 is the exact subregion name. | Query specifies anterior parahippocampal gyrus; top1 matches exactly.
1_highconf_correct.csv
row 101
Parahippocampal gyrus (posterior) posterior parahippocampal gyrus
HOMBA:12164 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Same structure; modifier reordered from (posterior) to posterior as prefix. | Query specifies posterior; top1 is the exact subregion name. | Query specifies posterior parahippocampal gyrus; top1 matches exactly.
1_highconf_correct.csv
row 102
Periamygdaloid cortex periamygdaloid cortex
HOMBA:AA30225 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match except capitalization; same anatomical structure. | Exact match (case-insensitive) of 'Periamygdaloid cortex' to 'periamygdaloid cortex'. | Exact match between query and top1_name (case-insensitive).
1_highconf_correct.csv
row 103
Pineal gland pineal body
HOMBA:10460 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
'pineal body' is a standard synonym for 'pineal gland'; identical structure. | 'Pineal gland' and 'pineal body' are accepted synonyms for the same anatomical structure. | Pineal gland and pineal body are established synonyms for the same anatomical structure.
1_highconf_correct.csv
row 104
Planum polare planum polare
HOMBA:12147 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match except capitalization; same anatomical structure. | Exact match (case-insensitive) of 'Planum polare' to 'planum polare'. | Exact match, planum polare is the same structure.
1_highconf_correct.csv
row 105
Planum temporale planum temporale
HOMBA:12145 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match except capitalization; same anatomical structure. | Exact match (case-insensitive) of 'Planum temporale' to 'planum temporale'. | Exact match, planum temporale is the same structure.
1_highconf_correct.csv
row 106
Pontobulbar nucleus pontobulbar nucleus
HOMBA:12614 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match except capitalization; same anatomical structure. | Exact match (case-insensitive) of 'Pontobulbar nucleus' to 'pontobulbar nucleus'. | Exact match, pontobulbar nucleus is the same structure.
1_highconf_correct.csv
row 107
Postcentral gyrus postcentral gyrus
HOMBA:12132 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of anatomical structure name. | Exact match (case-insensitive). | Exact match (case-insensitive).
1_highconf_correct.csv
row 108
Posterior cingulate gyrus posterior cingulate cortex (PCC)
HOMBA:10285 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query specifies 'gyrus' but top1 is 'cortex', which is a broader region containing the gyrus. | Posterior cingulate cortex is a synonym for posterior cingulate gyrus. | Posterior cingulate gyrus and posterior cingulate cortex are accepted synonyms.
1_highconf_correct.csv
row 109
Posterior commissure posterior commissure
HOMBA:10567 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of anatomical structure name. | Exact match (case-insensitive). | Exact match.
1_highconf_correct.csv
row 110
Posterior thalamic nucleus posterior nucleus of thalamus
HOMBA:10440 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is a conventional synonym for the query structure. | Synonym: posterior nucleus of thalamus = posterior thalamic nucleus. | Posterior thalamic nucleus is synonymous with posterior nucleus of thalamus.
1_highconf_correct.csv
row 111
Precentral gyrus precentral gyrus
HOMBA:12114 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of anatomical structure name. | Exact match (case-insensitive). | Exact match (case-insensitive).
1_highconf_correct.csv
row 112
Precuneus precuneaus (gyrus)
HOMBA:12137 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is a spelling variant and accepted synonym for Precuneus. | The top1 name 'precuneaus (gyrus)' is a spelling variant of the query 'Precuneus', referring to the same anatomical structure. | Top1 is a spelling variant ('precuneaus' for precuneus), same anatomical structure.
1_highconf_correct.csv
row 113
Prepositus nucleus prepositus hypoglossal nucleus
HOMBA:12615 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is a synonym (nucleus prepositus hypoglossi) for Prepositus nucleus. | The top1 name 'prepositus hypoglossal nucleus' is the full name for the query 'Prepositus nucleus', which is a standard abbreviation. | Top1 is the full name (prepositus hypoglossal nucleus) matching the abbreviated query.
1_highconf_correct.csv
row 114
Presubiculum presubiculum (presubicular cortex)
HOMBA:10315 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name directly matches the query Presubiculum. | Exact match of 'Presubiculum' with the synonym 'presubiculum (presubicular cortex)' provided. | Top1 exactly names the query 'presubiculum', with a parenthetical synonym.
1_highconf_correct.csv
row 115
Primary auditory cortex primary auditory cortex (first auditory cortex, auditory core region)
HOMBA:10236 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name directly matches the query Primary auditory cortex. | Exact match with additional canonical synonyms listed. | Top1 directly names the primary auditory cortex, with accepted alternative names.
1_highconf_correct.csv
row 116
Primary motor cortex primary motor cortex (first motor cortex, area 4, area FA)
HOMBA:10163 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name directly matches the query Primary motor cortex. | Exact match with additional canonical synonyms listed. | Top1 directly names the primary motor cortex, listing classic cytoarchitectonic synonyms.
1_highconf_correct.csv
row 117
Primary visual cortex primary visual cortex (first visual cortex, striate cortex, area 17, area OC)
HOMBA:10269 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is a direct synonym and exact match for query 'Primary visual cortex'. | Query and top1 are identical anatomical structure; top1 lists synonyms. | Exact match with aliases in parentheses; top1 directly names primary visual cortex.
1_highconf_correct.csv
row 118
Principal sensory trigeminal nucleus principal sensory nucleus of trigeminal nerve
HOMBA:12444 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is a standard synonym of the trigeminal nucleus query. | Top1 is a conventional synonym of the query with word order variation. | Synonymous: 'Principal sensory trigeminal nucleus' and 'principal sensory nucleus of trigeminal nerve' are the same structure.
1_highconf_correct.csv
row 119
Pulvinar pulvinar of thalamus
HOMBA:10409 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
'pulvinar of thalamus' is the same structure as 'Pulvinar'. | 'Pulvinar' is a common shorthand for the pulvinar of thalamus; top1 directly names it. | 'Pulvinar' and 'pulvinar of thalamus' refer to the same thalamic nucleus; qualifier does not change identity.
1_highconf_correct.csv
row 120
Pulvinar nucleus pulvinar of thalamus
HOMBA:10409 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
'Pulvinar nucleus' is synonymous with 'pulvinar of thalamus'. | Query 'Pulvinar nucleus' matches the same entity as 'pulvinar of thalamus'. | 'Pulvinar nucleus' is just the common alternate name for pulvinar, identical to top1.
1_highconf_correct.csv
row 121
Putamen putamen (lateroventral division of the CP)
HOMBA:10338 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name directly names the putamen, matching the query. | Top1 is the putamen with an alternative name; directly matches query. | Exact match; top1 is 'putamen' with a parenthetical subdivision note, still the same structure.
1_highconf_correct.csv
row 122
Pyramidal decussation pyramidal decussation
HOMBA:12772 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match after case normalization; 'pyramidal decussation' directly names the same structure. | Exact match with case difference: query 'Pyramidal decussation' and top1 'pyramidal decussation'. | Exact case-insensitive match with the query 'Pyramidal decussation'.
1_highconf_correct.csv
row 123
Raphe magnus raphe magnus nucleus
HOMBA:12642 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
'raphe magnus nucleus' is the full name for the commonly used 'raphe magnus'; synonymous. | Accepted synonym: 'Raphe magnus' is a common shorthand for 'raphe magnus nucleus'. | Query 'Raphe magnus' is the accepted short form for 'raphe magnus nucleus'; top1 adds 'nucleus', thus refers to the same structure.
1_highconf_correct.csv
row 124
Raphe obscurus raphe obscurus nucleus
HOMBA:12643 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
'raphe obscurus nucleus' is the full name for 'raphe obscurus'; same anatomical entity. | Accepted synonym: 'Raphe obscurus' is a common shorthand for 'raphe obscurus nucleus'. | Query 'Raphe obscurus' is standard abbreviation for 'raphe obscurus nucleus'; top1 expansion is consistent.
1_highconf_correct.csv
row 125
Red nucleus red nucleus
HOMBA:12247 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match; 'red nucleus' is directly consistent with the query. | Exact match with case difference: query 'Red nucleus' and top1 'red nucleus'. | Identical query and top1 'Red nucleus' / 'red nucleus'.
1_highconf_correct.csv
row 126
Retroinsular cortex retroinsular cortex
HOMBA:13323 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match after case normalization; 'retroinsular cortex' directly names the same structure. | Exact match with case difference: query 'Retroinsular cortex' and top1 'retroinsular cortex'. | Exact match for 'Retroinsular cortex'.
1_highconf_correct.csv
row 127
Retrosplenial cortex retrosplenial cortex
HOMBA:10324 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct match: query and top1 are the same structure. | Exact match with case difference only. | Exact case-insensitive match for Retrosplenial cortex.
1_highconf_correct.csv
row 128
Roots of the abducens nerve root of abducens nerve
HOMBA:12861 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Minor plural/singular difference; same anatomical entity. | Singular vs plural variant of same anatomical term. | Plural 'Roots' vs singular 'root' is a grammatical variant, same anatomical entity.
1_highconf_correct.csv
row 129
Roots of the facial nerve root of facial nerve
HOMBA:12862 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Minor plural/singular difference; same anatomical entity. | Singular vs plural variant of same anatomical term. | Plural/singular difference is negligible; same nerve root structure.
1_highconf_correct.csv
row 130
Roots of the trigeminal nerve root of trigeminal nerve
HOMBA:12865 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Minor plural/singular difference; same anatomical entity. | Singular vs plural variant of same anatomical term. | Plural 'Roots' matches singular 'root' for the same trigeminal nerve root.
1_highconf_correct.csv
row 131
Septal area septal region (septal nuclear complex)
HOMBA:10350 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonymous: 'septal area' and 'septal region' refer to the same structure. | Synonym: septal region is equivalent to septal area. | Septal area and septal region (septal nuclear complex) are accepted synonyms.
1_highconf_correct.csv
row 132
Solitary tract solitary tract
HOMBA:12783 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: query and top1 are identical. | Exact match (case-insensitive): query 'Solitary tract' and top1 'solitary tract' refer to the same anatomical structure. | top1 is identical to query (case-insensitive).
1_highconf_correct.csv
row 133
Spinal trigeminal nucleus spinal trigeminal nucleus
HOMBA:12572 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: query and top1 are identical. | Exact match (case-insensitive): query 'Spinal trigeminal nucleus' and top1 'spinal trigeminal nucleus' are identical. | Exact match for 'Spinal trigeminal nucleus'.
1_highconf_correct.csv
row 134
Spinal trigeminal nucleus (caudalis) spinal trigeminal nucleus, caudal division
HOMBA:12573 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1 is the standard anatomical name for the caudalis subdivision of spinal trigeminal nucleus, matching query. | Synonym: query specifies 'caudalis' subdivision; top1 'caudal division' is the same part with conventional naming difference. | Query specifies caudalis; top1 returns caudal division, consistent.
1_highconf_correct.csv
row 135
Spinal trigeminal nucleus (interpolaris) spinal trigeminal nucleus, interpolar division
HOMBA:12578 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1 is the standard anatomical name for the interpolaris subdivision of spinal trigeminal nucleus, matching query. | Synonym: query specifies 'interpolaris' subdivision; top1 'interpolar division' is the same part with conventional naming difference. | Query specifies interpolaris; top1 returns interpolar division, consistent.
1_highconf_correct.csv
row 136
Spinal trigeminal tract spinal trigeminal tract
HOMBA:12792 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: query and top1 are identical. | Exact match (case-insensitive): query 'Spinal trigeminal tract' and top1 'spinal trigeminal tract' refer to the same structure. | Exact match for 'Spinal trigeminal tract'.
1_highconf_correct.csv
row 137
Spinothalamic tract spinothalamic tract
HOMBA:12789 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of query and top1 name with case difference only. | Exact match after case normalization; same anatomical structure. | Exact case-insensitive match, same anatomical tract.
1_highconf_correct.csv
row 138
Subiculum subiculum proper (strictly defined subiculum)
HOMBA:10302 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is the same named entity (subiculum proper) as query, with clarifying description. | Query 'Subiculum' refers to general structure; top1 'subiculum proper' is a specific subdivision, thus narrower. | Query 'Subiculum' is matched to 'subiculum proper', an accepted synonym/strict definition of the subiculum.
1_highconf_correct.csv
row 139
Substantia nigra substantia nigra
HOMBA:12251 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of query and top1 name with case difference only. | Exact match; query and top1 refer to the same structure. | Exact case-insensitive match, same anatomical structure.
1_highconf_correct.csv
row 140
Subthalamic nucleus subthalamic nucleus
HOMBA:10466 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of query and top1 name with case difference only. | Exact match; identical anatomical entity. | Exact case-insensitive match, same anatomical structure.
1_highconf_correct.csv
row 141
Superior cerebellar peduncle superior cerebellar peduncle (brachium conjunctivum)
HOMBA:12354 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 includes query term plus synonym in parentheses; same structure. | Synonym provided in parentheses; same structure as query. | Accepted synonym: superior cerebellar peduncle = brachium conjunctivum.
1_highconf_correct.csv
row 142
Superior cerebellar peduncle (decussation) decussation of superior cerebellar peduncle
HOMBA:12337 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query specifies decussation of superior cerebellar peduncle; top1 is exact synonym with different word order. | Top1 is a rephrasing of the query (decussation of superior cerebellar peduncle vs Superior cerebellar peduncle (decussation)) – same structure. | Query with modifier '(decussation)' directly matches top1 'decussation of superior cerebellar peduncle'; same structure.
1_highconf_correct.csv
row 143
Superior colliculus superior colliculus
HOMBA:12292 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of superior colliculus. | Exact match: query 'Superior colliculus' and top1 'superior colliculus'. | Exact match, ignoring capitalization.
1_highconf_correct.csv
row 144
Superior occipital gyrus superior occipital gyrus
HOMBA:12154 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of superior occipital gyrus. | Exact match: query 'Superior occipital gyrus' and top1 'superior occipital gyrus'. | Exact match, ignoring capitalization.
1_highconf_correct.csv
row 145
Superior salivatory nucleus superior salivatory nucleus
HOMBA:12435 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of superior salivatory nucleus. | Exact match: query 'Superior salivatory nucleus' and top1 'superior salivatory nucleus'. | Exact match; 'salivatory' is accepted variant of salivary, consistent with ontology.
1_highconf_correct.csv
row 146
Superior temporal gyrus superior temporal gyrus
HOMBA:12140 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of superior temporal gyrus. | Exact match: query 'Superior temporal gyrus' and top1 'superior temporal gyrus'. | Exact match, ignoring capitalization.
1_highconf_correct.csv
row 147
Supplementary motor area medial division of area 6 (supplementary motor area)
HOMBA:AA30012 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is a synonym/description of supplementary motor area. | Top1 directly names the supplementary motor area via its anatomical synonym (medial area 6). | top1 explicitly names the supplementary motor area, matching the query exactly.
1_highconf_correct.csv
row 148
Supramarginal gyrus supramarginal gyrus
HOMBA:12135 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case difference. | Exact match: query and top1_name are identical. | top1 is the exact same gyrus, case-insensitive match.
1_highconf_correct.csv
row 149
Temporal pole temporal pole (temporopolar cortex)
HOMBA:12146 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 includes temporal pole with synonym. | Exact match with synonym in parentheses; same structure. | top1 includes 'temporal pole' directly, identical to query.
1_highconf_correct.csv
row 150
Thalamus thalamus
HOMBA:10390 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match. | Exact match: query and top1_name are identical. | top1 and query are identical, both 'thalamus'.
1_highconf_correct.csv
row 151
Trigeminal nucleus (motor) motor nucleus of trigeminal nerve (motor trigeminal nucleus, Mo5)
HOMBA:12429 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is the motor nucleus of trigeminal nerve as specified. | Top1 is the motor nucleus of trigeminal nerve, matching the motor specification in query. | query specifies 'Trigeminal nucleus (motor)', top1 is the motor nucleus of trigeminal nerve, exact correspondence.
1_highconf_correct.csv
row 152
Trigeminal nucleus (principal sensory) principal sensory nucleus of trigeminal nerve
HOMBA:12444 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
top1_name is a direct synonym for the query's principal sensory trigeminal nucleus. | Query 'Trigeminal nucleus (principal sensory)' matches top1 'principal sensory nucleus of trigeminal nerve' as a conventional synonym with reordered words. | Exact synonym: principal sensory nucleus of trigeminal nerve is the same structure as the principal sensory trigeminal nucleus.
1_highconf_correct.csv
row 153
Trochlear nucleus trochlear nucleus
HOMBA:12206 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Exact match (case difference only) between query and top1_name. | Exact match between 'Trochlear nucleus' and 'trochlear nucleus'. | Exact match, case-insensitive.
1_highconf_correct.csv
row 154
Uncinate fasciculus uncinate fasciculus
HOMBA:10594 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Exact match (case difference only) between query and top1_name. | Exact match between 'Uncinate fasciculus' and 'uncinate fasciculus'. | Exact match.
1_highconf_correct.csv
row 155
Ventral anterior thalamic nucleus ventral anterior nucleus of thalamus
HOMBA:10417 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
top1_name is a standard synonym with alternate word order for the same thalamic nucleus. | Query 'Ventral anterior thalamic nucleus' is synonymous with top1 'ventral anterior nucleus of thalamus'. | Synonym: ventral anterior nucleus of thalamus is the same as ventral anterior thalamic nucleus.
1_highconf_correct.csv
row 156
Ventral cochlear nucleus ventral cochlear nucleus
HOMBA:12439 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Exact match (case difference only) between query and top1_name. | Exact match between 'Ventral cochlear nucleus' and 'ventral cochlear nucleus'. | Exact match.
1_highconf_correct.csv
row 157
Ventral lateral thalamic nucleus ventral lateral nucleus of thalamus
HOMBA:10420 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Direct synonym: ventral lateral nucleus of thalamus | Query 'Ventral lateral thalamic nucleus' matches top1 'ventral lateral nucleus of thalamus' as a standard synonym with word order variation. | Query and top1 name refer to the same thalamic nucleus with a conventional word-order/synonym variation.
1_highconf_correct.csv
row 158
Ventral medial thalamic nucleus ventral medial nucleus of thalamus
HOMBA:10427 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Direct synonym: ventral medial nucleus of thalamus | Query 'Ventral medial thalamic nucleus' matches top1 'ventral medial nucleus of thalamus' as a standard synonym with word order variation. | Query and top1 name refer to the same thalamic nucleus; solely a synonym phrasing difference.
1_highconf_correct.csv
row 159
Ventral posterior thalamic nucleus ventral posterior nuclear complex of thalamus
HOMBA:10423 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Nuclear complex is broader parent of the queried nucleus | Query 'Ventral posterior thalamic nucleus' matches top1 'ventral posterior nuclear complex of thalamus' as an accepted synonym. | Query 'nucleus' and top1 'nuclear complex' are standard interchangeable designations for the ventral posterior group.
1_highconf_correct.csv
row 160
Ventral tegmental area ventral tegmental area
HOMBA:12261 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: ventral tegmental area | Query and top1 are identical: 'ventral tegmental area'. | Exact string match between query and top1 name.
1_highconf_correct.csv
row 161
Zona incerta zona incerta
HOMBA:10463 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: zona incerta | Query and top1 are identical: 'zona incerta'. | Exact string match between query and top1 name.
1_highconf_correct.csv
row 162
Frontal orbital cortex (lateral) lateral orbital frontal cortex (OFCl, area 12/47)
HOMBA:10205 / score 0.993571
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
The top1 candidate is a synonym variant of the query, matching the same structure with conventional word order difference. | Query 'Frontal orbital cortex (lateral)' directly matches 'lateral orbital frontal cortex' (OFCl) as the lateral subdivision. | Word-order variant of the same structure; lateral orbital frontal cortex = lateral frontal orbital cortex.
1_highconf_correct.csv
row 163
Frontal orbital cortex (medial) medial orbital frontal cortex (area 14)
HOMBA:10195 / score 0.989407
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
The top1 candidate is a synonym variant of the query, matching the same medial orbital frontal cortex. | Query 'Frontal orbital cortex (medial)' directly matches 'medial orbital frontal cortex' (area 14) as the medial subdivision. | Word-order variant; medial orbital frontal cortex is synonymous with medial frontal orbital cortex.
1_highconf_correct.csv
row 164
Trigeminal tract (mesencephalic) mesencephalic trigeminal tract
HOMBA:12767 / score 0.982135
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
The top1 candidate directly matches the query with accepted word rearrangement, same structure. | Query 'Trigeminal tract (mesencephalic)' matches 'mesencephalic trigeminal tract' exactly (word order variant). | Exact word-order variant; mesencephalic trigeminal tract = trigeminal tract (mesencephalic).
1_highconf_correct.csv
row 165
External globus pallidus external division of globus pallidus
HOMBA:10343 / score 0.978625
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
The top1 candidate is a synonymous name (external division of globus pallidus) for the external globus pallidus. | Query 'External globus pallidus' is synonymous with 'external division of globus pallidus'. | External division of globus pallidus is a conventional synonym for external globus pallidus (GPe).
1_highconf_correct.csv
row 167
Internal capsule (posterior limb) caudal limb of internal capsule
HOMBA:10584 / score 0.95787
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.96
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
caudal limb of internal capsule is a synonym for posterior limb of internal capsule, matching the query structure. | Top-1 'caudal limb of internal capsule' is a conventional synonym for 'posterior limb of internal capsule'. Both refer to the same structure. | caudal limb of internal capsule is a synonym for posterior limb of internal capsule; query specified posterior limb.
1_highconf_correct.csv
row 168
Cerebellar cortex (molecular layer) molecular layer of cerebellar cortex
HOMBA:AA30427 / score 0.956353
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.96
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
molecular layer of cerebellar cortex directly names the same anatomical structure as the query. | Top-1 'molecular layer of cerebellar cortex' exactly matches the query 'Cerebellar cortex (molecular layer)'. | molecular layer of cerebellar cortex is an exact word-order variant of cerebellar cortex molecular layer; same anatomical layer.
1_highconf_correct.csv
row 169
Dorsal raphe dorsal raphe nucleus
HOMBA:12223 / score 0.947851
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
dorsal raphe nucleus is the full name for the query 'dorsal raphe', which is a commonly accepted shorthand. | Top-1 'dorsal raphe nucleus' is the standard anatomical name for the structure commonly referred to as 'dorsal raphe'. | dorsal raphe nucleus is the full name; query 'Dorsal raphe' is an accepted shorthand for this nucleus.
1_highconf_correct.csv
row 170
Periaqueductal gray periaqueductal gray region
HOMBA:AA30359 / score 0.94
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.94
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
periaqueductal gray region is an accepted synonym for periaqueductal gray. | Top-1 'periaqueductal gray region' is a synonym for 'periaqueductal gray', referring to the same brain region. | periaqueductal gray region is a longer variant name for periaqueductal gray; same brainstem region.
1_highconf_correct.csv
row 171
Accumbens nucleus accumbens
HOMBA:10339 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
nucleus accumbens is the full form of the common abbreviation 'accumbens'. | Top-1 'nucleus accumbens' is the full name of the structure abbreviated as 'Accumbens'. | nucleus accumbens is the full anatomical term; 'Accumbens' is a common shorthand for the same structure.
1_highconf_correct.csv
row 172
Amygdalohippocampal area amygdalohippocampal area
HOMBA:10377 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case-insensitive) between query and top1_name. | Exact match between query and top1_name (case insensitive). | Exact match (case difference). Query and top1 name refer to the same amygdalohippocampal area.
1_highconf_correct.csv
row 173
Amygdalopiriform transition area amygdalocortical transition area (amygdalopiriform transition area)
HOMBA:10382 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1_name includes query as a synonym in parentheses; same structure. | top1_name includes query as an accepted alias in parentheses, consistent. | Top1 name includes the exact query as an alias in parentheses. Recognized synonym in HOMBA:10382.
1_highconf_correct.csv
row 174
Amygdalostriatal transition area amygdalostriatal transition area
HOMBA:10381 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case-insensitive) between query and top1_name. | Exact match between query and top1_name (case insensitive). | Exact match (case difference). Same amygdalostriatal transition area.
1_highconf_correct.csv
row 175
Angular thalamic nucleus angular nucleus of thalamus
HOMBA:AA30318 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Accepted synonym: 'angular nucleus of thalamus' equals 'Angular thalamic nucleus'. | Synonym: 'angular thalamic nucleus' and 'angular nucleus of thalamus' refer to the same structure. | Word-order variant: 'Angular thalamic nucleus' vs 'angular nucleus of thalamus'. Same entity.
1_highconf_correct.csv
row 176
Ansa Lenticularis ansa lenticularis
HOMBA:10571 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case-insensitive) between query and top1_name. | Exact match ignoring case; top1_name is lowercase version of query. | Exact match with only capitalization difference ('Ansa Lenticularis' vs 'ansa lenticularis').
1_highconf_correct.csv
row 177
Anterior amygdaloid area anterior amygdaloid area
HOMBA:10362 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case normalization: query 'Anterior amygdaloid area' equals top1 'anterior amygdaloid area'. | top1_name is an exact case-insensitive match to the query. | Exact match between query and top1_name, ignoring case.
1_highconf_correct.csv
row 178
Anterior commissure anterior commissure
HOMBA:10559 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case normalization: query 'Anterior commissure' equals top1 'anterior commissure'. | top1_name is an exact case-insensitive match to the query. | Exact match between query and top1_name, ignoring case.
1_highconf_correct.csv
row 179
Anterior Hypothalamic Area anterior hypothalamic area
HOMBA:266441551 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case normalization: query 'Anterior Hypothalamic Area' equals top1 'anterior hypothalamic area'. | top1_name is an exact case-insensitive match to the query. | Exact match between query and top1_name, ignoring case.
1_highconf_correct.csv
row 180
Anterior hypothalamic nucleus anterior hypothalamic nucleus
HOMBA:10475 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case normalization: query 'Anterior hypothalamic nucleus' equals top1 'anterior hypothalamic nucleus'. | top1_name is an exact case-insensitive match to the query. | Exact match between query and top1_name, ignoring case.
1_highconf_correct.csv
row 181
Anterior Tegmental Nucleus anterior tegmental nucleus
HOMBA:AA30442 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case normalization: query 'Anterior Tegmental Nucleus' equals top1 'anterior tegmental nucleus'. | top1_name is an exact case-insensitive match to the query. | Exact match between query and top1_name, ignoring case.
1_highconf_correct.csv
row 182
Anterior thalamic nucleus anterior nuclear complex of thalamus
HOMBA:10392 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 上位概念として整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.97
Anterior thalamic nucleus and anterior nuclear complex of thalamus are synonymous; top1 is the accepted anatomical term. | Query is 'Anterior thalamic nucleus' (singular), top1 is 'anterior nuclear complex of thalamus' which is a broader grouping that includes the anterior nuclei. | Anterior thalamic nucleus commonly denotes the anterior nuclear complex; top1 uses equivalent anatomical nomenclature.
1_highconf_correct.csv
row 183
Anterodorsal thalamic nucleus anterodorsal nucleus of thalamus
HOMBA:10393 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Anterodorsal thalamic nucleus directly matches anterodorsal nucleus of thalamus. | Exact match: 'Anterodorsal thalamic nucleus' and 'anterodorsal nucleus of thalamus' are synonyms. | Exact match; only morphosyntactic variation ('thalamic nucleus' vs 'nucleus of thalamus').
1_highconf_correct.csv
row 184
Anteromedial thalamic nucleus anteromedial nucleus of thalamus
HOMBA:10394 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Anteromedial thalamic nucleus directly matches anteromedial nucleus of thalamus. | Exact match: 'Anteromedial thalamic nucleus' and 'anteromedial nucleus of thalamus' are synonyms. | Exact match; only morphosyntactic variation ('thalamic nucleus' vs 'nucleus of thalamus').
1_highconf_correct.csv
row 185
Ascending fibers of the facial nerve ascending fibers of the facial nerve in pons
HOMBA:12729 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.96
Ascending fibers of the facial nerve in pons is the same structure, with a locational qualifier added. | Top1 adds 'in pons' but same structure; consistent with query 'Ascending fibers of the facial nerve'. | Top1 adds location 'in pons' but refers to same ascending facial nerve fibers; accepted additional precision.
1_highconf_correct.csv
row 186
Basal nucleus (of Meynert) basal nucleus of Meynert
HOMBA:10353 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Basal nucleus (of Meynert) and basal nucleus of Meynert are identical; parentheses are just formatting. | Exact match: 'Basal nucleus (of Meynert)' and 'basal nucleus of Meynert' are synonymous. | Identical eponym and structure; parentheses in query irrelevant.
1_highconf_correct.csv
row 187
CA1 (hippocampus) CA1 region of hippocampus
HOMBA:10297 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'CA1 (hippocampus)' directly matches the standard term 'CA1 region of hippocampus'. | CA1 (hippocampus) directly corresponds to CA1 region of hippocampus; standard synonym. | CA1 (hippocampus) and CA1 region of hippocampus are equivalent.
1_highconf_correct.csv
row 188
Caudate Head head of caudate nucleus
HOMBA:10335 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Caudate Head' is a common synonym for 'head of caudate nucleus'. | Caudate Head is exactly the head of caudate nucleus. | Caudate Head and head of caudate nucleus are accepted variants for the same structure.
1_highconf_correct.csv
row 189
Caudate nucleus caudate nucleus (mediodorsal division of the CP)
HOMBA:10334 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 name includes 'caudate nucleus', matching the query directly; parenthetical adds subregion context but does not alter identity. | Query 'Caudate nucleus' is the whole structure, but top1 is a specific division (mediodorsal division of CP). | Caudate nucleus and caudate nucleus (with anatomical division context) align exactly.
1_highconf_correct.csv
row 190
Caudate Tail tail of caudate nucleus (caudolateral division of the CP)
HOMBA:10337 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Caudate Tail' matches 'tail of caudate nucleus'. | Caudate Tail matches tail of caudate nucleus; direct synonym. | Caudate Tail and tail of caudate nucleus are equivalent.
1_highconf_correct.csv
row 191
Central lateral thalamic nucleus central lateral nucleus of thalamus
HOMBA:10444 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Central lateral thalamic nucleus' is equivalent to 'central lateral nucleus of thalamus'. | Central lateral thalamic nucleus and central lateral nucleus of thalamus are the same structure. | Central lateral thalamic nucleus and central lateral nucleus of thalamus are synonymous.
1_highconf_correct.csv
row 192
Central medial thalamic nucleus central medial nucleus of thalamus
HOMBA:10445 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
The top1 candidate is a direct synonym of the query, referring to the same thalamic nucleus. | Synonym: 'central medial nucleus of thalamus' is the same as 'Central medial thalamic nucleus' with word order normalized. | Synonym; different word order (central medial thalamic nucleus = central medial nucleus of thalamus).
1_highconf_correct.csv
row 193
Cerebral peduncle cerebral peduncle (crus cerebri)
HOMBA:12330 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.6
The top1 candidate is exactly the same anatomical structure with an appended synonym in parentheses. | Exact match with accepted synonym in parentheses. | Top1 name specifies crus cerebri in parentheses, which is narrower than the broader 'cerebral peduncle' that includes tegmentum.
1_highconf_correct.csv
row 194
Claustrum claustrum
HOMBA:10346 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
The top1 candidate is identical to the query. | Exact match (case-insensitive). | Exact match, case-insensitive.
1_highconf_correct.csv
row 195
Cochlear Nucleus cochlear nuclei
HOMBA:12437 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
The top1 candidate is a plural form of the query, representing the same cochlear nucleus structure. | Singular/plural variant: 'cochlear nuclei' is the standard term for 'Cochlear Nucleus'. | Plural form variant; singular 'nucleus' commonly refers to the same cochlear nuclear complex.
1_highconf_correct.csv
row 196
Corticospinal Tract corticospinal tract
HOMBA:12047 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
The top1 candidate is identical to the query. | Exact match (case difference only). | Case-insensitive exact match.
1_highconf_correct.csv
row 197
Crossing of the superior cerebellar peduncle decussation of superior cerebellar peduncle
HOMBA:12337 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Query 'Crossing of the superior cerebellar peduncle' matches synonym 'decussation of superior cerebellar peduncle'. | Crossing is synonymous with decussation; same anatomical structure. | Crossing and decussation are synonyms for the same structure.
1_highconf_correct.csv
row 198
Cuneiform Nucleus cuneiform nucleus
HOMBA:12240 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Exact match with case normalization: 'Cuneiform Nucleus' equals 'cuneiform nucleus'. | Exact match after case normalization. | Exact match, only capitalization difference.
1_highconf_correct.csv
row 199
Dentate gyrus dentate gyrus
HOMBA:10295 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Exact match: 'Dentate gyrus' equals 'dentate gyrus'. | Exact match. | Exact match, only capitalization difference.
1_highconf_correct.csv
row 200
Dorsal endopiriform claustrum dorsal endopiriform nucleus
HOMBA:AA30264 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Query 'Dorsal endopiriform claustrum' refers to claustrum; top1 'dorsal endopiriform nucleus' is a different structure (nucleus vs claustrum). | Dorsal endopiriform nucleus is a synonym for dorsal endopiriform claustrum. | Query matches a known alias for dorsal endopiriform nucleus; claustrum and nucleus are interchangeable in this context.
1_highconf_correct.csv
row 201
Dorsal lateral geniculate nucleus lateral geniculate nucleus (dorsal lateral geniculate nucleus)
HOMBA:10429 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Top1 includes query as parenthetical synonym: 'lateral geniculate nucleus (dorsal lateral geniculate nucleus)'. | Top1 includes the query term in parentheses; same structure. | Top1 is the dorsal lateral geniculate nucleus, specified parenthetically; exact match to query.
1_highconf_correct.csv
row 202
Dorsomedial hypothalamic nucleus dorsomedial hypothalamic nucleus
HOMBA:10485 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case variant) of dorsomedial hypothalamic nucleus. | Exact match: query and top1 are identical anatomical structure. | Exact string match (case-insensitive).
1_highconf_correct.csv
row 203
Dysgranular insular cortex dysgranular insular cortex (area Idg)
HOMBA:10289 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is same structure with parenthetical synonym (area Idg). | Synonym includes 'area Idg' but refers to the same cortical region. | Top1 name is identical base term with parenthetical specification; refers to same dysgranular insular cortex.
1_highconf_correct.csv
row 204
Endopiriform nucleus endopiriform nucleus
HOMBA:10371 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of endopiriform nucleus. | Exact match (case variation only). | Exact string match (case-insensitive).
1_highconf_correct.csv
row 205
Entopeduncular nucleus entopeduncular nucleus
HOMBA:146034758 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of entopeduncular nucleus. | Exact match (case variation only). | Exact string match (case-insensitive).
1_highconf_correct.csv
row 206
Entorhinal area (medial part) medial (caudal) entorhinal cortex
HOMBA:10319 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.8
Query specifies medial part of entorhinal area; top1 is medial entorhinal cortex, synonymous. | Top1 matches the specific medial part of entorhinal area, consistent with query. | Query is medial part of entorhinal area; top1 'medial (caudal) entorhinal cortex' denotes a subdivision (caudal part) of that medial region, thus too narrow.
1_highconf_correct.csv
row 207
Extended amygdala extended amygdala
HOMBA:10383 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact case-insensitive match between query 'Extended amygdala' and top1_name 'extended amygdala'. | top1_name is the lowercase version of query, identical anatomical structure (extended amygdala). | Exact match, case-insensitive.
1_highconf_correct.csv
row 208
Facial Motor Nucleus facial nucleus
HOMBA:12420 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
'facial nucleus' is the standard name for the facial motor nucleus; direct synonym. | top1_name 'facial nucleus' is the standard name for the facial motor nucleus, matching query semantic. | Facial Motor Nucleus and facial nucleus are accepted synonyms.
1_highconf_correct.csv
row 209
Fasciculus retroflexus fasciculus retroflexus (habenuno-interpeduncular tract)
HOMBA:12342 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1_name contains the exact query 'fasciculus retroflexus' with parenthetical alias. | top1_name includes exact anatomical name with additional parenthetical, same structure. | Same structure, with parenthesized alternative name.
1_highconf_correct.csv
row 210
Fasciola cinereum fasciola cinereum (ectosplenial area 26)
HOMBA:AA30112 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1_name includes the exact query 'fasciola cinereum' followed by an alternative name. | top1_name exactly matches query ignoring case, with parenthetical descriptor for same region. | Same structure, with parenthesized synonym.
1_highconf_correct.csv
row 211
Fimbria fimbria
HOMBA:10575 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact case-insensitive match between query 'Fimbria' and top1_name 'fimbria'. | top1_name and query are identical apart from capitalization, same structure (fimbria). | Exact match.
1_highconf_correct.csv
row 212
Flocculus lobule Xa (flocculus)
HOMBA:AA30424 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is a direct synonym (lobule Xa) for the flocculus. | Flocculus is synonymous with lobule Xa (flocculus) in cerebellar anatomy. | top1_name 'lobule Xa (flocculus)' explicitly equates to the query 'Flocculus'; same structure.
1_highconf_correct.csv
row 213
Fornix fornix
HOMBA:10576 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact anatomical match to query 'fornix'. | Exact match after case normalization (Fornix / fornix). | Exact match, same anatomical structure (Fornix vs fornix).
1_highconf_correct.csv
row 214
Frontal pole frontal pole
HOMBA:146034888 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match to query 'frontal pole'. | Exact match after case normalization (Frontal pole / frontal pole). | Exact match for Frontal pole.
1_highconf_correct.csv
row 215
Genu of the facial nerve genu of the facial nerve
HOMBA:12738 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match to query 'genu of the facial nerve'. | Exact match after case normalization (Genu of the facial nerve / genu of the facial nerve). | Exact match for Genu of the facial nerve.
1_highconf_correct.csv
row 216
Gigantocellular Reticular Nucleus gigantocellular reticular nuclei
HOMBA:12625 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is a plural variant of the same reticular nucleus, considered equivalent. | Nucleus vs nuclei is an accepted synonym for this structure. | Singular vs plural (nucleus vs nuclei) still refers to the same gigantocellular reticular structure.
1_highconf_correct.csv
row 217
Glomerular layer of the accessory olfactory bulb glomerular layer of accessory olfactory bulb
HOMBA:AA30176 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query and top1_name are identical in meaning; capitalization difference only. | Query and top1_name are identical except for capitalization and optional article; accepted synonym. | Same structure; only minor case/article difference.
1_highconf_correct.csv
row 218
Glomerular layer of the olfactory bulb glomerular layer of olfactory bulb
HOMBA:AA30170 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query and top1_name are identical; no discrepancies. | Exact match after case normalization; same anatomical structure. | Same structure; only minor case/article difference.
1_highconf_correct.csv
row 219
Granular insular cortex granular insular cortex (area Ig)
HOMBA:10290 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1_name includes the exact query plus (area Ig) as clarification; same structure. | Core name matches exactly; parenthetical area Ig is an accepted synonym/identifier. | Direct match with additional parenthetical synonym '(area Ig)'.
1_highconf_correct.csv
row 221
Habenular commissure habenular commissure
HOMBA:10566 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query and top1_name are identical; exact match. | Exact match after case normalization; same commissure structure. | Exact match; minor case difference.
1_highconf_correct.csv
row 222
Head of caudate nucleus head of caudate nucleus
HOMBA:10335 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 name is exact match (case variant) to query: head of caudate nucleus. | Exact match or case variation of identical term. | Identical term except capitalization; exact anatomical match.
1_highconf_correct.csv
row 223
Hippocampus hippocampus
HOMBA:AA30093 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 name is exact match (case variant) to query: hippocampus. | Exact match or case variation of identical term. | Same structure, case variation only.
1_highconf_correct.csv
row 224
Inferior Cerebellar Peduncle inferior cerebellar peduncle
HOMBA:12741 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 name is exact match (case variant) to query: inferior cerebellar peduncle. | Exact match or case variation of identical term. | Direct match, difference only in capitalization.
1_highconf_correct.csv
row 225
Inferior cerebellar peduncle inferior cerebellar peduncle
HOMBA:12741 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 name is exact match (case variant) to query: inferior cerebellar peduncle. | Exact match or case variation of identical term. | Exact string match for inferior cerebellar peduncle.
1_highconf_correct.csv
row 226
Inferior colliculus inferior colliculus
HOMBA:12305 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 name is exact match (case variant) to query: inferior colliculus. | Exact match or case variation of identical term. | Case-insensitive identical match for inferior colliculus.
1_highconf_correct.csv
row 227
Inferior frontal gyrus inferior frontal gyrus
HOMBA:12117 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: query and top1_name refer to the same anatomical structure with case variation. | Exact synonym: 'Inferior frontal gyrus' matches 'inferior frontal gyrus'. | Exact match for Inferior frontal gyrus.
1_highconf_correct.csv
row 228
Inferior Olive inferior olive
HOMBA:12600 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: 'Inferior Olive' and 'inferior olive' are the same structure. | Exact synonym: 'Inferior Olive' matches 'inferior olive'. | Exact match for Inferior Olive.
1_highconf_correct.csv
row 229
Inferior olive inferior olive
HOMBA:12600 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: identical strings with case difference. | Exact synonym: 'Inferior olive' matches 'inferior olive'. | Exact match for Inferior olive.
1_highconf_correct.csv
row 230
Inferior Pulvinar inferior division of pulvinar
HOMBA:10413 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonym: 'inferior pulvinar' is equivalent to 'inferior division of pulvinar'. | 'Inferior Pulvinar' and 'inferior division of pulvinar' are synonymous; subdivision is correctly matched. | Inferior Pulvinar is the accepted shorthand for inferior division of pulvinar; same structure.
1_highconf_correct.csv
row 231
Inferior temporal gyrus inferior temporal gyrus
HOMBA:12142 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: query and top1_name are identical with case variation. | Exact synonym: 'Inferior temporal gyrus' matches 'inferior temporal gyrus'. | Exact match for Inferior temporal gyrus.
1_highconf_correct.csv
row 232
Infundibulum infundibular stalk
HOMBA:10643 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Infundibulum and infundibular stalk are anatomical synonyms; same structure. | 'Infundibular stalk' is a synonym for infundibulum; direct anatomical match. | Infundibulum and infundibular stalk refer to the same pituitary stalk structure.
1_highconf_correct.csv
row 234
Interanteromedial thalamic nucleus interanteromedial nucleus of thalamus
HOMBA:13048 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Interanteromedial thalamic nucleus matches interanteromedial nucleus of thalamus. | Standard rephrasing of the same thalamic nucleus; exact structure. | Interanteromedial thalamic nucleus and interanteromedial nucleus of thalamus are the same thalamic nucleus, wording variant.
1_highconf_correct.csv
row 235
Intermediodorsal thalamic nucleus intermediodorsal nucleus of thalamus
HOMBA:13049 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Intermediodorsal thalamic nucleus matches intermediodorsal nucleus of thalamus. | Same thalamic nucleus with synonymous naming order. | Intermediodorsal thalamic nucleus and intermediodorsal nucleus of thalamus are the same, minor wording difference.
1_highconf_correct.csv
row 236
Internal capsule internal capsule
HOMBA:10581 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match: Internal capsule to internal capsule. | Exact match for internal capsule. | Exact match for internal capsule.
1_highconf_correct.csv
row 237
Interpeduncular Nucleus interpeduncular nucleus
HOMBA:12270 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with capitalization difference. | Exact match, differing only in letter case; same anatomical structure. | Exact match, case-insensitive synonym.
1_highconf_correct.csv
row 238
Interpeduncular nucleus interpeduncular nucleus
HOMBA:12270 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with capitalization difference. | Exact match, differing only in letter case; same anatomical structure. | Exact match, case-insensitive synonym.
1_highconf_correct.csv
row 239
Lamina Terminalis lamina terminalis
HOMBA:12105 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with capitalization difference. | Exact match, differing only in letter case; same anatomical structure. | Exact match, case-insensitive synonym.
1_highconf_correct.csv
row 240
Lateral entorhinal cortex lateral (rostral) entorhinal cortex
HOMBA:10318 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 includes the query plus an alternative descriptor in parentheses; same structure. | Top1 adds 'rostral' in parentheses but refers to the same lateral entorhinal cortex; accepted variant. | Top1 name includes parenthetical qualifier but refers to the same lateral entorhinal cortex.
1_highconf_correct.csv
row 241
Lateral habenular nucleus lateral habenular nucleus
HOMBA:10453 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with capitalization difference. | Exact match, differing only in letter case; same anatomical structure. | Exact match, case-insensitive synonym.
1_highconf_correct.csv
row 242
Lateral Lemniscus lateral lemniscus
HOMBA:12760 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact case-insensitive match. | Exact case-insensitive match between query and top1_name. | Identical structure, case difference only.
1_highconf_correct.csv
row 243
Lateral Parabrachial Nucleus lateral parabrachial nucleus
HOMBA:12482 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact case-insensitive match. | Exact case-insensitive match. | Exact match, same anatomical entity.
1_highconf_correct.csv
row 244
Lateral parietal cortex, inferior inferior lateral parietal cortex
HOMBA:10225 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonymous word-order variant. | Word-order variant but identical components; conventional synonym. | Word-order variant of the same cortical region, no anatomical discrepancy.
1_highconf_correct.csv
row 245
Lateral Pulvinar lateral division of pulvinar
HOMBA:10412 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is a more precise synonym (lateral division of pulvinar). | 'lateral division of pulvinar' is the standard term for lateral pulvinar; direct synonym. | Lateral division of pulvinar is the full name for Lateral Pulvinar; same structure.
1_highconf_correct.csv
row 246
Lateral Reticular Nucleus lateral reticular nucleus
HOMBA:12634 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact case-insensitive match. | Exact case-insensitive match. | Exact match, same nucleus.
1_highconf_correct.csv
row 247
Lateral superior olive lateral superior olivary nucleus
HOMBA:12469 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
'Lateral superior olive' is a synonym for 'lateral superior olivary nucleus'; exact anatomical match. | Lateral superior olive and lateral superior olivary nucleus are accepted synonyms. | Lateral superior olive is a synonym for lateral superior olivary nucleus; the matched alias confirms direct equivalence.
1_highconf_correct.csv
row 248
Mammillary nucleus mammillary nuclear complex
HOMBA:10498 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Mammillary nucleus' is a component of 'mammillary nuclear complex'; top1 is a broader parent structure. | Mammillary nucleus and mammillary nuclear complex are conventionally used interchangeably. | Mammillary nucleus is a standard term for the mammillary body, which is a nuclear complex; the matched alias confirms consistency.
1_highconf_correct.csv
row 249
Mammillotegmental tract mammillotegmental tract
HOMBA:12065 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact string match: 'Mammillotegmental tract' equals top1 name. | Exact match between query and top1 name. | Exact match between query and top1_name; identical anatomical tract.
1_highconf_correct.csv
row 251
Medial eminence medial eminence
HOMBA:12820 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact string match: 'Medial eminence' equals top1 name. | Exact match between query and top1 name. | Exact spatial term match; both refer to the same ventricular floor landmark.
1_highconf_correct.csv
row 252
Medial entorhinal cortex medial (caudal) entorhinal cortex
HOMBA:10319 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.7
top1 matches query exactly with an accepted synonym variant specifying 'caudal'. | Exact match with accepted synonym, includes additional descriptive term. | Top1 adds 'caudal' denoting a subregion of medial entorhinal cortex, narrower than the query.
1_highconf_correct.csv
row 253
Medial geniculate nucleus medial geniculate nucleus
HOMBA:10434 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match 'medial geniculate nucleus'. | Exact case-insensitive match. | Top1 matches query exactly.
1_highconf_correct.csv
row 254
Medial habenular nucleus medial habenular nucleus
HOMBA:10456 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match 'medial habenular nucleus'. | Exact case-insensitive match. | Top1 matches query exactly.
1_highconf_correct.csv
row 255
Medial Lemniscus medial lemniscus
HOMBA:12763 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match, only case difference. | Exact case-insensitive match. | Minor capitalisation and spelling variant ('lemniscus' vs 'Lemniscus'), same structure.
1_highconf_correct.csv
row 256
Medial longitudinal fascicle medial longitudinal fasciculus
HOMBA:12764 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonym variant: 'fascicle' vs 'fasciculus' are used interchangeably. | Synonym, fascicle and fasciculus are interchangeable. | 'fascicle' and 'fasciculus' are accepted synonyms for the same tract.
1_highconf_correct.csv
row 257
Medial Parabrachial Nucleus medial parabrachial nucleus
HOMBA:12487 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is an exact lowercase match to the query, referring to the same structure. | Exact match (case-insensitive) for Medial Parabrachial Nucleus. | Exact match with case-insensitive normalization.
1_highconf_correct.csv
row 258
Medial Pulvinar medial division of pulvinar
HOMBA:10411 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
'medial division of pulvinar' is the conventional full name for 'Medial Pulvinar', same anatomical entity. | Synonym: medial pulvinar is the medial division of pulvinar. | Medial pulvinar is synonymous with medial division of pulvinar of thalamus.
1_highconf_correct.csv
row 259
Medial superior olive medial superior olivary nucleus
HOMBA:12470 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
'medial superior olivary nucleus' is the formal name for 'Medial superior olive', standard synonym. | Synonym: medial superior olive and medial superior olivary nucleus refer to same structure. | Medial superior olive and medial superior olivary nucleus are interchangeable names for the same structure.
1_highconf_correct.csv
row 260
Median eminence median eminence
HOMBA:13338 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is identical to query apart from capitalization, same structure. | Exact match (case-insensitive) for Median eminence. | Exact match; same anatomical entity.
1_highconf_correct.csv
row 261
Mediodorsal thalamic nucleus mediodorsal nucleus of thalamus
HOMBA:10398 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
'mediodorsal nucleus of thalamus' and 'Mediodorsal thalamic nucleus' are accepted synonymous names. | Conventional word-order variant: mediodorsal thalamic nucleus equals mediodorsal nucleus of thalamus. | Mediodorsal thalamic nucleus is synonymous with mediodorsal nucleus of thalamus.
1_highconf_correct.csv
row 262
Mediodorsal Thalamus mediodorsal nucleus of thalamus
HOMBA:10398 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct synonym; mediodorsal thalamus refers to the mediodorsal nucleus of thalamus. | Top1 is the precise anatomical structure; 'mediodorsal nucleus of thalamus' is a standard synonym for Mediodorsal Thalamus. | Direct synonym. Mediodorsal Thalamus refers to the mediodorsal nucleus of the thalamus.
1_highconf_correct.csv
row 263
Midbrain reticular formation midbrain reticular formation
HOMBA:12239 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of query and candidate name. | Exact match (case difference only) between query and top1 name. | Exact match, only capitalization differs. Same structure.
1_highconf_correct.csv
row 264
Middle cerebellar peduncle middle cerebellar peduncle (brachium pontis)
HOMBA:12768 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with parenthetical synonym. | Exact match with appended synonym in parentheses; same structure. | Same structure; top1 includes alternate name in parentheses.
1_highconf_correct.csv
row 265
Middle frontal gyrus middle frontal gyrus
HOMBA:12116 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match of query and candidate name. | Exact match (case difference only) between query and top1 name. | Exact match, same gyrus.
1_highconf_correct.csv
row 266
Motor Trigeminal Nucleus motor nucleus of trigeminal nerve (motor trigeminal nucleus, Mo5)
HOMBA:12429 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match; 'motor trigeminal nucleus' is an alias provided. | Top1 is the full formal name including the query as an accepted synonym; same nucleus. | Motor Trigeminal Nucleus is the motor nucleus of trigeminal nerve; top1 lists synonyms.
1_highconf_correct.csv
row 267
Nucleus accumbens (core) core of nucleus accumbens
HOMBA:10340 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct match: query specifies core of nucleus accumbens, top1 gives official name 'core of nucleus accumbens'. | Query specifies core subregion; top1_name directly names core of nucleus accumbens. | Query specifies core of nucleus accumbens; top1 is 'core of nucleus accumbens', an exact match.
1_highconf_correct.csv
row 268
Nucleus accumbens (shell) shell of nucleus accumbens
HOMBA:10341 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct match: query specifies shell of nucleus accumbens, top1 gives official name 'shell of nucleus accumbens'. | Query specifies shell subregion; top1_name directly names shell of nucleus accumbens. | Query specifies shell of nucleus accumbens; top1 is 'shell of nucleus accumbens', an exact match.
1_highconf_correct.csv
row 269
Nucleus accumbens, core core of nucleus accumbens
HOMBA:10340 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct match: query 'Nucleus accumbens, core' corresponds to top1 'core of nucleus accumbens'. | Query specifies core with comma; top1_name directly names core of nucleus accumbens. | Query 'Nucleus accumbens, core' and top1 'core of nucleus accumbens' are synonymous, same structure.
1_highconf_correct.csv
row 270
Nucleus accumbens, shell shell of nucleus accumbens
HOMBA:10341 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct match: query 'Nucleus accumbens, shell' corresponds to top1 'shell of nucleus accumbens'. | Query specifies shell with comma; top1_name directly names shell of nucleus accumbens. | Query 'Nucleus accumbens, shell' and top1 'shell of nucleus accumbens' are synonymous, same structure.
1_highconf_correct.csv
row 271
Nucleus of the lateral olfactory tract nucleus of lateral olfactory tract
HOMBA:10309 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonym variant: query includes 'the', top1 omits it; same structure 'nucleus of lateral olfactory tract'. | Query 'Nucleus of the lateral olfactory tract'; top1_name minor variant without 'the', accepted synonym. | Query 'Nucleus of the lateral olfactory tract' and top1 'nucleus of lateral olfactory tract' are identical except for 'the', same anatomical entity.
1_highconf_correct.csv
row 272
Nucleus sagulum sagulum nucleus (nucleus sagulum)
HOMBA:12313 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
top1_name is a syntactic variant of the query, referring to the same anatomical structure. | Query 'Nucleus sagulum' matches top1 'sagulum nucleus (nucleus sagulum)' which is the same structure with word-order variation and synonym. | Same nucleus, accepted word-order variant.
1_highconf_correct.csv
row 273
Obex obex
HOMBA:12812 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name is an exact match to the query. | Exact match between query 'Obex' and top1 'obex'. | Exact match, case difference only.
1_highconf_correct.csv
row 274
Occulomotor Nuclei oculomotor nucleus
HOMBA:12198 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Minor spelling variant ('Occulomotor' vs 'oculomotor') and singular vs plural, but same structure. | Query 'Occulomotor Nuclei' has a minor typo and plural, but top1 'oculomotor nucleus' is the same anatomical entity with corrected spelling and singular form. | Corrects misspelling and plural; same oculomotor nucleus.
1_highconf_correct.csv
row 276
Olfactory tubercle olfactory tubercle
HOMBA:10310 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name. | Exact match between query 'Olfactory tubercle' and top1 'olfactory tubercle'. | Exact match, case difference only.
1_highconf_correct.csv
row 277
Olfactory Tubercule olfactory tubercle
HOMBA:10310 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query misspelling 'Tubercule' maps directly to 'olfactory tubercle', a conventional synonym. | Direct match with accepted spelling variant (Tubercule vs tubercle). | Direct match, only difference is minor spelling variant (tubercule vs tubercle) with same intended structure.
1_highconf_correct.csv
row 278
Olivocerebellar Tract olivocerebellar tract
HOMBA:12747 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match except for case, same anatomical structure. | Direct match; identical term with normalized casing. | Direct case-insensitive match for the same anatomical tract.
1_highconf_correct.csv
row 279
Optic nerve optic nerve
HOMBA:15544 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match except for case, same named entity. | Direct match; identical term with normalized casing. | Direct case-insensitive match for optic nerve.
1_highconf_correct.csv
row 280
Optic Tract optic tract
HOMBA:10589 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match except for case, same named entity. | Direct match; identical term with normalized casing. | Direct case-insensitive match for optic tract.
1_highconf_correct.csv
row 281
Parabigeminal Nucleus parabigeminal nucleus
HOMBA:12312 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match except for case, same named entity. | Direct match; identical term with normalized casing. | Direct case-insensitive match for parabigeminal nucleus.
1_highconf_correct.csv
row 282
Paracentral thalamic nucleus paracentral nucleus of thalamus
HOMBA:10446 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
The top1 is a direct synonym, naming the same thalamic nucleus. | Synonym of query: paracentral nucleus of thalamus is the same as Paracentral thalamic nucleus. | Paracentral thalamic nucleus and paracentral nucleus of thalamus are the same structure with conventional word-order variation.
1_highconf_correct.csv
row 283
Parafascicular thalamic nucleus parafascicular nucleus of thalamus
HOMBA:10450 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct synonym; same anatomical structure. | Synonym of query: parafascicular nucleus of thalamus matches Parafascicular thalamic nucleus. | Parafascicular thalamic nucleus and parafascicular nucleus of thalamus refer to the identical thalamic nucleus.
1_highconf_correct.csv
row 284
Paraflocculus lobule IXb (paraflocculus)
HOMBA:AA30421 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is a more specific name for the same cerebellar lobule, with 'paraflocculus' listed as an alias. | Top1 explicitly includes paraflocculus as alias; same structure. | 'Paraflocculus' is explicitly listed as a synonym within the HOMBA term 'lobule IXb (paraflocculus)', representing the same structure.
1_highconf_correct.csv
row 285
Parahippocampal gyrus parahippocampal gyrus
HOMBA:12162 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case difference. | Exact match: parahippocampal gyrus. | 'Parahippocampal gyrus' matches 'parahippocampal gyrus' exactly, differing only in capitalization.
1_highconf_correct.csv
row 286
Paramedian Lobule lobule VIIIA (biventral lobule, part 1, paramedian lobule)
HOMBA:AA30417 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 includes 'paramedian lobule' as a synonym within its name, indicating the same structure. | Top1 contains paramedian lobule as explicit synonym; same structure. | 'Paramedian Lobule' is a direct synonym of the lobule identified as 'lobule VIIIA (paramedian lobule)'.
1_highconf_correct.csv
row 287
Parasubiculum parasubiculum (parasubicular cortex)
HOMBA:10316 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct match with accepted synonym (parasubiculum). | Exact anatomical structure, case variation, with accepted synonym in parentheses. | Query 'Parasubiculum' exactly matches the primary part of top1 'parasubiculum (parasubicular cortex)'. Accepted direct equivalence.
1_highconf_correct.csv
row 288
Parataenial thalamic nucleus parataenial nucleus of thalamus
HOMBA:10404 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Same structure; word-order variant (parataenial nucleus of thalamus). | Synonymous naming: 'parataenial thalamic nucleus' and 'parataenial nucleus of thalamus' refer to same structure. | 'Parataenial thalamic nucleus' and 'parataenial nucleus of thalamus' are conventional word-order variants naming the same structure.
1_highconf_correct.csv
row 289
Perifornical nucleus perifornical nucleus
HOMBA:11578 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case difference) for perifornical nucleus. | Identical term, case difference only. | Exact match between 'Perifornical nucleus' and 'perifornical nucleus' (case-insensitive).
1_highconf_correct.csv
row 290
Peripeduncular nucleus peripeduncular nucleus
HOMBA:12285 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case difference) for peripeduncular nucleus. | Identical term, case difference only. | Exact match between 'Peripeduncular nucleus' and 'peripeduncular nucleus'.
1_highconf_correct.csv
row 291
Pineal gland pineal body
HOMBA:10460 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonym: pineal gland and pineal body refer to same structure. | Synonymous: 'pineal gland' and 'pineal body' are standard synonyms. | 'Pineal gland' and 'pineal body' are accepted synonyms for the same anatomical entity.
1_highconf_correct.csv
row 292
Piriform cortex piriform cortex
HOMBA:10311 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is identical to query (case variation only). | Exact match, case variation only. | Exact match, case-insensitive; same anatomical structure.
1_highconf_correct.csv
row 293
Pontine nuclei pontine nucleus
HOMBA:12406 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 name is grammatical number variant (singular vs plural) of query; acceptable synonym. | Singular vs plural; standard synonym with same HOMBA ID. | Singular/plural variant; refers to the same pontine nuclei.
1_highconf_correct.csv
row 294
Pontine nucleus pontine nucleus
HOMBA:12406 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query and top1 name are exactly matching (case normalization). | Exact match, case variation only. | Exact match, case-insensitive; same structure.
1_highconf_correct.csv
row 295
Posterior Commissure posterior commissure
HOMBA:10567 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Case variation only; top1 directly names the same structure. | Exact match, case variation only. | Exact match, case-insensitive; same posterior commissure.
1_highconf_correct.csv
row 296
Posterior commissure posterior commissure
HOMBA:10567 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Case variation only; top1 directly names the same structure. | Exact match, case variation only. | Exact match, case-insensitive; same posterior commissure.
1_highconf_correct.csv
row 297
Posterior hypothalamic nucleus posterior hypothalamic nucleus
HOMBA:10503 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case variation; top1_name is identical to query. | Exact match (case insensitive) with query 'Posterior hypothalamic nucleus'. | Exact match, ignoring case; top1_name is identical to query.
1_highconf_correct.csv
row 298
Posterior thalamic nucleus posterior nucleus of thalamus
HOMBA:10440 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Accepted synonym; 'posterior nucleus of thalamus' is standard name for 'posterior thalamic nucleus'. | Synonym: 'posterior nucleus of thalamus' is equivalent to 'Posterior thalamic nucleus'. | Alias match: posterior thalamic nucleus is synonymous with posterior nucleus of thalamus; same concept.
1_highconf_correct.csv
row 299
Postrhinal cortex posterior parahippocampal region (postrhinal cortex)
HOMBA:10263 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 includes query as an explicit synonym in parentheses; likely same structure. | Top1 includes 'postrhinal cortex' in parentheses as direct synonym. | Top1 name explicitly includes the query as a parenthetical synonym; exact match.
1_highconf_correct.csv
row 300
Precommissural nucleus precommissural nucleus
HOMBA:12287 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case variation). | Exact match (case insensitive) with query 'Precommissural nucleus'. | Exact match, ignoring case; top1_name is identical to query.
1_highconf_correct.csv
row 301
Pregeniculate nucleus pregeniculate nucleus (ventral lateral geniculate nucleus)
HOMBA:13042 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Accepted synonym; 'pregeniculate nucleus' is alternative name for ventral lateral geniculate nucleus. | Top1 includes 'pregeniculate nucleus' as primary name, equivalent to query. | Top1 name explicitly includes the query as a parenthetical synonym; pregeniculate nucleus matches.
1_highconf_correct.csv
row 302
Prelunate gyrus prelunate gyrus
HOMBA:AA30555 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Case-insensitive exact match for same anatomical structure. | Exact case-insensitive match: 'Prelunate gyrus' equals 'prelunate gyrus'. | Exact name match (case-insensitive): prelunate gyrus.
1_highconf_correct.csv
row 303
Prepositus Nucleus prepositus hypoglossal nucleus
HOMBA:12615 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Accepted synonym: prepositus nucleus is the nucleus prepositus hypoglossi. | 'Prepositus Nucleus' is a common abbreviation for the full name 'prepositus hypoglossal nucleus'. | Query 'Prepositus Nucleus' is an accepted synonym for the prepositus hypoglossal nucleus; top1 gives full canonical name.
1_highconf_correct.csv
row 304
Prerubral Field prerubral field (field H3)
HOMBA:AA30325 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct match; parenthetical addition does not alter core structure. | Exact match with parenthetical synonym: 'Prerubral Field' equals 'prerubral field (field H3)'. | Top1 name is 'prerubral field (field H3)'; contains the exact query term as the primary label, just more detailed.
1_highconf_correct.csv
row 305
Presubiculum presubiculum (presubicular cortex)
HOMBA:10315 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact core name match; parenthetical is synonymous. | Exact match with parenthetical synonym: 'Presubiculum' equals 'presubiculum (presubicular cortex)'. | Top1 name 'presubiculum (presubicular cortex)' uses exact query term with a parenthetical synonym; clearly the same structure.
1_highconf_correct.csv
row 306
Pretectal region pretectal region
HOMBA:12181 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Case-insensitive exact match. | Exact case-insensitive match: 'Pretectal region' equals 'pretectal region'. | Exact name match (case-insensitive): pretectal region.
1_highconf_correct.csv
row 307
Primary auditory area primary auditory cortex (first auditory cortex, auditory core region)
HOMBA:10236 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Primary auditory area is a synonym for primary auditory cortex. | "Primary auditory area" and "primary auditory cortex" are synonyms; direct match. | "Primary auditory area" is a direct synonym for primary auditory cortex; top1 names the identical structure.
1_highconf_correct.csv
row 308
Primary motor area primary motor cortex (first motor cortex, area 4, area FA)
HOMBA:10163 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Primary motor area is a synonym for primary motor cortex. | "Primary motor area" and "primary motor cortex" are synonyms; direct match. | "Primary motor area" is a direct synonym for primary motor cortex; top1 names the identical structure.
1_highconf_correct.csv
row 309
Primary visual area primary visual cortex (first visual cortex, striate cortex, area 17, area OC)
HOMBA:10269 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Primary visual area is a synonym for primary visual cortex. | "Primary visual area" and "primary visual cortex" are synonyms; direct match. | "Primary visual area" is a direct synonym for primary visual cortex; top1 names the identical structure.
1_highconf_correct.csv
row 310
Principal Trigeminal Nucleus principal sensory nucleus of trigeminal nerve
HOMBA:12444 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Principal Trigeminal Nucleus is a standard abbreviation for the principal sensory nucleus of trigeminal nerve. | "Principal Trigeminal Nucleus" is a direct abbreviation/synonym for "principal sensory nucleus of trigeminal nerve". | "Principal Trigeminal Nucleus" is a standard synonym for principal sensory nucleus of trigeminal nerve; anatomically identical.
1_highconf_correct.csv
row 311
Putamen putamen (lateroventral division of the CP)
HOMBA:10338 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact anatomical name match. | "Putamen" exactly matches "putamen". | "Putamen" matches the top1 name exactly; parenthetical addition is an anatomical specification, not a mismatch.
1_highconf_correct.csv
row 312
Pyramidal decussation pyramidal decussation
HOMBA:12772 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Pyramidal decussation' matches exactly with top1_name 'pyramidal decussation' (only case difference). | Exact match between query and top1 name (case-insensitive). | Exact match of 'Pyramidal decussation' (case-insensitive).
1_highconf_correct.csv
row 313
Pyramidal Tract pyramidal tract
HOMBA:12773 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Pyramidal Tract' matches exactly with top1_name 'pyramidal tract' (only case difference). | Exact match between query and top1 name (case-insensitive). | Exact match of 'Pyramidal Tract' (case-insensitive).
1_highconf_correct.csv
row 314
Raphe Magnus Nucleus raphe magnus nucleus
HOMBA:12642 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Raphe Magnus Nucleus' matches exactly with top1_name 'raphe magnus nucleus' (only case difference). | Exact match between query and top1 name (case-insensitive). | Exact match of 'Raphe Magnus Nucleus' (case-insensitive).
1_highconf_correct.csv
row 315
Raphe Obscurus Nucleus raphe obscurus nucleus
HOMBA:12643 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Raphe Obscurus Nucleus' matches exactly with top1_name 'raphe obscurus nucleus' (only case difference). | Exact match between query and top1 name (case-insensitive). | Exact match of 'Raphe Obscurus Nucleus' (case-insensitive).
1_highconf_correct.csv
row 316
Red nucleus red nucleus
HOMBA:12247 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Red nucleus' matches exactly with top1_name 'red nucleus' (only case difference). | Exact match between query and top1 name (case-insensitive). | Exact match of 'Red nucleus' (case-insensitive).
1_highconf_correct.csv
row 317
Reticular thalamic nucleus reticular nucleus of thalamus
HOMBA:10464 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Synonym with different word order. | Query 'Reticular thalamic nucleus' and top1 'reticular nucleus of thalamus' are synonymous; standard naming variant. | Exact synonym; reticular thalamic nucleus is the same as reticular nucleus of thalamus.
1_highconf_correct.csv
row 318
Reticular Thalamus reticular nucleus of thalamus
HOMBA:10464 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Common shorthand for reticular nucleus of thalamus. | Query 'Reticular Thalamus' is an accepted alias for the reticular nucleus of thalamus. | Reticular thalamus is a common synonym for the reticular nucleus of thalamus.
1_highconf_correct.csv
row 319
Reticulotegmentum reticulotegmental nucleus
HOMBA:12497 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Abbreviation for reticulotegmental nucleus. | Query 'Reticulotegmentum' is a direct synonym for reticulotegmental nucleus. | Reticulotegmentum is a variant term for reticulotegmental nucleus.
1_highconf_correct.csv
row 320
Retroisthmic Nucleus retrorubral field (retroisthmic nucleus)
HOMBA:12289 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact synonym in parentheses. | Query 'Retroisthmic Nucleus' is one of the names listed in the top1 canonical name. | Retroisthmic nucleus is explicitly listed as an alias in top1_name.
1_highconf_correct.csv
row 321
Retrorubral Field retrorubral field (retroisthmic nucleus)
HOMBA:12289 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct synonym. | Query 'Retrorubral Field' matches the primary name of the top1 structure. | Retrorubral field matches the top1_name exactly.
1_highconf_correct.csv
row 322
Reuniens thalamic nucleus reuniens (medioventral) nucleus of thalamus
HOMBA:10403 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
'Reuniens thalamic nucleus' directly matches the accepted synonym 'reuniens (medioventral) nucleus of thalamus'. | top1 is a standard synonym for the Reuniens thalamic nucleus. | top1_name is the same nucleus, with parenthetical synonym 'medioventral'. Directly consistent.
1_highconf_correct.csv
row 323
Rhomboid thalamic nucleus rhomboid (central) nucleus of thalamus
HOMBA:10447 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
'Rhomboid thalamic nucleus' directly matches the accepted synonym 'rhomboid (central) nucleus of thalamus'. | top1 is the same structure as the Rhomboid thalamic nucleus. | top1_name is the same nucleus, adding parenthetical synonym 'central'. Direct match.
1_highconf_correct.csv
row 324
Secondary somatosensory area subcentral cortex (area 43; secondary somatosensory cortex)
HOMBA:13010 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
'Secondary somatosensory area' is listed as a synonym within 'subcentral cortex (area 43; secondary somatosensory cortex)'. | top1 includes 'secondary somatosensory cortex' as a synonym for the query. | top1_name explicitly includes 'secondary somatosensory cortex' as a synonym; the concept matches query exactly.
1_highconf_correct.csv
row 325
Septal region septal region (septal nuclear complex)
HOMBA:10350 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
'Septal region' directly matches the term 'septal region (septal nuclear complex)'. | top1 is exactly the same anatomical region as Septal region. | top1_name is the same 'septal region', parenthetical adds synonym; clear alignment.
1_highconf_correct.csv
row 326
Simple Lobule lobule VI (simple lobule)
HOMBA:AA30408 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
'Simple Lobule' is an accepted synonym for 'lobule VI (simple lobule)'. | Simple Lobule is another name for lobule VI; top1 matches directly. | 'Simple Lobule' is the classic name for lobule VI; top1_name gives both, fully consistent.
1_highconf_correct.csv
row 327
Solitary Tract Nucleus solitary nucleus
HOMBA:12557 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Solitary Tract Nucleus' is a synonym for 'solitary nucleus'; top1_name directly names the same structure. | Solitary Tract Nucleus is an exact synonym for solitary nucleus (nucleus tractus solitarius). | Solitary Tract Nucleus and solitary nucleus are accepted synonyms for the same structure.
1_highconf_correct.csv
row 328
Spinal cord spinal cord
HOMBA:AA30565 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name 'spinal cord'. | Exact match between query and top1_name. | Identical term, case difference only.
1_highconf_correct.csv
row 329
Spinal trigeminal nucleus spinal trigeminal nucleus
HOMBA:12572 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name 'spinal trigeminal nucleus'. | Exact match between query and top1_name. | Identical term, case difference only.
1_highconf_correct.csv
row 330
Spinal Trigeminal Nucleus Caudal spinal trigeminal nucleus, caudal division
HOMBA:12573 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Query 'Spinal Trigeminal Nucleus Caudal' matches top1_name 'spinal trigeminal nucleus, caudal division' accurately. | Query 'Spinal Trigeminal Nucleus Caudal' corresponds to spinal trigeminal nucleus, caudal division. | Query specifies Caudal division; top1 'spinal trigeminal nucleus, caudal division' is an exact match, not partial.
1_highconf_correct.csv
row 331
Spinal trigeminal tract spinal trigeminal tract
HOMBA:12792 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name 'spinal trigeminal tract'. | Exact match between query and top1_name. | Identical anatomical tract.
1_highconf_correct.csv
row 332
Stria terminalis stria terminalis
HOMBA:10591 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact anatomical structure, only case difference. | Exact match, case variation only | Exact match, case-insensitive identical naming.
1_highconf_correct.csv
row 333
Striatum striatum (neostriatum)
HOMBA:10333 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Accepted synonym: 'striatum' includes neostriatum. | Direct match, includes parenthetical synonym | Top1 is 'striatum (neostriatum)', directly naming the same structure; parenthetical synonym clarifies neostriatal membership.
1_highconf_correct.csv
row 334
Subceruleus subcoeruleus nucleus
HOMBA:12500 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Conventional spelling variant (subceruleus ≈ subcoeruleus). | Accepted spelling variant of same structure | Subceruleus is a common spelling variant of subcoeruleus nucleus; top1 denotes the same nucleus.
1_highconf_correct.csv
row 335
Subgeniculate nucleus subgeniculate nucleus
HOMBA:AA30324 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match, only case difference. | Exact match, case variation only | Identical name, case-insensitive.
1_highconf_correct.csv
row 336
Subicular complex subicular complex
HOMBA:266441673 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match, only case difference. | Exact match, case variation only | Identical name, case-insensitive.
1_highconf_correct.csv
row 337
Subiculum subiculum proper (strictly defined subiculum)
HOMBA:10302 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.95
The top1 is an accepted synonym naming the same subiculum structure. | top1_name is a more precise term for the same structure. | Subiculum encompasses subiculum proper plus transitional fields; top1 is only the strictly defined subiculum proper, a narrower subcomponent.
1_highconf_correct.csv
row 338
Submedius thalamic nucleus submedius thalamic nucleus
HOMBA:AA30278 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case variation, identical anatomical structure. | Exact match. | Exact match, case-insensitive, same thalamic nucleus.
1_highconf_correct.csv
row 339
Subparafascicular Nucleus subparafascicular nucleus of thalamus
HOMBA:13054 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is the same nucleus with a clarifying phrase, fully consistent. | Synonym with added location specifier. | Same nucleus, top1 merely adds 'of thalamus' as a clarifying phrase.
1_highconf_correct.csv
row 340
Subparafascicular nucleus subparafascicular nucleus of thalamus
HOMBA:13054 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact same structure as query, only case difference. | Same as previous, exact anatomical match. | Same as record 337; exact match in meaning, case variation only.
1_highconf_correct.csv
row 341
Substantia nigra substantia nigra
HOMBA:12251 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with case variation, identical substantia nigra. | Exact match. | Exact match, identical structure.
1_highconf_correct.csv
row 342
Substantia nigra (compact part) substantia nigra, compact division
HOMBA:12252 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Query 'Substantia nigra (compact part)' matches synonym 'substantia nigra, compact division'. | Query 'Substantia nigra (compact part)' matches top1 'substantia nigra, compact division' as a synonym with punctuation variation. | top1 name 'substantia nigra, compact division' is a conventional synonym for 'Substantia nigra (compact part)'; matches the same structure exactly.
1_highconf_correct.csv
row 343
Substantia nigra (lateral part) substantia nigra, lateral division
HOMBA:12257 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Query 'Substantia nigra (lateral part)' matches synonym 'substantia nigra, lateral division'. | Query 'Substantia nigra (lateral part)' matches top1 'substantia nigra, lateral division' as a synonym with punctuation variation. | top1 name 'substantia nigra, lateral division' is a conventional synonym for 'Substantia nigra (lateral part)'; matches the same structure.
1_highconf_correct.csv
row 344
Substantia nigra (reticular part) substantia nigra, reticular division
HOMBA:12259 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Query 'Substantia nigra (reticular part)' matches synonym 'substantia nigra, reticular division'. | Query 'Substantia nigra (reticular part)' matches top1 'substantia nigra, reticular division' as a synonym with punctuation variation. | top1 name 'substantia nigra, reticular division' is a conventional synonym for 'Substantia nigra (reticular part)'; matches the same structure.
1_highconf_correct.csv
row 345
Substantia nigra, compact part substantia nigra, compact division
HOMBA:12252 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Query 'Substantia nigra, compact part' matches synonym 'substantia nigra, compact division'. | Query 'Substantia nigra, compact part' matches top1 'substantia nigra, compact division' as a synonym (part vs division). | 'part' vs 'division' are interchangeable for substantia nigra subdivisions; top1 matches query 'Substantia nigra, compact part' exactly.
1_highconf_correct.csv
row 346
Substantia nigra, lateral part substantia nigra, lateral division
HOMBA:12257 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Query 'Substantia nigra, lateral part' matches synonym 'substantia nigra, lateral division'. | Query 'Substantia nigra, lateral part' matches top1 'substantia nigra, lateral division' as a synonym (part vs division). | 'part' vs 'division' are interchangeable for substantia nigra subdivisions; top1 matches query 'Substantia nigra, lateral part' exactly.
1_highconf_correct.csv
row 347
Substantia nigra, reticular part substantia nigra, reticular division
HOMBA:12259 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 uses accepted synonym 'reticular division' for query's 'reticular part'. | The top1 'substantia nigra, reticular division' is a synonym of 'Substantia nigra, reticular part'; both refer to the same anatomical structure. | Exact synonym: 'reticular part' vs 'reticular division' of substantia nigra.
1_highconf_correct.csv
row 348
Subthalamic nucleus subthalamic nucleus
HOMBA:10466 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match with standard anatomical name. | Exact match between query 'Subthalamic nucleus' and top1 'subthalamic nucleus'. | Exact string match for subthalamic nucleus.
1_highconf_correct.csv
row 349
Superficial gray layer of the superior colliculus superficial gray layer of superior colliculus
HOMBA:12295 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Same layer of superior colliculus; only minor word order variation. | The top1 omits the article 'the', which is a conventional variant of the same structure name. | Identical structure, only missing optional article 'the'.
1_highconf_correct.csv
row 350
Superior Cerebellar Peduncle superior cerebellar peduncle (brachium conjunctivum)
HOMBA:12354 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact structure with parenthetical synonym (brachium conjunctivum). | Top1 includes the Latin synonym in parentheses, but refers to the same structure as the query. | Same structure with Latin synonym in parentheses.
1_highconf_correct.csv
row 351
Superior Cerebellar Peduncle Decussation decussation of superior cerebellar peduncle
HOMBA:12337 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Same decussation structure; word order and phrasing are equivalent. | The top1 'decussation of superior cerebellar peduncle' is a reordering of the query 'Superior Cerebellar Peduncle Decussation'; both denote the same entity. | Same anatomical crossing, just reworded order.
1_highconf_correct.csv
row 352
Superior colliculus superior colliculus
HOMBA:12292 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query 'Superior colliculus' and top1_name 'superior colliculus' (case-insensitive). | Exact match: query 'Superior colliculus' is identical to top1_name 'superior colliculus'. | Exact match, only case difference.
1_highconf_correct.csv
row 353
Superior frontal gyrus superior frontal gyrus
HOMBA:12115 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query 'Superior frontal gyrus' and top1_name 'superior frontal gyrus'. | Exact match: query 'Superior frontal gyrus' is identical to top1_name 'superior frontal gyrus'. | Exact match, only case difference.
1_highconf_correct.csv
row 354
Superior paraolivary nucleus superior paraolivary nucleus
HOMBA:12463 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query 'Superior paraolivary nucleus' and top1_name 'superior paraolivary nucleus'. | Exact match: query 'Superior paraolivary nucleus' is identical to top1_name 'superior paraolivary nucleus'. | Exact match, only case difference.
1_highconf_correct.csv
row 355
Superior temporal gyrus superior temporal gyrus
HOMBA:12140 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query 'Superior temporal gyrus' and top1_name 'superior temporal gyrus'. | Exact match: query 'Superior temporal gyrus' is identical to top1_name 'superior temporal gyrus'. | Exact match, only case difference.
1_highconf_correct.csv
row 356
Suprageniculate nucleus suprageniculate nucleus
HOMBA:13044 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query 'Suprageniculate nucleus' and top1_name 'suprageniculate nucleus'. | Exact match: query 'Suprageniculate nucleus' is identical to top1_name 'suprageniculate nucleus'. | Exact match, only case difference.
1_highconf_correct.csv
row 357
Supraoptic decussation supraoptic decussation
HOMBA:13216 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case-insensitive). | Exact match between query and top1_name. | Exact match; supraoptic decussation is the same structure.
1_highconf_correct.csv
row 358
Supraoptic nucleus supraoptic nucleus
HOMBA:10481 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case-insensitive). | Exact match between query and top1_name. | Exact match; supraoptic nucleus is the same structure.
1_highconf_correct.csv
row 359
Tail of caudate nucleus tail of caudate nucleus (caudolateral division of the CP)
HOMBA:10337 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Core name matches query exactly; additional parenthetical is annotation. | Top1 includes the exact query phrase with additional qualifier; same structure. | Top1 names the tail of caudate nucleus with a parenthetical synonym, aligned.
1_highconf_correct.csv
row 360
Temporal pole temporal pole (temporopolar cortex)
HOMBA:12146 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Core name matches query exactly; additional parenthetical is annotation. | Top1 includes the exact query name with synonymous parenthetical; same structure. | Temporal pole and temporopolar cortex are synonymous; aligned.
1_highconf_correct.csv
row 361
Third ventricle third ventricle
HOMBA:10602 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match (case-insensitive). | Exact match between query and top1_name. | Exact match; third ventricle is the same structure.
1_highconf_correct.csv
row 362
Transverse Fibers transverse fibers
HOMBA:AA30879 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1 candidate (case-insensitive). | Exact match (case varies) for 'Transverse Fibers'. | Exact match except capitalization; same anatomical structure.
1_highconf_correct.csv
row 363
Trapezoid body trapezoid body
HOMBA:12796 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1 candidate. | Exact match for 'Trapezoid body'. | Exact match except capitalization; same structure.
1_highconf_correct.csv
row 364
Ventral anterior thalamic nucleus ventral anterior nucleus of thalamus
HOMBA:10417 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Accepted synonym: ventral anterior thalamic nucleus and ventral anterior nucleus of thalamus are the same structure. | Standard synonym: 'ventral anterior nucleus of thalamus' for 'ventral anterior thalamic nucleus'. | Synonymous phrase: 'ventral anterior thalamic nucleus' and 'ventral anterior nucleus of thalamus' refer to the same thalamic nucleus.
1_highconf_correct.csv
row 365
Ventral endopiriform claustrum ventral endopiriform nucleus
HOMBA:AA30854 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.85
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 names a nucleus, but query specifies 'claustrum'; likely different anatomical structures despite same modifier. | Query 'ventral endopiriform claustrum' likely refers to same structure as 'ventral endopiriform nucleus' in HOMBA. | 'Ventral endopiriform claustrum' is a synonym for ventral endopiriform nucleus in many neuroanatomical contexts.
1_highconf_correct.csv
row 366
Ventral hippocampal commissure ventral hippocampal commissure
HOMBA:12023 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1 candidate (case-insensitive). | Exact match for 'Ventral hippocampal commissure'. | Exact match except capitalization; same structure.
1_highconf_correct.csv
row 367
Ventral pallidum ventral pallidum
HOMBA:10345 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name. | top1_name 'ventral pallidum' exactly matches query 'Ventral pallidum' (case variant). | Exact match, case-insensitive: 'Ventral pallidum' = 'ventral pallidum'.
1_highconf_correct.csv
row 368
Ventral tegmental area ventral tegmental area
HOMBA:12261 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name. | top1_name 'ventral tegmental area' exactly matches query 'Ventral tegmental area' (case variant). | Exact match, case-insensitive: 'Ventral tegmental area' = 'ventral tegmental area'.
1_highconf_correct.csv
row 369
Ventromedial hypothalamic nucleus ventromedial hypothalamic nucleus
HOMBA:10488 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name. | top1_name 'ventromedial hypothalamic nucleus' exactly matches query 'Ventromedial hypothalamic nucleus' (case variant). | Exact match, case-insensitive: 'Ventromedial hypothalamic nucleus' = 'ventromedial hypothalamic nucleus'.
1_highconf_correct.csv
row 370
Xiphoid thalamic nucleus xiphoid thalamic nucleus
HOMBA:AA30277 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Exact match between query and top1_name. | top1_name 'xiphoid thalamic nucleus' exactly matches query 'Xiphoid thalamic nucleus' (case variant). | Exact match, case-insensitive: 'Xiphoid thalamic nucleus' = 'xiphoid thalamic nucleus'.
1_highconf_correct.csv
row 371
Dorsal Lateral Geniculate lateral geniculate nucleus (dorsal lateral geniculate nucleus)
HOMBA:10429 / score 0.9975
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Top1 includes 'dorsal lateral geniculate nucleus' as an alias, matching the query. | top1_name includes 'dorsal lateral geniculate nucleus' which is the full form of query 'Dorsal Lateral Geniculate'; synonymous. | Query 'Dorsal Lateral Geniculate' is a conventional shorthand for dorsal lateral geniculate nucleus, explicitly included in top1 name.
1_highconf_correct.csv
row 372
Ventral posterolateral thalamic nucleus ventral posterior lateral nucleus
HOMBA:10424 / score 0.9975
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Ventral posterolateral nucleus and ventral posterior lateral nucleus are synonymous; conventional word-order variant. | Top1 is a synonym: ventral posterior lateral nucleus is the same as ventral posterolateral thalamic nucleus. | Synonym: 'ventral posterolateral' equals 'ventral posterior lateral'. Same thalamic nucleus.
1_highconf_correct.csv
row 373
Ventral posteromedial thalamic nucleus ventral posterior medial nucleus
HOMBA:10425 / score 0.9975
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Ventral posteromedial nucleus and ventral posterior medial nucleus are synonymous; conventional word-order variant. | Top1 is a synonym: ventral posterior medial nucleus is the same as ventral posteromedial thalamic nucleus. | Synonym: 'ventral posteromedial' equals 'ventral posterior medial'. Same thalamic nucleus.
1_highconf_correct.csv
row 374
Lateral lemniscus, unspecified lateral lemniscus
HOMBA:12760 / score 0.997155
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Unspecific qualifier does not change anatomy; top1 names the same structure. | Top1 is the exact anatomical structure; 'unspecified' is a qualifier, not part of the anatomical name. | Top1 matches the core anatomical name; 'unspecified' is a source qualifier, not a structure difference.
1_highconf_correct.csv
row 375
Cingulate gyrus, posterior posterior cingulate cortex (PCC)
HOMBA:10285 / score 0.996027
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.97
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Posterior cingulate gyrus and posterior cingulate cortex refer to the same region; synonymous. | Posterior cingulate cortex is the same as posterior part of cingulate gyrus; synonymous. | Posterior cingulate cortex is standard term for posterior cingulate gyrus; used interchangeably.
1_highconf_correct.csv
row 376
Frontal orbital cortex, lateral lateral orbital frontal cortex (OFCl, area 12/47)
HOMBA:10205 / score 0.993571
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Lateral part of frontal orbital cortex maps directly to lateral orbital frontal cortex. | Lateral orbital frontal cortex is the same as lateral part of frontal orbital cortex. | 'Frontal orbital cortex, lateral' and 'lateral orbital frontal cortex' are word-order variants of same region.
1_highconf_correct.csv
row 377
Frontal orbital cortex, medial medial orbital frontal cortex (area 14)
HOMBA:10195 / score 0.989407
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
The top1 matches the query as a reordered synonym for medial orbital frontal cortex. | Query 'Frontal orbital cortex, medial' matches top1 'medial orbital frontal cortex (area 14)' as a synonym with acceptable word-order variation. | top1 'medial orbital frontal cortex' is a direct synonym for 'frontal orbital cortex, medial', matching the modifier medial.
1_highconf_correct.csv
row 378
Medial lemniscus, unspecified medial lemniscus
HOMBA:12763 / score 0.986071
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Directly matches medial lemniscus, 'unspecified' is just a qualifier. | Query 'Medial lemniscus, unspecified' is exactly matched by top1 'medial lemniscus'; 'unspecified' is a modifier, not a structural element. | top1 'medial lemniscus' is the same structure; 'unspecified' is a descriptive modifier not altering anatomical identity.
1_highconf_correct.csv
row 379
Sensory Root of the Trigeminal Nerve sensory root of trigeminal nerve
HOMBA:12867 / score 0.984079
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Directly matches sensory root of trigeminal nerve, minor typographical variation. | Query 'Sensory Root of the Trigeminal Nerve' and top1 'sensory root of trigeminal nerve' are essentially identical, differing only in article and word order. | top1 'sensory root of trigeminal nerve' matches query; minor singular/plural variation is inconsequential.
1_highconf_correct.csv
row 380
External globus pallidus external division of globus pallidus
HOMBA:10343 / score 0.978625
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
External globus pallidus is synonymous with external division of globus pallidus. | Query 'External globus pallidus' and top1 'external division of globus pallidus' are synonymous; 'division' is an accepted synonym. | top1 'external division of globus pallidus' is a synonymous term for 'external globus pallidus' (GPe).
1_highconf_correct.csv
row 382
Medial Geniculate medial geniculate nucleus
HOMBA:10434 / score 0.976667
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Query 'Medial Geniculate' is a common shorthand for the medial geniculate nucleus, which is the top1 candidate. | Medial geniculate nucleus is the standard term for Medial Geniculate; direct synonym. | "Medial Geniculate" is standard abbreviation for medial geniculate nucleus; top1 adds only the implicit term "nucleus".
1_highconf_correct.csv
row 383
Inferior colliculus, external cortex external shell (cortex) of inferior colliculus
HOMBA:12308 / score 0.965739
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.97
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Top1 name 'external shell (cortex) of inferior colliculus' is fully consistent with query 'Inferior colliculus, external cortex'. | External shell (cortex) of inferior colliculus matches query 'Inferior colliculus, external cortex'. | "Inferior colliculus, external cortex" directly matches top1 "external shell (cortex) of inferior colliculus".
1_highconf_correct.csv
row 384
Medial lemniscus decussation decussation of medial lemniscus
HOMBA:12732 / score 0.965498
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.97
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
'decussation of medial lemniscus' is a conventional word-order variant of 'Medial lemniscus decussation', same structure. | Decussation of medial lemniscus is word-order variant of Medial lemniscus decussation. | "Medial lemniscus decussation" and "decussation of medial lemniscus" are synonymous, differing only in word order.
1_highconf_correct.csv
row 385
Lateral lemniscus, dorsal nucleus dorsal nucleus of lateral lemniscus
HOMBA:12455 / score 0.963718
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.96
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Top1 'dorsal nucleus of lateral lemniscus' exactly matches the query 'Lateral lemniscus, dorsal nucleus'. | Dorsal nucleus of lateral lemniscus exactly matches query 'Lateral lemniscus, dorsal nucleus'. | "Lateral lemniscus, dorsal nucleus" exactly matches top1 "dorsal nucleus of lateral lemniscus".
1_highconf_correct.csv
row 386
Lateral lemniscus, intermediate nucleus intermediate nucleus of lateral lemniscus
HOMBA:12456 / score 0.963418
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.96
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Top1 'intermediate nucleus of lateral lemniscus' is a precise match for query 'Lateral lemniscus, intermediate nucleus'. | Intermediate nucleus of lateral lemniscus exactly matches query 'Lateral lemniscus, intermediate nucleus'. | "Lateral lemniscus, intermediate nucleus" exactly matches top1 "intermediate nucleus of lateral lemniscus".
1_highconf_correct.csv
row 387
Lateral lemniscus, ventral nucleus ventral nucleus of lateral lemniscus
HOMBA:12457 / score 0.959619
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Direct anatomical match; synonym with word order variation. | The top1_name is the standard form of the query's 'Lateral lemniscus, ventral nucleus'. | Query names the ventral nucleus of lateral lemniscus; top1 exactly matches.
1_highconf_correct.csv
row 388
Brachium Superior Colliculus brachium of superior colliculus
HOMBA:12328 / score 0.954229
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Direct match; same named entity with word order variation. | The top1_name matches the query with conventional preposition insertion; same structure. | Brachium of superior colliculus is the same structure; minor word-order variant.
1_highconf_correct.csv
row 389
Amygdalostriatal Transition amygdalostriatal transition area
HOMBA:10381 / score 0.951216
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Direct match; top1 expands query with 'area' which is part of the standard name. | The top1_name adds 'area' but refers to the same amygdalostriatal transition region. | Amygdalostriatal transition area is same entity; 'area' is conventional suffix.
1_highconf_correct.csv
row 390
Commissure of the superior colliculus commissure of superior colliculus
HOMBA:AA30487 / score 0.950756
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Direct match; minor article difference ('the' omitted) - accepted synonym. | The top1_name is a synonym without the article 'the'; same commissure of superior colliculus. | Same commissure; only missing 'the' from query.
1_highconf_correct.csv
row 391
Nucleus of the trapezoid body nucleus of trapezoid body
HOMBA:12458 / score 0.950614
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Direct match; minor article difference ('the' omitted) - accepted synonym. | The top1_name removes 'the' but denotes the identical nucleus of trapezoid body. | Same nucleus; minor stop-word difference.
1_highconf_correct.csv
row 392
Brachium of the superior colliculus brachium of superior colliculus
HOMBA:12328 / score 0.948553
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
top1_name is a direct synonym with 'the' omitted, standard variant. | Exact match after minor word-order variation ('of the' vs 'of'). | Minor word-order variation; same anatomical structure.
1_highconf_correct.csv
row 393
Dorsal raphe dorsal raphe nucleus
HOMBA:12223 / score 0.947851
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
top1_name is the full name of the same structure; 'dorsal raphe' commonly refers to the nucleus. | 'Dorsal raphe' is a standard abbreviation for dorsal raphe nucleus. | 'Dorsal raphe' is a standard shorthand for the dorsal raphe nucleus.
1_highconf_correct.csv
row 394
Bed nucleus of the stria terminalis bed nucleus of stria terminalis
HOMBA:10384 / score 0.947234
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Synonym with 'the' omitted; identical structure. | Minor synonym: 'bed nucleus of the stria terminalis' matches 'bed nucleus of stria terminalis'. | Difference only in a definite article; same entity.
1_highconf_correct.csv
row 395
Accumbens nucleus nucleus accumbens
HOMBA:10339 / score 0.94
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Standard word-order variant of the same structure. | 'Accumbens nucleus' and 'nucleus accumbens' are standard synonyms. | 'Accumbens nucleus' and 'nucleus accumbens' are equivalent terms.
1_highconf_correct.csv
row 396
Periaqueductal gray periaqueductal gray region
HOMBA:AA30359 / score 0.94
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.97
top1_name is a synonym including 'region', same structure. | 'Periaqueductal gray' and 'periaqueductal gray region' refer to the same structure. | 'Periaqueductal gray' and 'periaqueductal gray region' refer to the same structure.
1_highconf_correct.csv
row 397
Fimbria of the hippocampus fimbria
HOMBA:10575 / score 0.928336
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
top1_name 'fimbria' is a direct synonym for the query 'Fimbria of the hippocampus'. | Top1 'fimbria' is a standard short form for 'fimbria of the hippocampus', directly naming the same structure. | 'fimbria' is standard shorthand for fimbria of hippocampus, directly matching the query.
1_highconf_correct.csv
row 398
Lateral Posterior Thalamus lateral posterior nucleus of thalamus
HOMBA:10408 / score 0.904161
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
top1_name 'lateral posterior nucleus of thalamus' is a standard name for 'Lateral Posterior Thalamus'. | Top1 'lateral posterior nucleus of thalamus' matches the query 'Lateral Posterior Thalamus' as the specific nucleus. | 'Lateral Posterior Thalamus' is common shorthand for lateral posterior nucleus of thalamus.
1_highconf_correct.csv
row 399
Ventral Anterior Thalamus ventral anterior nucleus of thalamus
HOMBA:10417 / score 0.90125
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
top1_name 'ventral anterior nucleus of thalamus' matches the query 'Ventral Anterior Thalamus'. | Top1 'ventral anterior nucleus of thalamus' matches the query 'Ventral Anterior Thalamus' as the specific nucleus. | 'Ventral Anterior Thalamus' is common shorthand for ventral anterior nucleus of thalamus.
2_highconf_incorrect.csv
row 2
Area 43 caudal division of subcentral cortex (area 43)
HOMBA:AA30017 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
top1_name includes 'area 43' explicitly, aligning with query 'Area 43'. | Top1 includes 'area 43' explicitly, directly matching the query. | 'Area 43' matches Brodmann area 43, exactly the top1 name with its parenthetical synonym.
2_highconf_incorrect.csv
row 3
Middle frontal gyrus (middle) middle frontal gyrus
HOMBA:12116 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.7
top1_name 'middle frontal gyrus' directly matches the core query term, ignoring redundant modifier. | Top1 'middle frontal gyrus' matches the core query 'Middle frontal gyrus'; parenthetical 'middle' does not conflict. | Query likely specifies middle subregion of middle frontal gyrus; top1 is the whole gyrus, a broader parent.
2_highconf_incorrect.csv
row 4
Vestibular nucleus vestibular nuclei in pons
HOMBA:12448 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
'Vestibular nuclei in pons' is a conventional plural and locational variant of 'Vestibular nucleus'; synonymous. | Top1 matches the query; plural form and location specification are acceptable synonyms. | Query 'Vestibular nucleus' is commonly used for the vestibular nuclear complex; top1 adds location but refers to same structure.
2_highconf_incorrect.csv
row 8
Basal Nucleus basal ganglia (basal nuclei)
HOMBA:10332 / score 1.0
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 曖昧 medium / 0.6
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
'Basal Nucleus' can synonymously refer to 'basal ganglia (basal nuclei)', though singular/plural difference; plausible. | Query singular 'Basal Nucleus' may refer to nucleus basalis or be a variant for basal ganglia; top1 is basal ganglia. | Basal Nucleus is a synonym for basal ganglia; top1 is exactly the same anatomical entity.
3_unresolved_correct.csv
row 2
Frontal eye field frontal eye field of premotor cortex
HOMBA:AA30010 / score 0.617023
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.9
Top1 is a more descriptive synonym for the frontal eye field. | Top1 is an expanded name for the same structure (frontal eye field). | Frontal eye field is synonymous with frontal eye field of premotor cortex; same anatomical structure.
3_unresolved_correct.csv
row 18
Visual area V7 seventh visual area V7
HOMBA:267499179 / score 0.734583
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Query 'visual area V7' directly matches top1 'seventh visual area V7'. | Top1 'seventh visual area V7' is a direct synonym for 'Visual area V7'. | Top1 name 'seventh visual area V7' is a direct synonym for the query 'Visual area V7'.
3_unresolved_correct.csv
row 21
Forel's field H1 thalamic fasciculus (field H1)
HOMBA:10593 / score 0.766321
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Forel's field H1 is directly synonymous with thalamic fasciculus (field H1). | Forel's field H1 is synonymous with thalamic fasciculus (field H1). Exact match. | Forel's field H1 is synonymous with the thalamic fasciculus (field H1). Perfect match.
3_unresolved_correct.csv
row 22
Forel's field H2 lenticular fasciculus (field H2)
HOMBA:10585 / score 0.766321
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Forel's field H2 is directly synonymous with lenticular fasciculus (field H2). | Forel's field H2 is synonymous with lenticular fasciculus (field H2). Exact match. | Forel's field H2 is synonymous with the lenticular fasciculus (field H2). Perfect match.
3_unresolved_correct.csv
row 27
Reticular perithalamic nucleus reticular nucleus of thalamus
HOMBA:10464 / score 0.851793
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Reticular perithalamic nucleus and reticular nucleus of thalamus are the same structure; accepted synonym/variant. | Reticular perithalamic nucleus is synonym for reticular nucleus of thalamus. | 'Reticular perithalamic nucleus' and 'reticular nucleus of thalamus' are synonyms for the same perithalamic structure.
3_unresolved_correct.csv
row 32
CA4 (dentate hilus) CA4 region of hippocampus
HOMBA:10300 / score 0.88
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Top1 is CA4 region of hippocampus, which exactly matches the query 'CA4 (dentate hilus)'. | top1 is the same hippocampal subfield referred to by the query (CA4, also called dentate hilus). | CA4 is the dentate hilus; top1 'CA4 region of hippocampus' refers to the same structure, so aligned.
3_unresolved_correct.csv
row 34
Corticospinal tract (pyramids) corticospinal tract
HOMBA:12047 / score 0.88
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Top1 'corticospinal tract' directly names the core structure; 'pyramids' is a synonym/qualifier, not a separate entity. | Query 'Corticospinal tract (pyramids)' matches top1 'corticospinal tract'; parentheses indicate synonym, not a separate structure. | Query uses synonym 'pyramids' for corticospinal tract; top1 is the same structure, exact match.
3_unresolved_correct.csv
row 35
Edinger-Westphal nucleus (preganglionic) Edinger-Westphal nucleus (accessory oculomotor nucleus)
HOMBA:12197 / score 0.88
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 上位概念として整合 medium / 0.8
Top1 'Edinger-Westphal nucleus' matches the main query; parenthetical synonym is acceptable; 'preganglionic' is a modifier. | Query 'Edinger-Westphal nucleus (preganglionic)' matches top1 'Edinger-Westphal nucleus'; alternative name in parentheses does not change core identity. | Query specifies the preganglionic subdivision; top1 is the entire Edinger-Westphal nucleus, the broader parent structure.
3_unresolved_correct.csv
row 80
Transverse temporal gyri (Heschl's gyri) transverse temporal gyrus (Heschl's gyrus)
HOMBA:12144 / score 0.825032
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
Singular form matches plural query; conventional synonym. | top1 is the singular form but same anatomical structure as query; accepted synonym. | Query uses plural 'gyri', while top1 is singular 'gyrus', only covering one Heschl’s gyrus, not the full set.
3_unresolved_correct.csv
row 91
Uncus uncus of (para)hippocampal gyrus
HOMBA:12165 / score 0.224002
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Top1 directly names uncus with standard anatomical qualification; synonymous match. | 'Uncus' is synonymous with 'uncus of (para)hippocampal gyrus'; exact match. | Uncus directly matches uncus of parahippocampal gyrus; minor parenthetical spelling variant is conventional.
3_unresolved_correct.csv
row 93
V4 transitional area transitional fourth visual area (V4T)
HOMBA:AA30818 / score 0.465391
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Top1 is full standard name for V4 transitional area; terminology synonymous. | 'V4 transitional area' is equivalent to 'transitional fourth visual area (V4T)'. | V4 transitional area and transitional fourth visual area (V4T) are synonymous names for the same region.
3_unresolved_correct.csv
row 95
Subcallosal cortex subgenual (subcallosal) cingulate cortex (area 25)
HOMBA:10281 / score 0.494196
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Subcallosal cortex is directly synonymous with subgenual (subcallosal) cingulate cortex as named in top1. | Top1 is an accepted synonym for subcallosal cortex; 'subgenual (subcallosal) cingulate cortex' directly references subcallosal. | Subcallosal cortex is a direct synonym for subgenual (subcallosal) cingulate cortex (area 25), with 'subcallosal' explicitly listed as an alias in HOMBA.
3_unresolved_correct.csv
row 99
Meyer's loop (geniculocalcarine tract) Meyer's loop of optic radiation
HOMBA:266441617 / score 0.53796
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Direct synonym: Meyer's loop is also known as Meyer's loop of optic radiation. | Top1 is a direct synonym; 'Meyer's loop' is the same structure as 'Meyer's loop of optic radiation'. | Meyer's loop and Meyer's loop of optic radiation refer to the same specific part of the optic radiation; geniculocalcarine tract is a synonym for optic radiation.
3_unresolved_correct.csv
row 100
Premotor eye field frontal eye field of premotor cortex
HOMBA:AA30010 / score 0.552394
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.85
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.7
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.9
Premotor eye field is synonymous with frontal eye field of premotor cortex. | Top1 appears synonymous; 'premotor eye field' is commonly considered part of the frontal eye field in premotor cortex. | Premotor eye field denotes the frontal eye field located in premotor cortex, which matches 'frontal eye field of premotor cortex'.
3_unresolved_correct.csv
row 105
Medial cerebellar peduncle middle cerebellar peduncle (brachium pontis)
HOMBA:12768 / score 0.607109
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 不整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
'Medial cerebellar peduncle' is a synonym for 'middle cerebellar peduncle'; top1 matches the intended structure. | Query 'Medial cerebellar peduncle' is not a standard term; top1 is 'middle cerebellar peduncle', a distinct structure. | 'Medial' is a conventional synonym for 'middle' in reference to cerebellar peduncle; same structure as top1.
3_unresolved_correct.csv
row 106
Amygdaloid area, unspecified regions of amygdaloid complex
HOMBA:AA30222 / score 0.610807
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 medium / 0.7
Query is generic 'amygdaloid area'; top1 broadly covers the region, consistent. | Top1 'regions of amygdaloid complex' is a direct synonym for the general 'amygdaloid area' query. | Query 'amygdaloid area, unspecified' is vague but top1 'regions of amygdaloid complex' covers the same general concept acceptably.
3_unresolved_correct.csv
row 122
Anterior olfactory area anterior olfactory nuclear complex
HOMBA:10308 / score 0.635146
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
'Anterior olfactory nuclear complex' is a synonym for the anterior olfactory area/ nucleus; top1 directly matches the query. | Anterior olfactory area and anterior olfactory nuclear complex are synonymous names for the same structure. | Anterior olfactory area and anterior olfactory nuclear complex are synonymous terms for the same anatomical region.
3_unresolved_correct.csv
row 124
Secondary motor area premotor cortex (area 6, area FB, secondary motor cortex)
HOMBA:10168 / score 0.640938
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Query synonym 'Secondary motor area' matches top1 'secondary motor cortex' directly. | top1_name includes 'secondary motor cortex' which is a direct synonym for 'Secondary motor area'. | top1 includes 'secondary motor cortex' which is an exact accepted synonym for 'Secondary motor area'.
3_unresolved_correct.csv
row 128
Paraventricular Hypothalamus paraventricular nucleus of hypothalamus
HOMBA:10476 / score 0.655644
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Query 'Paraventricular Hypothalamus' and top1 'paraventricular nucleus of hypothalamus' are synonyms. | 'Paraventricular Hypothalamus' refers to the paraventricular nucleus; top1 'paraventricular nucleus of hypothalamus' is the same structure. | Query 'Paraventricular Hypothalamus' is a common shorthand for the paraventricular nucleus of hypothalamus, an exact match.
3_unresolved_correct.csv
row 137
Ventral striatal region (unspecified) ventral striatum (STRv)
HOMBA:AA30195 / score 0.677984
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Ventral striatal region (unspecified) directly corresponds to ventral striatum; top1 is an exact match. | 'ventral striatal region (unspecified)' is synonymous with ventral striatum; top1 directly matches | Ventral striatal region and ventral striatum are synonymous; top1 directly names the same structure.
3_unresolved_correct.csv
row 138
Amygdaloid area (unspecified) regions of amygdaloid complex
HOMBA:AA30222 / score 0.678214
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 上位概念として整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 medium / 0.8
Amygdaloid area refers to the amygdala; top1 'regions of amygdaloid complex' is the broader parent grouping. | 'amygdaloid area (unspecified)' is synonymous with regions of amygdaloid complex; direct match | Amygdaloid area (unspecified) likely maps to entire amygdala; 'regions of amygdaloid complex' appears to be a grouping synonym in HOMBA.
3_unresolved_correct.csv
row 155
Pontine Reticulum Caudal pontine reticular nucleus, caudal division
HOMBA:12493 / score 0.719448
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Pontine Reticulum Caudal is synonymous with pontine reticular nucleus, caudal division. | Pontine reticular nucleus caudal division matches query. | 'Pontine Reticulum Caudal' and 'pontine reticular nucleus, caudal division' denote the same anatomical entity; caudal is the accepted directional term.
3_unresolved_correct.csv
row 156
Molecular cell layer of the cerebellum molecular layer of cerebellar cortex
HOMBA:AA30427 / score 0.719816
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Molecular cell layer of cerebellum is synonymous with molecular layer of cerebellar cortex. | Molecular cell layer of cerebellum equals molecular layer of cerebellar cortex. | 'Molecular cell layer of the cerebellum' is a synonym for the molecular layer of the cerebellar cortex; exact match.
3_unresolved_correct.csv
row 157
Central amygdaloid nucleus central nucleus of amygdala
HOMBA:10363 / score 0.729451
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Central amygdaloid nucleus is synonymous with central nucleus of amygdala. | Central amygdaloid nucleus and central nucleus of amygdala are synonyms. | 'Central amygdaloid nucleus' and 'central nucleus of amygdala' are synonymous terms for the same structure.
3_unresolved_correct.csv
row 158
Pontine Reticulum Oral pontine reticular nucleus, rostral division
HOMBA:12494 / score 0.733874
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.85
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Pontine Reticulum Oral is synonymous with pontine reticular nucleus, rostral division. | Oral likely means rostral; top1 rostral division matches query. | 'Pontine Reticulum Oral' corresponds to rostral division of pontine reticular nucleus; 'oral' is used interchangeably with 'rostral' in this context.
3_unresolved_correct.csv
row 168
Paralaminar amygdaloid nucleus paralaminar nucleus of amygdala
HOMBA:10370 / score 0.752254
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
top1 is a direct synonym for the queried paralaminar amygdaloid nucleus. | Top1 is a direct synonym (paralaminar nucleus of amygdala) for the query. | Top1 name 'paralaminar nucleus of amygdala' is synonymous with 'Paralaminar amygdaloid nucleus'.
3_unresolved_correct.csv
row 169
Medial geniculate body, medial division medial division of medial geniculate nucleus
HOMBA:10439 / score 0.752733
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
top1 directly names the same anatomical structure with accepted synonym (body vs nucleus) and matches the division specification. | Top1 is a direct synonym: medial division of medial geniculate nucleus exactly matches medial geniculate body, medial division. | "Medial geniculate body, medial division" and "medial division of medial geniculate nucleus" are accepted synonyms (body = nucleus), exact match.
3_unresolved_correct.csv
row 174
Cingulate gyrus, anterior anterior cingulate cortex (ventromedial prefrontal cortex)
HOMBA:10278 / score 0.757957
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ high / 0.9
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.96
Query specifies anterior cingulate gyrus; top1 is anterior cingulate cortex (cortical part of that gyrus), so it is a component rather than the full structure. | anterior cingulate cortex is a standard synonym for anterior cingulate gyrus | Query: cingulate gyrus, anterior; top1: anterior cingulate cortex—directly matches the intended anterior subdivision.
3_unresolved_correct.csv
row 177
Posterior pituitary posterior lobe of pituitary body (neurohypophysis)
HOMBA:AA30783 / score 0.762133
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Posterior pituitary and posterior lobe of pituitary body (neurohypophysis) are synonymous terms. | posterior lobe of pituitary is exact synonym for posterior pituitary | Posterior pituitary is a well-established synonym for the posterior lobe of the pituitary body (neurohypophysis).
3_unresolved_correct.csv
row 186
Medial geniculate body, dorsal division dorsal (rostral) division of medial geniculate nucleus
HOMBA:10435 / score 0.774841
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
top1 is a synonym and matches the dorsal division of medial geniculate body/nucleus. | Top1 directly names the dorsal division of medial geniculate nucleus, synonymous with query. | Top1 'dorsal (rostral) division of medial geniculate nucleus' directly matches query 'Medial geniculate body, dorsal division'.
3_unresolved_correct.csv
row 188
Medial geniculate body, ventral division ventral (caudal) division of medial geniculate nucleus
HOMBA:10438 / score 0.774918
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
top1 is a synonym and matches the ventral division of medial geniculate body/nucleus. | Top1 directly names the ventral division of medial geniculate nucleus, consistent with query. | Top1 'ventral (caudal) division of medial geniculate nucleus' is exact match for 'Medial geniculate body, ventral division'.
3_unresolved_correct.csv
row 190
Cerebellum, unspecified cerebellum
HOMBA:10656 / score 0.778409
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Query 'cerebellum, unspecified' matches top1 'cerebellum'; 'unspecified' is a clinical modifier. | Query is 'cerebellum, unspecified'; top1 'cerebellum' is exact anatomical match. | Query is 'Cerebellum, unspecified'; top1 'cerebellum' refers to the same organ. The modifier 'unspecified' does not alter the core identity.
3_unresolved_correct.csv
row 192
Stria medullaris stria medullaris of thalamus
HOMBA:10590 / score 0.782738
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Query 'stria medullaris' matches top1 'stria medullaris of thalamus'; accepted synonym. | Top1 is full name of the same structure, aligned. | 'Stria medullaris' standardly denotes stria medullaris of thalamus; the top1 adds only the conventional full name.
3_unresolved_correct.csv
row 194
Parietal association cortex, posterior area posterior parietal cortex
HOMBA:10214 / score 0.787578
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
posterior parietal cortex is a direct synonym for parietal association cortex posterior area | Posterior parietal cortex is a direct anatomical synonym for parietal association cortex, posterior area. | Query ‘Posterior area of parietal association cortex’ matches ‘posterior parietal cortex’, a widely accepted synonym for that region.
3_unresolved_correct.csv
row 195
Posterior Commissural Nuclei interstitial nucleus of posterior commissure (nucleus of posterior commissure)
HOMBA:12194 / score 0.788483
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ high / 0.9
nuclei of posterior commissure matches query; top1 includes both singular and plural forms | Interstitial nucleus of posterior commissure (nucleus of posterior commissure) matches the query Posterior Commissural Nuclei. | Query ‘Posterior Commissural Nuclei’ generally covers multiple nuclei; top1 is one specific nucleus (interstitial nucleus), thus narrower.
3_unresolved_correct.csv
row 196
Commissural stria terminalis commissural branch of stria terminalis
HOMBA:AA30882 / score 0.795711
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
commissural branch of stria terminalis is the standard term for the commissural stria terminalis | Commissural branch of stria terminalis is a direct match for commissural stria terminalis. | ‘Commissural stria terminalis’ and ‘commissural branch of stria terminalis’ refer to the same structure.
3_unresolved_correct.csv
row 198
Transverse fibers of the pons transverse fibers of pons (pontine crossing tract)
HOMBA:12795 / score 0.80058
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
transverse fibers of pons is exactly the same structure as query | Transverse fibers of pons (pontine crossing tract) is an exact synonym for transverse fibers of the pons. | ‘Transverse fibers of the pons’ directly matches top1, which includes the synonymous term ‘pontine crossing tract’.
3_unresolved_correct.csv
row 200
Preoptic area preoptic region of HTH
HOMBA:10468 / score 0.815
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.97
'preoptic region of HTH' is synonymous with 'Preoptic area'; direct match. | Top1 'preoptic region of HTH' is a synonymous term for 'Preoptic area' (hypothalamus region). Direct match. | 'Preoptic area' is a standard name for the preoptic region of the hypothalamus. Top1 matches exactly.
3_unresolved_correct.csv
row 202
Retrosplenial granular area granular retrosplenial cortex (area 29, RSg)
HOMBA:10325 / score 0.816308
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.97
'granular retrosplenial cortex' is an accepted synonym for 'Retrosplenial granular area'. | Top1 'granular retrosplenial cortex' is a synonym for 'Retrosplenial granular area', same structure. | 'Retrosplenial granular area' is synonymous with granular retrosplenial cortex (area 29). Perfect match.
3_unresolved_correct.csv
row 203
Basal forebrain region, unspecified basal forebrain
HOMBA:10349 / score 0.8171
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.97
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.97
'basal forebrain' is equivalent to 'Basal forebrain region, unspecified'; same structure. | Top1 'basal forebrain' matches the query 'Basal forebrain region, unspecified' – 'unspecified' does not change identity. | 'Basal forebrain region, unspecified' is essentially the same structure as 'basal forebrain'. The modifier 'unspecified' does not change the identity.
3_unresolved_correct.csv
row 204
Medial geniculate body, marginal zone marginal zone of medial geniculate nucleus
HOMBA:266441523 / score 0.81798
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
top1 directly matches the marginal zone of the medial geniculate body/nucleus. | Top1 exactly matches query as synonym (marginal zone of medial geniculate nucleus vs medial geniculate body marginal zone). | Top1 is exact synonym for the marginal zone of medial geniculate body, matching the query's compound description.
3_unresolved_correct.csv
row 205
Medial geniculate complex (marginal zone) marginal zone of medial geniculate nucleus
HOMBA:266441523 / score 0.818624
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.97
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
top1 directly matches the marginal zone component of the medial geniculate complex. | Top1 is direct synonym for the queried subdivision (marginal zone of medial geniculate complex). | Top1 exactly matches the marginal zone of medial geniculate complex indicated by the parenthetical.
3_unresolved_correct.csv
row 207
Posterior Interstitial Nucleus interstitial nucleus of posterior commissure (nucleus of posterior commissure)
HOMBA:12194 / score 0.821001
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
top1 is the same anatomical entity as the posterior interstitial nucleus. | Top1 matches the query as synonymous term (interstitial nucleus of posterior commissure). | Top1 is the standard anatomical term for Posterior Interstitial Nucleus (interstitial nucleus of posterior commissure).
3_unresolved_correct.csv
row 210
Olfactory bulb, unspecified olfactory bulb
HOMBA:10307 / score 0.841346
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Direct match: olfactory bulb matches query, 'unspecified' is a non-anatomical qualifier. | Query 'Olfactory bulb, unspecified' exactly matches top1 'olfactory bulb'. Aligned. | Exact match; 'unspecified' adds no specificity.
3_unresolved_correct.csv
row 212
External medullary lamina, unspecified external medullary lamina of thalamus
HOMBA:12038 / score 0.843619
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
External medullary lamina is the same structure; 'unspecified' does not affect identity. | Query 'External medullary lamina, unspecified' exactly matches top1 with specification 'of thalamus'. Aligned. | External medullary lamina is the same structure, top1 adds clarifying 'of thalamus'.
3_unresolved_correct.csv
row 213
Spinal Trigeminal Nucleus Oral spinal nucleus of trigeminal nerve, rostral subnucleus
HOMBA:12447 / score 0.848095
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.7
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Rostral subnucleus is synonymous with oral subnucleus of spinal trigeminal nucleus; acceptable match. | Query 'Spinal Trigeminal Nucleus Oral' refers to oral subnucleus; top1 'spinal nucleus of trigeminal nerve, rostral subnucleus' is synonymous. Aligned, though matched_query suggests possible confusion. | Oral subnucleus of spinal trigeminal nucleus is equivalent to rostral subnucleus.
3_unresolved_correct.csv
row 215
Copula of the Pyramis lobule VIIIB (biventral lobule, part 2, copula pyramis)
HOMBA:AA30418 / score 0.852241
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Copula of the Pyramis is synonymous with copula pyramis, included in top1 name. | top1_name includes 'copula pyramis' which is a direct synonym for 'Copula of the Pyramis'. | Copula of the Pyramis directly maps to lobule VIIIB, as 'copula pyramis' is explicitly listed in the top1 name as a synonym.
3_unresolved_correct.csv
row 216
Lateral orbital area lateral orbital gyrus
HOMBA:12125 / score 0.854066
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.9
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.9
Pass 3 / DeepSeek pro / prompt C 整合 medium / 0.85
Lateral orbital area and lateral orbital gyrus are commonly used synonyms. | 'lateral orbital gyrus' is the standard anatomical name for 'lateral orbital area', considered synonymous. | In standard neuroanatomy, lateral orbital area and lateral orbital gyrus are equivalent structures.
3_unresolved_correct.csv
row 223
Septum Diagonal Band diagonal band
HOMBA:12034 / score 0.856667
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 部分一致・狭すぎ medium / 0.75
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 medium / 0.85
Top1 'diagonal band' covers only part of query 'Septum Diagonal Band'; missing septum component. | Top1 'diagonal band' is a synonym/abbreviation for the diagonal band of Broca, matching the query structure. | 'Septum Diagonal Band' is a variant term for the diagonal band; top1 'diagonal band' names the correct entity despite extra descriptor.
3_unresolved_correct.csv
row 225
Inferior colliculus, commissure commissure of inferior colliculus
HOMBA:12333 / score 0.865278
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Top1 is a conventional word-order variant of the same anatomical structure (commissure of inferior colliculus). | Exact synonym after word-order adjustment: 'commissure of inferior colliculus'. | Same structure, different word order.
3_unresolved_correct.csv
row 227
Inferior colliculus, brachium brachium of inferior colliculus
HOMBA:12327 / score 0.874145
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Top1 is a conventional word-order variant of the same structure (brachium of inferior colliculus). | Exact synonym: 'brachium of inferior colliculus' matches query. | Same structure, different word order.
3_unresolved_correct.csv
row 238
Lateral Dorsal Thalamus lateral dorsal nucleus of thalamus
HOMBA:10396 / score 0.889352
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Top1 'lateral dorsal nucleus of thalamus' is a direct and standard name for 'Lateral Dorsal Thalamus'. | Query 'Lateral Dorsal Thalamus' commonly refers to the lateral dorsal nucleus of thalamus; top1 is exact synonym. | Lateral Dorsal Thalamus is an accepted synonym for the lateral dorsal nucleus of thalamus; exact match.
3_unresolved_correct.csv
row 239
Central Medial Thalamus central medial nucleus of thalamus
HOMBA:10445 / score 0.891381
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Query 'Central Medial Thalamus' directly corresponds to the accepted anatomical term 'central medial nucleus of thalamus'. | Query 'Central Medial Thalamus' matches accepted synonym 'central medial nucleus of thalamus'. | Top1 is formal name of same thalamic nucleus, central medial nucleus.
3_unresolved_correct.csv
row 240
Ventral Medial Thalamus ventral medial nucleus of thalamus
HOMBA:10427 / score 0.891381
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Query 'Ventral Medial Thalamus' matches the standard term 'ventral medial nucleus of thalamus'. | Query 'Ventral Medial Thalamus' matches accepted synonym 'ventral medial nucleus of thalamus'. | Top1 is formal name of same thalamic nucleus, ventral medial nucleus.
3_unresolved_correct.csv
row 241
Pyramidal Tract Decussation pyramidal decussation
HOMBA:12772 / score 0.895779
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Query 'Pyramidal Tract Decussation' is synonymous with top1 'pyramidal decussation'. | Query 'Pyramidal Tract Decussation' matches common alternate name 'pyramidal decussation'. | Top1 'pyramidal decussation' is standard term for pyramidal tract decussation.
3_unresolved_correct.csv
row 251
Ventral posterior nucleus of the thalamus, parvicellular part parvicellular nucleus of posterior thalamus
HOMBA:AA30312 / score 0.780837
整合 medium
2/3
2-1
majority_vote+low_certainty
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 曖昧 low / 0.5
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Query specifies parvicellular part of ventral posterior thalamus; top1 names the same parvicellular nucleus of posterior thalamus. | Query specifies ventral posterior nucleus parvicellular part; top1 omits 'ventral' and may be a different structure or synonym. | Query is ventral posterior nucleus parvicellular part; top1 'parvicellular nucleus of posterior thalamus' is the same subnucleus, matched alias confirms equivalence.
3_unresolved_correct.csv
row 260
Dorsal Paragigantocellular Reticular Nucleus dorsal paragigantocellular nucleus
HOMBA:12628 / score 0.893629
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.85
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
top1 is a standard name for the structure; 'Reticular' is an accepted additional descriptor, not a different structure | Top1 omits 'Reticular' but refers to the same nucleus; accepted synonym. | top1 'dorsal paragigantocellular nucleus' matches query; 'reticular' commonly omitted synonym.
3_unresolved_correct.csv
row 265
Reticular (pre)thalamic nucleus, unspecified reticular nucleus of thalamus
HOMBA:10464 / score 0.9375
整合 medium
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.7
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.9
Top1 is a synonym for reticular nucleus of thalamus; query uses (pre)thalamic variant but core structure matches. | Top1 matches reticular nucleus of thalamus; query includes 'pre' and 'unspecified' but core structure is same. | Reticular thalamic nucleus is a direct synonym for reticular nucleus of thalamus; (pre) likely irrelevant.
3_unresolved_correct.csv
row 267
Reticular (pre)thalamic nucleus reticular nucleus of thalamus
HOMBA:10464 / score 1.0
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 整合 medium / 0.8
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.9
Top1 is a synonym for reticular nucleus of thalamus; query uses (pre)thalamic variant but core structure matches. | Top1 matches reticular nucleus of thalamus; query adds '(pre)' but core structure aligned. | Reticular (pre)thalamic nucleus matches reticular nucleus of thalamus; the parenthetical does not change identity.
3_unresolved_correct.csv
row 269
Ventral Lateral X Thalamus ventral lateral nucleus of thalamus
HOMBA:10420 / score 0.443893
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
top1_name 'ventral lateral nucleus of thalamus' is a direct synonym/standardization of query 'Ventral Lateral X Thalamus' (likely 'X' is a typo/stand-in for nucleus). | top1 is the standard name for the structure implied by 'Ventral Lateral X Thalamus', assuming 'X' indicates nucleus. | Query likely intended ventral lateral nucleus of thalamus; 'X' may be a placeholder for 'nucleus'. Top1 directly matches.
3_unresolved_correct.csv
row 271
Subcallosal cortex subgenual (subcallosal) cingulate cortex (area 25)
HOMBA:10281 / score 0.494196
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 部分一致・狭すぎ medium / 0.7
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Subcallosal cortex is synonymous with subgenual (subcallosal) cingulate cortex; top1 includes the query term in parentheses. | Subcallosal cortex is a broad region; top1 specifies subgenual cingulate area 25, a narrower subdivision. | Subcallosal cortex is a standard synonym for subcallosal cingulate cortex (area 25), directly aligned.
3_unresolved_correct.csv
row 277
Trapezoid Bundle Region trapezoid body
HOMBA:12796 / score 0.537171
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 medium / 0.7
Trapezoid body is synonymous with trapezoid bundle; top1 directly matches the query. | Trapezoid body is a conventional synonym for the trapezoid bundle region; they refer to the same structure. | Trapezoid bundle and trapezoid body are likely synonyms; 'region' may be a loose spatial term, but the core structure aligns.
3_unresolved_correct.csv
row 279
Prelimbic area pregenual cingulate cortex (area 32, prelimbic cortex)
HOMBA:10280 / score 0.542288
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Top1 explicitly includes prelimbic cortex, a direct synonym for prelimbic area. | top1 explicitly includes 'prelimbic cortex' as synonym, directly matching query. | Top1 name includes 'prelimbic cortex' as alias, directly matching query 'Prelimbic area'. Aligned synonym.
3_unresolved_correct.csv
row 280
Infralimbic area rostrodorsal division of A25 (infralimbic cortex)
HOMBA:AA30037 / score 0.561688
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 部分一致・狭すぎ medium / 0.8
Top1 includes infralimbic cortex, a direct synonym for infralimbic area. | top1 includes 'infralimbic cortex' in parentheses, matching query directly. | Top1 specifies rostrodorsal division of A25, narrower than the entire infralimbic area. Partial, not full match.
4_unresolved_incorrect.csv
row 3
Prefrontal area 46 rostroventral division of DFC (area 46, DFCv)
HOMBA:10184 / score 0.629168
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Top1 includes 'area 46' as an alias and is a division of DFC, consistent with 'Prefrontal area 46'. | Top1 includes area 46, consistent with query Prefrontal area 46. | Prefrontal area 46 matches; top1 includes 'area 46' as its synonym, same prefrontal region.
4_unresolved_incorrect.csv
row 8
Parietal area PF rostral division of IPC (IPCr, area 40, area PF)
HOMBA:10226 / score 0.661335
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Parietal area PF matches alias 'area PF' included in top1 name; consistent anatomical structure. | Top1 includes 'area PF' as a synonym; query 'Parietal area PF' matches exactly to the same anatomical structure. | Top1 'rostral division of IPC (area PF)' directly names the query's 'Parietal area PF'; accepted synonym/expansion.
4_unresolved_incorrect.csv
row 17
A8 catecholaminergic cell group A8 dopamine cell group
HOMBA:AA30843 / score 0.674151
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
A8 dopamine cell group is an accepted synonym for A8 catecholaminergic cell group. | Query 'A8 catecholaminergic cell group' matches top1 'A8 dopamine cell group' as dopamine is a catecholamine; synonymous. | A8 cell group is dopaminergic; 'A8 dopamine cell group' is the accepted specific name, so it aligns with 'catecholaminergic' query.
4_unresolved_incorrect.csv
row 18
Somatosensory area 1 area 1 of primary somatosensory cortex
HOMBA:AA30014 / score 0.679416
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Area 1 of primary somatosensory cortex is the standard name for somatosensory area 1. | Query 'Somatosensory area 1' is exactly 'area 1 of primary somatosensory cortex'; direct match. | Somatosensory area 1 is area 1 of primary somatosensory cortex; top1 directly matches the query.
4_unresolved_incorrect.csv
row 19
Somatosensory area 2 area 2 of primary somatosensory cortex
HOMBA:AA30015 / score 0.679416
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Area 2 of primary somatosensory cortex is the standard name for somatosensory area 2. | Query 'Somatosensory area 2' is exactly 'area 2 of primary somatosensory cortex'; direct match. | Somatosensory area 2 is area 2 of primary somatosensory cortex; top1 directly matches the query.
4_unresolved_incorrect.csv
row 29
Area 55b area 55b of premotor cortex
HOMBA:AA30011 / score 0.468125
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.98
Area 55b directly matches area 55b of premotor cortex. | Direct match; top1 specifies the same area with additional context. | Area 55b is the same entity as area 55b of premotor cortex, just a longer explicit name.
4_unresolved_incorrect.csv
row 74
Forel's field H prerubral field (field H3)
HOMBA:AA30325 / score 0.51772
整合 medium
2/3
2-1
majority_vote
Pass 1 / DeepSeek flash / prompt A 不整合 medium / 0.7
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 medium / 0.7
Forel's field H is not conventionally equivalent to prerubral field (field H3); likely mismatched ontology entry. | top1 is a synonym for Forel's field H (prerubral field), also known as field H3. | Forel's field H is the prerubral field; top1 includes 'prerubral field' as core name, but unconventional 'H3' designation adds slight ambiguity.
4_unresolved_incorrect.csv
row 93
Temporal area TF lateral division of PHC (area TF)
HOMBA:10260 / score 0.568748
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.97
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Temporal area TF is synonymous with lateral division of PHC (area TF). | 'Temporal area TF' matches 'lateral division of PHC (area TF)', a known synonym for parahippocampal area TF. | Area TF is a subdivision of PHC, top1 explicitly names 'area TF' in 'lateral division of PHC (area TF)', exact match.
4_unresolved_incorrect.csv
row 108
Saginum Nucleus sagulum nucleus (nucleus sagulum)
HOMBA:12313 / score 0.610833
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.97
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
top1 correctly identifies the sagulum nucleus despite the misspelling 'Saginum' in the query. | Top1 is correct anatomical structure (sagulum nucleus) despite query typo 'Saginum'. | Query 'Saginum' is a clear misspelling of sagulum; top1 is the correct nucleus. Consistent despite typo.
4_unresolved_incorrect.csv
row 117
Perirhinal area 35 perirhinal cortex (area 35)
HOMBA:10320 / score 0.643533
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 1.0
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
Top1 directly names perirhinal cortex (area 35), which matches the query exactly. | Query 'Perirhinal area 35' directly matches top1 'perirhinal cortex (area 35)'. Synonym and exact structure. | Perirhinal area 35 is a synonym for perirhinal cortex (area 35).
4_unresolved_incorrect.csv
row 127
Septimbrial nucleus septofimbrial nucleus
HOMBA:13032 / score 0.672904
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Septimbrial nucleus and septofimbrial nucleus are accepted synonyms. | Septimbrial is a variant spelling of septofimbrial; top1 names the same nucleus. | 'Septimbrial' is a variant spelling of septofimbrial nucleus; they refer to the same anatomical entity.
4_unresolved_incorrect.csv
row 139
Stria medullaris thalami stria medullaris of thalamus
HOMBA:10590 / score 0.7255
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 1.0
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.99
top1 is the English equivalent of the Latin query; direct synonym. | Stria medullaris of thalamus is the standard English equivalent of Stria medullaris thalami; same structure. | Synonym: Stria medullaris thalami = stria medullaris of thalamus.
4_unresolved_incorrect.csv
row 146
Kolliker-Fuse Nucleus Koelliker-Fuse nucleus
HOMBA:12518 / score 0.756395
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Koelliker-Fuse nucleus is a spelling variant (ö→oe) of Kolliker-Fuse nucleus; same structure. | Koelliker-Fuse nucleus is a standard spelling variant of Kolliker-Fuse nucleus. Accepted synonym. | Kolliker-Fuse and Koelliker-Fuse are spelling variants of the same pontine nucleus.
4_unresolved_incorrect.csv
row 148
Intergeniculate leaflet intergeniculate leaf
HOMBA:AA30305 / score 0.773333
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 medium / 0.8
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Intergeniculate leaflet and intergeniculate leaf likely refer to the same structure; leaf is a variant. | Intergeniculate leaflet and intergeniculate leaf are synonyms; same anatomical structure. | Intergeniculate leaflet and intergeniculate leaf are synonymous names for the same structure.
4_unresolved_incorrect.csv
row 168
Locus-coeruleus Region nucleus coeruleus (locus coeruleus)
HOMBA:12499 / score 0.8084
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.98
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.99
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
Top1 is nucleus coeruleus (locus coeruleus), equivalent to query Locus-coeruleus Region. | Locus-coeruleus Region directly matches 'nucleus coeruleus (locus coeruleus)' as accepted synonym. | Locus-coeruleus Region with top1 nucleus coeruleus (locus coeruleus) is an exact match; region includes nucleus.
4_unresolved_incorrect.csv
row 173
Medial Emminence medial eminence
HOMBA:12820 / score 0.819921
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.95
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.98
Pass 3 / DeepSeek pro / prompt C 整合 high / 1.0
query is misspelling of 'medial eminence'; top1 matches the correct structure | Top1 is correct spelling of same structure; query misspelling 'Emminence'. | Query 'Medial Emminence' is a misspelling of 'medial eminence', a perfect synonym for the top1 structure.
4_unresolved_incorrect.csv
row 183
Primary somatosensory area, barrel field barrel field of S1fm (rodents)
HOMBA:AA30880 / score 0.314206
整合 high
3/3
3-0
stable
Pass 1 / DeepSeek flash / prompt A 整合 high / 0.99
Pass 2 / DeepSeek flash / prompt B 整合 high / 0.95
Pass 3 / DeepSeek pro / prompt C 整合 high / 0.95
Query 'Primary somatosensory area, barrel field' matches top1 'barrel field of S1fm' which is synonymous for rodents. | Barrel field of S1fm is synonymous with Primary somatosensory area barrel field. | Query 'Primary somatosensory area, barrel field' refers to barrel field of primary somatosensory cortex; top1 'barrel field of S1fm (rodents)' is an aligned synonym.