ReLTEx: Reliable LLM-based Taxonomy Expansion

arXiv cs.CL Papers

Summary

ReLTEx is a framework for reliable LLM-based taxonomy expansion that combines LLM-driven candidate generation with structure-aware validation and recursive expansion control to reduce hallucinations and improve consistency. Experiments on benchmark taxonomies show it produces more reliable and semantically coherent expansions.

arXiv:2608.10970v1 Announce Type: new Abstract: Recent advances in Large Language Models (LLMs) have demonstrated strong capabilities in generating semantically relevant concepts and relations, making them promising tools for taxonomy enrichment. However, directly relying on LLM-generated expansions often leads to noisy, redundant, or hierarchically inconsistent structures, limiting their reliability for automated taxonomy expansion. In this paper, we present ReLTEx, a framework for reliable LLM-based taxonomy expansion. ReLTEx combines LLM-driven candidate generation with structure-aware validation and recursive expansion control to improve the consistency and quality of generated taxonomies by reducing hallucinations. We evaluate the proposed framework using benchmark taxonomies under a masked taxonomy expansion setting and compare multiple validation strategies. Experimental results, supported by both adapted evaluation metrics and human evaluation, demonstrate that ReLTEx produces more reliable and semantically coherent taxonomy expansions.
Original Article
View Cached Full Text

Cached at: 08/12/26, 08:38 AM

# ReLTEx: Reliable LLM-based Taxonomy Expansion
Source: [https://arxiv.org/html/2608.10970](https://arxiv.org/html/2608.10970)
Zeinab GhamlouchAffiliation:Télécom Paris, Institut Polytechnique de Paris, Francezeinab\.b\.ghamlouch@gmail\.commehwish\.alam@telecom\-paris\.frMehwish AlamAffiliation:Télécom Paris, Institut Polytechnique de Paris, Francezeinab\.b\.ghamlouch@gmail\.commehwish\.alam@telecom\-paris\.fr

###### Abstract

Recent advances in Large Language Models \(LLMs\) have demonstrated strong capabilities in generating semantically relevant concepts and relations, making them promising tools for taxonomy enrichment\. However, directly relying on LLM\-generated expansions often leads to noisy, redundant, or hierarchically inconsistent structures, limiting their reliability for automated taxonomy expansion\. In this paper, we presentReLTEx, a framework for reliable LLM\-based taxonomy expansion\. ReLTEx combines LLM\-driven candidate generation with structure\-aware validation and recursive expansion control to improve the consistency and quality of generated taxonomies by reducing hallucinations\. We evaluate the proposed framework using benchmark taxonomies under a masked taxonomy expansion setting and compare multiple validation strategies\. Experimental results, supported by both adapted evaluation metrics and human evaluation, demonstrate that ReLTEx produces more reliable and semantically coherent taxonomy expansions\.

## 1Introduction

Taxonomies provide structured hierarchical representations of knowledge and play a fundamental role in numerous applications, including knowledge graphs[12](https://arxiv.org/html/2608.10970#bib.bib4), semantic search and question answering[7](https://arxiv.org/html/2608.10970#bib.bib5), etc\. By organizing concepts as parent–child relations, taxonomies enable semantic understanding, efficient navigation, and knowledge discovery\. However, as domains evolve and new concepts continuously emerge, maintaining and expanding taxonomies manually becomes increasingly costly, time\-consuming, and difficult to scale[7](https://arxiv.org/html/2608.10970#bib.bib5)\.

To address these challenges, extensive research has explored automated taxonomy expansion\. Early approaches relied on lexico\-syntactic patterns[3](https://arxiv.org/html/2608.10970#bib.bib6), followed by distributional semantic methods[19](https://arxiv.org/html/2608.10970#bib.bib8)and graph\-based techniques[9](https://arxiv.org/html/2608.10970#bib.bib7)\. Moreover, Pretrained Language Models \(PLMs\) have substantially improved taxonomy expansion by learning contextual representations of concepts and hierarchical relations[4](https://arxiv.org/html/2608.10970#bib.bib9)\. Despite these advances, automated taxonomy expansion remains challenging\. A generated concept may be*semantically ambiguous*, as in“Bank”, which can refer to either a financial institution or the side of a river\. Candidate generation may also introduce*noise or redundancy*, for example by proposing both“Question”and“Inquiry”\. Moreover, an otherwise valid concept may be*attached to an inappropriate parent*, such as placing“Answer”under“CreativeWork”rather than“Comment”\. These errors can compromise hierarchical coherence and propagate during recursive expansion\.

Recent advances in Large Language Models \(LLMs\) have created new opportunities for taxonomy enrichment which uses prompting for taxonomy construction[18](https://arxiv.org/html/2608.10970#bib.bib12)and hierarchical attachment prediction[6](https://arxiv.org/html/2608.10970#bib.bib13)\. Because of their extensive parametric knowledge and strong generative capabilities, LLMs can infer hierarchical relations and propose semantically relevant concepts in a zero\-shot setting, making them attractive for expanding existing taxonomies, particularly in domains where curated resources are scarce or rapidly evolving\. However, without explicit structural verification, LLM\-generated concepts may violate the taxonomy hierarchy, and such errors can accumulate during recursive expansion\.

To address these challenges, we proposeReLTEx111The source code and the benchmark splits are available at[https://github\.com/zeinabGhamlouch/ReLTEx](https://github.com/zeinabGhamlouch/ReLTEx)\., a framework for reliable LLM\-based taxonomy expansion\. ReLTEx combines zero\-shot LLM\-based candidate generation with structure\-aware validation and recursive expansion control\. Candidate parent–child relations are verified using a path\-aware classifier trained on taxonomy structures, allowing structurally inconsistent generations to be filtered before insertion into the taxonomy\. Recursive stopping criteria further regulate recursive expansion and reduce the propagation of erroneous generations\.

We evaluate ReLTEx on benchmark taxonomies under a masked taxonomy expansion setting, where hidden concepts must be recovered from partial taxonomies\. Our evaluation consists of standard and adapted evaluation metrics, human assessment, and LLM based assessment along with an ablation study\. The main contributions of this work are as follows, we propose:

- •A zero\-shot LLM\-based taxonomy expansion framework that exploits contextual information from the taxonomy hierarchy to generate candidate concepts\.
- •A structure\-aware validation mechanism that mitigates hallucinated and structurally inconsistent parent–child relations, improving the reliability of recursive taxonomy expansion\.
- •A comprehensive evaluation protocol based on adapted evaluation metrics, human evaluation, and LLM based assessment\.

This paper is organized as follows\. Section[2](https://arxiv.org/html/2608.10970#S2)reviews related work while Section[3](https://arxiv.org/html/2608.10970#S3)defines the taxonomy expansion problem\. Section[4](https://arxiv.org/html/2608.10970#S4)presents ReLTEx\. Section[5](https://arxiv.org/html/2608.10970#S5)describes the datasets and evaluation metrics, and Section[6](https://arxiv.org/html/2608.10970#S6)presents the experimental results\. Finally, Section[7](https://arxiv.org/html/2608.10970#S7)concludes the paper\.

## 2Related Work

Recent methods formulate taxonomy expansion as*node attachment problem*, where predefined candidate concepts are inserted into an existing taxonomy by predicting their most appropriate parent node\. In the following we categorize these methods into structure based and LLM\-based methods\.

#### Structure based Methods\.

TaxoExpan[11](https://arxiv.org/html/2608.10970#bib.bib2)leverages Graph Neural Networks and self\-supervised learning to insert unseen concepts through ego\-graph representations\. Building on the use of structural information, TEMP[4](https://arxiv.org/html/2608.10970#bib.bib9)models taxonomy paths using PLMs and optimizes a dynamic margin ranking objective over positive and negative insertion paths\. STEAM[17](https://arxiv.org/html/2608.10970#bib.bib3)adopts a multi\-view co\-training framework that combines distributed, contextual, and lexico\-syntactic representations through mini\-path structures\. Other approaches have similarly focused on improving hierarchical attachment through graph\-based representations[10](https://arxiv.org/html/2608.10970#bib.bib17), contrastive learning strategies[8](https://arxiv.org/html/2608.10970#bib.bib18), or PLM embeddings[14](https://arxiv.org/html/2608.10970#bib.bib19)\.

Despite their effectiveness, most existing taxonomy expansion approaches[11](https://arxiv.org/html/2608.10970#bib.bib2);[5](https://arxiv.org/html/2608.10970#bib.bib10)operate under a constrained setting in which the candidate concepts are provided in advance instead of generating entirely new concepts dynamically\.

#### LLM\-based Methods\.

TaxoGlimpse[13](https://arxiv.org/html/2608.10970#bib.bib11)assesses the taxonomic knowledge encoded in LLMs across general and specialized taxonomies\. The results show that the performance of an LLM deteriorates for specialized domains and deeper taxonomy levels\. However, their work focuses on evaluating taxonomic knowledge rather than expanding an existing hierarchy\. Chain\-of\-Layer[18](https://arxiv.org/html/2608.10970#bib.bib12)iteratively induces a taxonomy from a given set of entities through layer\-wise prompting and an ensemble\-based relation filtering mechanism\. FLAME[6](https://arxiv.org/html/2608.10970#bib.bib13)leverages LLMs to predict the most appropriate parent for a query concept that is known in advance\.

Taxoria[2](https://arxiv.org/html/2608.10970#bib.bib1)is the closest work to ours, as it recursively generates novel concepts based on an existing taxonomy without relying on a predefined candidate pool\. However, its validation is based primarily on embedding\-based semantic similarity and does not explicitly model the structural compatibility of a generated parent–child relation\. Consequently, erroneous or weakly related generations may be accepted and propagated during recursive expansion\.

Unlike prior taxonomy expansion methods that either attach predefined concepts or rely primarily on semantic similarity, ReLTEx combines open\-ended LLM generation with path\-aware structural validation and recursive expansion control\. By validating each generated parent–child relation in its hierarchical context before insertion\.

## 3Problem Formulation

A taxonomy can be represented asT=\(V,E\)T=\(V,E\), whereVVdenotes the set of concepts \(nodes\) andEErepresents parent–child relations between the concepts\. Given an initial seed taxonomyT0=\(V0,E0\)T\_\{0\}=\(V\_\{0\},E\_\{0\}\), the goal of taxonomy expansion is to enrich the taxonomy with semantically relevant concepts while preserving hierarchical consistency\. Formally, given a nodev∈V0v\\in V\_\{0\}and its local hierarchical context, the objective is to generate a set of candidate child conceptsCv=\{c1,c2,…,ck\}C\_\{v\}=\\\{c\_\{1\},c\_\{2\},\\ldots,c\_\{k\}\\\}\. Wherekkdenotes the number of candidate child concepts generated for nodevv, andcic\_\{i\}is a potential child concept ofvv, wherei=1,…,ki=1,\\ldots,k\.

The generated candidates may be hallucinated, redundant, or structurally inconsistent\. Thus, the goal is to select a curated subset suitable for safe taxonomy integration\. The resulting expanded concept set can therefore be expressed asV′=V0∪AvV^\{\\prime\}=V\_\{0\}\\cup A\_\{v\}; whereAv⊆CvA\_\{v\}\\subseteq C\_\{v\}denotes the subset of generated candidates selected for insertion into the taxonomy\.

## 4ReLTEx

Figure[1](https://arxiv.org/html/2608.10970#S4.F1)shows an overview of ReLTEx framework\. Starting from a seed taxonomy, ReLTEx expands each taxonomy node in three stages:\(A\)LLM\-based candidate generation,\(B\)structure\-aware validation, and\(C\)recursive expansion using a stopping mechanism\. The following subsections describe each stage in detail\.

![Refer to caption](https://arxiv.org/html/2608.10970v1/figures/ReLTEx-pipeline.drawio.png)Figure 1:Overview of the ReLTEx framework\.### 4\.1LLM\-based Candidate Generation

ReLTEx performs recursive taxonomy expansion through a depth\-first traversal of the taxonomy\. For each target node, the framework constructs a prompt using its local hierarchical context, consisting of the path from the taxonomy root to the target node together with its existing children\. The ancestor path provides the semantic context of the current taxonomy branch, while the existing children illustrate the desired level of abstraction, guiding the LLM to generate semantically relevant child concepts at the appropriate level of granularity\. The language model is instructed to generate new child concepts considering the appropriate granularity level while avoiding duplicates, synonyms, and simple rephrasing of the existing or newly generated siblings \(Appendix[E](https://arxiv.org/html/2608.10970#A5)shows the prompt\)\. For each parent node, the LLM is prompted to generate a fixed numberkkof candidate child concepts\. The parameterkkcontrols the branching factor of the expanded taxonomy and can be adjusted depending on the desired level of expansion\. After generation, candidate names undergo basic lexical normalization\. Exact lexical duplicates under this canonical representation, as well as candidates matching existing children or sibling nodes, are removed before the remaining candidates are passed to the validation stage\.

### 4\.2Structure\-Aware Candidate Validation

We investigated three validation strategies: \(i\) semantic similarity filtering, which measures the semantic compatibility between the generated concept and its local taxonomy context; \(ii\) LLM\-based validation, where an LLM judges whether the generated concept represents a valid, non\-redundant child of the parent; and \(iii\) classifier\-guided validation, which predicts the structural validity of the parent–child relation using a classifier trained on taxonomy edges\. In this subsection we focus on classifier guided validation\.

Unlike semantic similarity measures, the proposed classifier learns structural compatibility from annotated taxonomy relations by jointly considering the hierarchical context, the parent concept, and the generated child concept\. The validation module is formulated as a binary classification task using a DistilRoBERTa encoder fine\-tuned on labeled parent–child relation pairs\. The classifier is trained on positive and negative examples derived from the seed taxonomy, enabling it to discriminate between valid and invalid hierarchical relations\. Given the hierarchical pathpp, the parent conceptvv, and a generated candidate child conceptcic\_\{i\}, represented asPath \[SEP\] Parent \[SEP\] Child, the classifier outputs a confidence score

s⁡\(p,v,ci\)∈\[0,1\],s\(p,v,c\_\{i\}\)\\in\[0,1\],defined as the softmax probability assigned to the positive class, representing the likelihood that the relation\(v,ci\)\(v,c\_\{i\}\)corresponds to a valid taxonomy edge within the hierarchical contextpp\. Candidate concepts withs⁡\(p,v,ci\)≥τs\(p,v,c\_\{i\}\)\\geq\\tau, whereτ\\taudenotes the validation threshold, are accepted and incorporated into the taxonomy; otherwise, they are discarded\.

Positive examples correspond to valid taxonomy edges, whereas negative examples are generated automatically using hierarchy\-aware perturbations that produce semantically plausible but structurally incorrect relations\. We construct the following hard negative examples:

- •Reversed edges, obtained by reversing a valid parent–child relation, e\.g\.,Comment→\\rightarrowAnswerbecomesAnswer→\\rightarrowComment\(see Figure[1](https://arxiv.org/html/2608.10970#S4.F1)for running example\)\.
- •Sibling confusions, where the correct parent is replaced by one of its siblings, e\.g\.,Comment→\\rightarrowAnswerbecomesBook→\\rightarrowAnswer\.
- •Grandparent–child confusions, where the immediate parent is replaced by its parent, e\.g\.,Comment→\\rightarrowAnswerbecomesCreativeWork→\\rightarrowAnswer\.
- •Same\-depth mismatches, where the child is attached to a concept at the same hierarchical level as its true parent, e\.g\.,Article→\\rightarrowAnswer\.
- •Nearby hierarchy confusions, where the correct parent is replaced by a semantically related concept from a neighboring branch, e\.g\.,Review→\\rightarrowAnswer\.
- •Random invalid relations, obtained by randomly pairing unrelated concepts, e\.g\.,Organization→\\rightarrowAnswer\.

Each training instance is represented asPath \[SEP\] Parent \[SEP\] Child, where the path corresponds to the ancestor sequence from the taxonomy root to the parent concept\. By training on both positive examples and hierarchy\-aware hard negatives, the classifier learns structural compatibility rather than relying solely on semantic similarity\.

### 4\.3Recursive Expansion

Recursive generative expansion may progressively introduce semantic drift and uncontrolled taxonomy growth\. For example, once an incorrect parent–child relation is accepted, subsequent expansion may continue from that erroneous node and generate concepts that increasingly diverge from the intended taxonomy branch\. To mitigate this issue, ReLTEx reuses the confidence scores assigned by the classifier during child validation to regulate recursive expansion at the branch level\.

Only the concepts accepted during the validation step are eligible for further recursive expansion\. LetAvA\_\{v\}denote the set of accepted child concepts generated for nodevv:

Av=\{ci∈Cv∣s⁡\(p,v,ci\)≥τ\}A\_\{v\}=\\\{c\_\{i\}\\in C\_\{v\}\\mid s\(p,v,c\_\{i\}\)\\geq\\tau\\\}ReLTEx first requires a minimum number of accepted children:\|Av\|≥m,\|A\_\{v\}\|\\geq m,wheremmis the minimum number of accepted children required to continue expanding the branch\. If\|Av\|<m\|A\_\{v\}\|<m, expansion at nodevvterminates\. Ifm=1m=1, a branch stops when none of its generated candidates passes the validation threshold\.

When\|Av\|≥m\|A\_\{v\}\|\\geq m, ReLTEx estimates the overall reliability of the current expansion step using the mean confidence of the accepted children:

S⁡\(v\)=1\|Av\|​∑ci∈Avs⁡\(p,v,ci\)\.S\(v\)=\\frac\{1\}\{\|A\_\{v\}\|\}\\sum\_\{c\_\{i\}\\in A\_\{v\}\}s\(p,v,c\_\{i\}\)\.
Averaging considers all accepted children and provides a normalized estimate of the reliability of the expansion step, without being determined by a single exceptionally high\- or low\-confidence prediction\.

If we haveS⁡\(v\)S\(v\)andS⁡\(parent⁡\(v\)\)S\(\\mathrm\{parent\}\(v\)\)\(mean confidence of its parent node\), the expansion belowvvcontinues only if

S⁡\(v\)≥S⁡\(parent⁡\(v\)\)−δ,S\(v\)\\geq S\(\\mathrm\{parent\}\(v\)\)\-\\delta,
whereδ\\deltais the maximum allowable decrease in average classifier confidence between two consecutive expansion levels\. For the initial expansion step, where no parent confidence score is available, this criterion is not applied\. This recursive stopping mechanism recursively expands only branches whose confidence remains sufficiently stable\.

## 5Experimental Setup

### 5\.1Datasets and LLMs

We evaluate ReLTEx on two taxonomy benchmarks that differ substantially in size and structure:\(i\)SemEval\-2016 Task 13 Environmenttaxonomy[1](https://arxiv.org/html/2608.10970#bib.bib20), a standard benchmark for taxonomy expansion;\(ii\)Schema\.org222[https://schema\.org/](https://schema.org/), a large\-scale real\-world taxonomy that covers a broad range of domains and semantic concepts\. Dataset statistics are summarized in Table[1](https://arxiv.org/html/2608.10970#S5.T1)\.

Table 1:Statistics of the taxonomy benchmarks\.\|N\|\|N\|denotes \#nodes,\|E\|\|E\|denotes \#edges, and\|D\|\|D\|the maximum depth \(with the root counted as level 1\)\.Experiments are conducted using four open\-source language models from different families:Llama3\.2:3B, Mistral:7B, Qwen3:8B, and DeepSeek\-R1:8B\. These models were selected to cover a diverse range of capabilities, including lightweight instruction following, general\-purpose generation, enhanced reasoning, and explicit reasoning via a thinking model\.

### 5\.2Evaluation Metrics

Our evaluation builds upon metrics commonly adopted in taxonomy expansion literature[4](https://arxiv.org/html/2608.10970#bib.bib9);[21](https://arxiv.org/html/2608.10970#bib.bib16), including Recall@K, Mean Reciprocal Rank \(MRR\), and the Wu & Palmer similarity measure\. Unlike traditional taxonomy expansion, ReLTEx performs generative expansion, where language models may produce multiple candidate concepts, semantically equivalent variants, or valid concepts attached under alternative parent nodes\. To account for these characteristics, we adapt the classical evaluation metrics to the generative setting while preserving their original objectives\. Specifically, we distinguish between concept recovery and structural attachment quality, and additionally incorporate semantic matching to account for lexical variability in generated concepts\.

The primary quantitative evaluation follows a masked taxonomy expansion protocol \(described in Section[6](https://arxiv.org/html/2608.10970#S6)\), where a subset of taxonomy nodes is hidden and treated as ground truth\. The enriched taxonomy is generated from the remaining seed taxonomy, and the recovered concepts are evaluated using the metrics defined below\.

LetYYdenote the set of hidden concepts, withn=\|Y\|n=\|Y\|\. For each hidden concepty∈Yy\\in Y, letvyv\_\{y\}denote the original parent node from whichyywas masked\. Letr​a​n​k​\(y\)rank\(y\)denote the ranking position ofyywithin the accepted candidate setAvyA\_\{v\_\{y\}\}\(see Section[4](https://arxiv.org/html/2608.10970#S4)for details\)\.

We define the set of locally recovered hidden concepts as

Γlocal=\{y∈Y\|y∈Avy\},\\Gamma\_\{\\mathrm\{local\}\}=\\left\\\{y\\in Y\\;\\middle\|\\;y\\in A\_\{v\_\{y\}\}\\right\\\},where a hidden concept is considered recovered if it appears among the accepted generated children of its original parent node\.

#### Recall@K \(R@K\)

measures the proportion of hidden concepts that are successfully recovered under their original parent nodes:

R​@​K=\|Γlocal\|n\.R@K=\\frac\{\|\\Gamma\_\{\\mathrm\{local\}\}\|\}\{n\}\.

#### SoftRecall@K \(SR@K\)\.

Exact lexical matching may underestimate taxonomy expansion quality when semantically equivalent concepts are generated\. To account for this, we introduce SR@K\.

S​R​@​K​\(y\)=\{1,if​maxci∈Avy​sim⁡\(y,ci\)≥ρ,0,otherwise\.SR@K\(y\)=\\begin\{cases\}1,&\\text\{if \}\\displaystyle\\max\_\{c\_\{i\}\\in A\_\{v\_\{y\}\}\}\\operatorname\{sim\}\(y,c\_\{i\}\)\\geq\\rho,\\\\ 0,&\\text\{otherwise\.\}\\end\{cases\}
wherey∈Yy\\in Yis the hidden concept,sim⁡\(⋅,⋅\)\\operatorname\{sim\}\(\\cdot,\\cdot\)denotes cosine similarity between embeddings generated by theBAAI/bge\-small\-en\-v1\.5model[15](https://arxiv.org/html/2608.10970#bib.bib21)\. We setρ=0\.85\\rho=0\.85, which provides a conservative balance between recognizing semantically equivalent concepts while avoiding matches between only loosely related concepts\. The final SR@K score is computed as

S​R​@​K=1n​∑y∈YS​R​@​K​\(y\)\.SR@K=\\frac\{1\}\{n\}\\sum\_\{y\\in Y\}SR@K\(y\)\.

#### Mean Reciprocal Rank \(MRR\)\.

Accepted candidate concepts are ranked according to decreasing classifier confidence scores⁡\(p,v,ci\)s\(p,v,c\_\{i\}\)\. We report two complementary variants of MRR: \(i\)M​R​RoverallMRR\_\{\\mathrm\{overall\}\}and \(ii\)M​R​RfoundMRR\_\{\\mathrm\{found\}\}\.M​R​RoverallMRR\_\{\\mathrm\{overall\}\}measures ranking quality over all hidden concepts\. Recovered concepts contribute the reciprocal of their ranking position, while hidden concepts that are not recovered receive a score of zero, thereby penalizing failure to recover hidden concepts:

M​R​Roverall=1n​∑y∈Y\{1r​a​n​k​\(y\),if​y∈Avy,0,otherwise\.MRR\_\{\\mathrm\{overall\}\}=\\frac\{1\}\{n\}\\sum\_\{y\\in Y\}\\begin\{cases\}\\dfrac\{1\}\{rank\(y\)\},&\\text\{if \}y\\in A\_\{v\_\{y\}\},\\\\ 0,&\\text\{otherwise\.\}\\end\{cases\}
M​R​RfoundMRR\_\{\\mathrm\{found\}\}evaluates ranking quality only for successfully recovered hidden concepts:

M​R​Rfound=1\|Γlocal\|​∑y∈Γlocal1r​a​n​k​\(y\)\.MRR\_\{\\mathrm\{found\}\}=\\frac\{1\}\{\|\\Gamma\_\{\\mathrm\{local\}\}\|\}\\sum\_\{y\\in\\Gamma\_\{\\mathrm\{local\}\}\}\\frac\{1\}\{rank\(y\)\}\.

#### Wu & Palmer \(WuP\) Similarity\.

To evaluate the structural quality of node generation, we adapt the WuP similarity to compare predicted parent placements against the original taxonomy structure\. For each hidden concepty∈Yy\\in Y, let

Vypred=\{v∣y∈Av\}V\_\{y\}^\{\\mathrm\{pred\}\}=\\\{v\\mid y\\in A\_\{v\}\\\}denote the set of parent nodes under which a hidden conceptyywas generated\. The attachment similarity score is then defined as

w⁡\(y\)=maxv∈Vypred⁡2⋅d​e​p​t​h​\(L​C​A​\(v,vy\)\)d​e​p​t​h​\(v\)\+d​e​p​t​h​\(vy\)\.w\(y\)=\\max\_\{v\\in V\_\{y\}^\{\\mathrm\{pred\}\}\}\\frac\{2\\cdot depth\(LCA\(v,v\_\{y\}\)\)\}\{depth\(v\)\+depth\(v\_\{y\}\)\}\.whereL​C​A​\(⋅,⋅\)LCA\(\\cdot,\\cdot\)denotes the Lowest Common Ancestor\. Higher similarity values indicate that the predicted parent node is structurally closer to the original parent node\. We further define the set of globally recovered hidden concepts as

Γglobal=\{y∈Y∣Vypred≠∅\}\.\\Gamma\_\{\\mathrm\{global\}\}=\\\{y\\in Y\\mid V\_\{y\}^\{\\mathrm\{pred\}\}\\neq\\emptyset\\\}\.
We report two variants of the WuP score\. The first variant measures attachment quality over all hidden concepts\. Successfully generated concepts contribute their WuP score, while hidden concepts that are not successfully generated are scored zero\.

W​u​Poverall=1n​∑y∈Y\{w⁡\(y\),if​y∈Γglobal,0,otherwise\.WuP\_\{\\mathrm\{overall\}\}=\\frac\{1\}\{n\}\\sum\_\{y\\in Y\}\\begin\{cases\}w\(y\),&\\text\{if \}y\\in\\Gamma\_\{\\mathrm\{global\}\},\\\\ 0,&\\text\{otherwise\.\}\\end\{cases\}
The second variant evaluates attachment quality only for successfully generated concepts:

W​u​Pfound=1\|Γglobal\|​∑y∈Γglobalw⁡\(y\)\.WuP\_\{\\mathrm\{found\}\}=\\frac\{1\}\{\|\\Gamma\_\{\\mathrm\{global\}\}\|\}\\sum\_\{y\\in\\Gamma\_\{\\mathrm\{global\}\}\}w\(y\)\.

## 6Evaluation Results

We evaluate ReLTEx using three complementary protocols: \(i\) Masked Taxonomy Expansion, \(ii\) Human Evaluation, \(iii\) LLM based taxonomy evaluation\. \.

### 6\.1Masked Taxonomy Expansion Benchmark

We evaluate concept recovery using a masked taxonomy expansion benchmark, following the standard evaluation protocol[16](https://arxiv.org/html/2608.10970#bib.bib15)\. We remove 20% of the nodes from the seed taxonomy and treat them as hidden test concepts\. The remaining taxonomy serves as the seed taxonomy provided to ReLTEx, while the hidden concepts constitute the gold standard used for evaluation\. Only leaf nodes are considered eligible for masking in order to preserve the overall taxonomy structure\.

Masking is performed under two constraints\.\(i\)Hidden nodes are selected only from those parent nodes retaining at least one visible child after masking, preventing the removal of all local structural context\.\(ii\)A maximum of five hidden children is allowed under any single parent node\. These constraints prevent a small number of high\-degree parent nodes from dominating the evaluation process and ensures a more balanced distribution of hidden concepts across the taxonomy\.

The generator LLM333Unless otherwise specified, candidate generation is performed using Mistral:7B\.producesk=5k=5candidate child concepts for each parent node\. The root node is excluded from expansion\. Generated parent–child candidates are then validated\. Candidates are accepted only if their confidence score≥\\geq0\.90\. Although ReLTEx supports recursive taxonomy expansion, benchmark experiments are performed exclusively on the masked seed taxonomy\. Newly generated concepts are not recursively expanded\.

Since existing taxonomy expansion methods assume a predefined candidate set rather than generating new concepts, no directly comparable baseline exists for our setting\. Table[2](https://arxiv.org/html/2608.10970#S6.T2)summarizes the benchmark results under the masked taxonomy expansion setting on the SemEval Environment and Schema\.org taxonomies\. The higher numbers \(shown in bold\) indicate better performance or quality in the rest of this paper\.

Table 2:Results of the masked taxonomy expansion benchmark\.Overall, all evaluated models demonstrate the ability to recover hidden taxonomy concepts\. As expected, the larger and more diverse Schema\.org taxonomy is substantially more challenging than the SemEval Environment taxonomy, leading to lower recovery and attachment scores across all models\. Nevertheless, the relative ranking of the models remains largely consistent across both benchmarks\. Mistral achieves the strongest overall performance across both datasets, obtaining the highest R@K, MRRo, and WuPoscores on Schema\.org while remaining highly competitive on SemEval\. Llama3\.2 performs best on the smaller SemEval taxonomy, achieving the highest R@K, S@K, and WuPo, indicating strong concept recovery and structural placement\. Qwen3 consistently produces competitive semantic recovery performance, achieving the highest S@K on Schema\.org, suggesting a greater ability to generate semantically related concepts beyond exact lexical matches\. DeepSeek\-R1 generally obtains lower recovery scores and exhibits larger standard deviations across several metrics, indicating lower stability across different masking configurations\.

### 6\.2Human Evaluation

LLMs may generate valid novel concepts that are absent from the ground truth\. To complement the automatic evaluation, we conduct a human assessment of the generated taxonomy expansions\. We evaluate the expanded taxonomy obtained from the run achieving the highest R@K\.

For each taxonomy, we randomly sample 20% of the eligible parent nodes, providing representative coverage while keeping the manual annotation effort feasible\. Eligible parents correspond to non\-root nodes that retain at least one visible child in the masked seed taxonomy\. The same sampled parent nodes are evaluated across all four models\.

To avoid model\-specific bias, the four models are anonymized\. We further randomize the order of both the sampled parent nodes and the generated concepts\. A web\-based interface444[https://reltex\-human\-eval\.vercel\.app/](https://reltex-human-eval.vercel.app/)shows the taxonomy context and allows consistent annotation\.

For each sampled parent node, annotators are presented with its hierarchical path, its existing children, the accepted generated children, and, when applicable, the hidden gold children removed during masking \(see Appendix[B](https://arxiv.org/html/2608.10970#A2)for the snapshot of the annotation interface\)\. The interface distinguishes between two evaluation settings\. In*recovery cases*, hidden gold children exist for the current parent, allowing both recovery and enrichment to be assessed\. In*novel enrichment cases*, no hidden gold child exists under the parent, and the evaluation focuses solely on the quality of the generated concepts\. Each generated concept is independently evaluated according to the following criteria:*Hierarchical Correctness \(HC\)*,*Granularity Consistency \(GC\)*,*Non\-Redundancy \(NR\)*,*Exact Recovery \(ER\)*, and*Semantic Recovery \(SR\)*\.

Three independent annotators evaluated all eight sample sets\. Final labels are obtained using majority voting across the three annotations for each generated concept\. The inter\-annotator agreement was measured using Fleiss’κ\\kappa, which is 0\.695\.

Table[3](https://arxiv.org/html/2608.10970#S6.T3)presents the final results\. Expansion\-quality metrics \(HC, GC, and NR\) are computed over all sampled parent nodes, whereas ER and SR are evaluated only on the subset of masked concepts\. Despite being measured on this more restrictive evaluation set, the recovery scores demonstrate that the generated concepts frequently recover or closely match the hidden taxonomy concepts\.

Overall, the generated expansions receive consistently high human judgments for hierarchical correctness, granularity consistency, and non\-redundancy across both datasets, indicating that the accepted concepts are generally well positioned within the taxonomy and remain consistent with the abstraction level of the surrounding branch\.

Table 3:Human evaluation results using majority voting across three annotators\.On SemEval Environment, Qwen3 achieves the strongest performance in HC and GC, while Llama3\.2 produces the highest non\-redundancy score\. Mistral obtains the best exact recovery and ties with Qwen3 for the highest SR, indicating a stronger ability to recover concepts removed during masking\.

On Schema\.org, Qwen3 achieves perfect HC and GC\. Mistral reaches perfect GC and NR together with the highest SR, whereas DeepSeek\-R1 also demonstrates strong expansion quality despite lower recovery performance\.

### 6\.3LLM\-Based Taxonomy Evaluation

We complement our evaluation using LITE[20](https://arxiv.org/html/2608.10970#bib.bib14), an LLM\-based framework for assessing the semantic and structural quality of taxonomies\. LITE defines four measures:\(i\)*Single Concept Accuracy \(SCA\):*evaluates the semantic clarity, validity, and coherence of individual taxonomy concepts;\(ii\)*Hierarchy Relationship Rationality \(HRR\):*evaluates whether parent–child relations represent logically consistent hierarchical dependencies\.\(iii\)*Hierarchy Relationship Exclusivity \(HRE\):*evaluates whether sibling concepts are semantically distinct and non\-overlapping\.\(iv\)*Hierarchy Relationship Independence \(HRI\):*evaluates the structural independence of concepts by measuring redundancy and semantic overlap among siblings\.

Following LITE, we assess taxonomy quality using LLM\-based judgments\. While the original framework reports HRE and HRI separately, our implementation returns a single score jointly reflecting both criteria, which we report as the HRE/HRI score\. LITE is further applied to the fully expanded taxonomies produced by the ReLTEx \(instead of masking\)\. As recursive expansion increases the number of generated nodes at each level, using the benchmark generation setting \(k=5k=5candidates per parent\) results in large taxonomies with limited benefit\. Therefore, we reduce the generation tok=3k=3\. We evaluate both the seed taxonomy and the enriched taxonomy, allowing direct comparison before and after enrichment\.

We replace the proprietary evaluator in LITE with three open\-source instruction\-tuned LLMs deployed locally through Ollama555[https://ollama\.com/](https://ollama.com/):Llama3\.2,Qwen3:8B, andDeepSeek\-R1:8B\. The enriched taxonomies are generated usingMistral:7B, selected as the generator due to its strongest overall performance in the masked taxonomy expansion benchmark\. The three LLMs are used exclusively as evaluators\. Tables[5](https://arxiv.org/html/2608.10970#S6.T5)and[5](https://arxiv.org/html/2608.10970#S6.T5)report the LITE scores for the seed and the enriched taxonomy\. Improvements over the seed taxonomy show that recursive enrichment preserves or enhances the quality while introducing new concepts\.

Table 4:LITE evaluation on the SemEval Environment\.Table 5:LITE evaluation on the Schema\.org\.Across both taxonomies, the enriched taxonomies achieve high SCA, indicating that recursive expansion preserves semantic quality\. HRR is generally maintained or improved after enrichment, suggesting that generated parent–child relations remain logically coherent\. Similar trends are observed for HRE/HRI, with most evaluators assigning equal or higher scores to the enriched taxonomies, particularly on the Environment taxonomy\.

The ablation study, qualitative error analysis, and expanded taxonomy statistics are provided in Appendix[D](https://arxiv.org/html/2608.10970#A4), Appendix[C](https://arxiv.org/html/2608.10970#A3), and Appendix[E](https://arxiv.org/html/2608.10970#A5), respectively\.

## 7Conclusion

We presented ReLTEx, a framework for taxonomy enrichment using LLMs\. Unlike existing taxonomy expansion approaches that assume candidate concepts to be already available, ReLTEx jointly performs concept generation and structure\-aware validation through a classifier\-based validation module and recursive expansion mechanism\. The proposed evaluation protocol combines automatic benchmarking, human assessment, and LLM\-based taxonomy evaluation, providing complementary perspectives on taxonomy quality beyond concept recovery alone\.

## Limitations

Our experiments rely on relatively compact open\-source language models to enable efficient and reproducible experimentation\. Larger and more capable models may further improve the quality of generated taxonomy expansions\.

In addition, the proposed classifier is a learned approximation of hierarchical validity and may occasionally accept incorrect parent–child relations\. Finally, recursive LLM\-based taxonomy generation remains an emerging task without a standardized benchmark or directly comparable generation baseline, making comprehensive system\-level comparisons difficult\.

## Ethical Considerations

The human evaluation involved three volunteer annotators following predefined annotation guidelines\. The collected annotations were used solely for research purposes, and no sensitive personal information is reported in this work\.

The taxonomies used are publicly available benchmark resources and contain no personal or sensitive data\.

Since ReLTEx relies on large language models for concept generation, it may inherit biases present in the underlying models and their training data, potentially affecting the generated concepts and their hierarchical placement\. Although the proposed validation module mitigates these issues, some errors may still remain\.

## References

- G\. Bordea, E\. Lefever, and P\. BuitelaarSemEval\-2016 task 13: taxonomy extraction evaluation \(TExEval\-2\)\.InProceedings of the 10th International Workshop on Semantic Evaluation \(SemEval\-2016\),S\. Bethard, M\. Carpuat, D\. Cer, D\. Jurgens, P\. Nakov, and T\. Zesch \(Eds\.\),San Diego, California,pp\. 1081–1091\.External Links:[Link](https://aclanthology.org/S16-1168/),[Document](https://dx.doi.org/10.18653/v1/S16-1168)Cited by:[§5\.1](https://arxiv.org/html/2608.10970#S5.SS1.p1.1)\.
- Ghamlouch and Alam \(2025\)Z\. Ghamlouch and M\. AlamEnriching taxonomies using large language models\.InECAI 2025\-28th European Conference on Artificial Intelligence \(Demo Track\),Cited by:[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px2.p2.1)\.
- Hearst \(1992\)M\. A\. HearstAutomatic acquisition of hyponyms from large text corpora\.InCOLING 1992 volume 2: The 14th international conference on computational linguistics,Cited by:[§1](https://arxiv.org/html/2608.10970#S1.p2.1)\.
- Liuet al\.\(2021\)Z\. Liu, H\. Xu, Y\. Wen, N\. Jiang, H\. Wu, and X\. YuanTEMP: taxonomy expansion with dynamic margin loss through taxonomy\-paths\.InProceedings of the 2021 conference on empirical methods in natural language processing,pp\. 3854–3863\.Cited by:[§1](https://arxiv.org/html/2608.10970#S1.p2.1),[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px1.p1.1),[§5\.2](https://arxiv.org/html/2608.10970#S5.SS2.p1.1)\.
- Margiottaet al\.\(2023\)D\. Margiotta, D\. Croce, and R\. BasiliTaxosbert: unsupervised taxonomy expansion through expressive semantic similarity\.InInternational Conference on Deep Learning Theory and Applications,pp\. 295–307\.Cited by:[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px1.p2.1)\.
- Mishraet al\.\(2024\)S\. Mishra, U\. Sudev, and T\. ChakrabortyFlame: self\-supervised low\-resource taxonomy expansion using large language models\.ACM Transactions on Intelligent Systems and Technology\.Cited by:[§1](https://arxiv.org/html/2608.10970#S1.p3.1),[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px2.p1.1)\.
- Navigli and Ponzetto \(2010\)R\. Navigli and S\. P\. PonzettoBabelNet: building a very large multilingual semantic network\.InProceedings of the 48th annual meeting of the association for computational linguistics,pp\. 216–225\.Cited by:[§1](https://arxiv.org/html/2608.10970#S1.p1.1)\.
- Niuet al\.\(2024\)Y\. Niu, H\. Xu, C\. Liu, Y\. Wen, and X\. YuanContrastive representation learning for self\-supervised taxonomy completion\.\.InIJCAI,Vol\.8,pp\. 6442–6450\.Cited by:[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px1.p1.1)\.
- Pietrasiket al\.\(2024\)M\. Pietrasik, M\. Reformat, and A\. WilbikNon\-parametric path based model for taxonomy induction in knowledge graphs\.InBelgium netherlands conference on artificial intelligence,Cited by:[§1](https://arxiv.org/html/2608.10970#S1.p2.1)\.
- Shanget al\.\(2020\)C\. Shang, S\. Dash, M\. F\. M\. Chowdhury, N\. Mihindukulasooriya, and A\. GliozzoTaxonomy construction of unseen domains via graph\-based cross\-domain knowledge transfer\.InProceedings of the 58th annual meeting of the Association for Computational Linguistics,pp\. 2198–2208\.Cited by:[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px1.p1.1)\.
- Shenet al\.\(2020\)J\. Shen, Z\. Shen, C\. Xiong, C\. Wang, K\. Wang, and J\. HanTaxoExpan: self\-supervised taxonomy expansion with position\-enhanced graph neural network\.InProceedings of the web conference 2020,pp\. 486–497\.Cited by:[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px1.p1.1),[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px1.p2.1)\.
- Suchaneket al\.\(2024\)F\. M\. Suchanek, M\. Alam, T\. Bonald, L\. Chen, P\. Paris, and J\. SoriaYago 4\.5: a large and clean knowledge base with a rich taxonomy\.InProceedings of the 47th international ACM SIGIR conference on research and development in information retrieval,pp\. 131–140\.Cited by:[§1](https://arxiv.org/html/2608.10970#S1.p1.1)\.
- Sunet al\.\(2024\)Y\. Sun, H\. Xin, K\. Sun, Y\. E\. Xu, X\. Yang, X\. L\. Dong, N\. Tang, and L\. ChenAre large language models a good replacement of taxonomies?\.arXiv preprint arXiv:2406\.11131\.Cited by:[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px2.p1.1)\.
- Takeokaet al\.\(2021\)K\. Takeoka, K\. Akimoto, and M\. OyamadaLow\-resource taxonomy enrichment with pretrained language models\.InProceedings of the 2021 Conference on Empirical Methods in Natural Language Processing,pp\. 2747–2758\.Cited by:[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px1.p1.1)\.
- Xiaoet al\.\(2023\)S\. Xiao, Z\. Liu, P\. Zhang, and N\. MuennighoffC\-pack: packaged resources to advance general chinese embedding\.External Links:2309\.07597Cited by:[§5\.2](https://arxiv.org/html/2608.10970#S5.SS2.SSS0.Px2.p3.1)\.
- Xuet al\.\(2024\)F\. Xu, S\. Jiang, Z\. Huang, X\. Luo, S\. Zhang, Y\. Chen, and Y\. SunFUSE: measure\-theoretic compact fuzzy set representation for taxonomy expansion\.InFindings of the association for computational linguistics: ACL 2024,pp\. 2707–2720\.Cited by:[§6\.1](https://arxiv.org/html/2608.10970#S6.SS1.p1.1)\.
- Yuet al\.\(2020\)Y\. Yu, Y\. Li, J\. Shen, H\. Feng, J\. Sun, and C\. ZhangSteam: self\-supervised taxonomy expansion with mini\-paths\.InProceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining,pp\. 1026–1035\.Cited by:[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px1.p1.1)\.
- Zenget al\.\(2024\)Q\. Zeng, Y\. Bai, Z\. Tan, S\. Feng, Z\. Liang, Z\. Zhang, and M\. JiangChain\-of\-layer: iteratively prompting large language models for taxonomy induction from limited examples\.InProceedings of the 33rd ACM International Conference on Information and Knowledge Management,pp\. 3093–3102\.Cited by:[§1](https://arxiv.org/html/2608.10970#S1.p3.1),[§2](https://arxiv.org/html/2608.10970#S2.SS0.SSS0.Px2.p1.1)\.
- Zhanget al\.\(2018\)C\. Zhang, F\. Tao, X\. Chen, J\. Shen, M\. Jiang, B\. Sadler, M\. Vanni, and J\. HanTaxogen: constructing topical concept taxonomy by adaptive term embedding and clustering\.Proc\. KDDI\.Cited by:[§1](https://arxiv.org/html/2608.10970#S1.p2.1)\.
- Zhanget al\.\(2025\)L\. Zhang, Z\. Gu, S\. Zheng, T\. Wang, T\. Li, H\. Feng, and Y\. XiaoLITE: llm\-impelled efficient taxonomy evaluation\.arXiv preprint arXiv:2504\.01369\.Cited by:[§6\.3](https://arxiv.org/html/2608.10970#S6.SS3.p1.1)\.
- Zhanget al\.\(2024\)Y\. Zhang, J\. Qin, and C\. FengPEB\-taxo: projecting entities as boxes for taxonomy expansion\.Neural Processing Letters56\(2\),pp\. 102\.Cited by:[§5\.2](https://arxiv.org/html/2608.10970#S5.SS2.p1.1)\.

## Appendix AInput Prompts

### A\.1Generation Prompt

The following prompt is used to generate candidate children for each expanded taxonomy node\. The placeholders enclosed in braces are dynamically replaced during execution\.

Currentnode:\{current\_node\}

Parentpath:\{parent\_path\}

Existingchildrenofthisnode:\{existing\_children\}

Task:

Suggestexactly\{K\}NEWsuitablechildrenofthecurrentnode\.

Important:

\-ThenewchildrenMUSTbeattheSAMElevelofspecificityas

theexistingchildren\.

\-Usetheexistingchildrenasexamplesofthecorrectgranularity\.

\-Eachsuggestionmustbeachildunder"\{current\_node\}"\.

Rules:

\-DoNOTrepeatanyexistingchild\.

\-DoNOTsuggestsynonyms,rephrasings,orformattingvariants\.

\-DoNOTsuggestbroaderormoregeneralconceptsthantheexisting

children\.

Outputformat:

\-Returnexactly\{K\}names\.

\-Onenameperline\.

\-Nonumbering,explanations,oradditionaltext\.

\-Donotreturntheparentpath\.

### A\.2LLM\-as\-a\-Judge Prompt

The following prompt is used by the LLM\-based validator to assess each generated candidate independently\. The placeholders are populated using the current taxonomy context\.

Parentpath:\{parent\_path\}

Parentclass:\{parent\}

Existingchildrenoftheparent:\{existing\_children\}

Candidatechild:\{candidate\}

Task:

Decidewhetherthecandidateshouldbeacceptedasareasonable

NEWchildcategoryundertheparentinthistaxonomy\.

Guidelines:

1\.Acceptthecandidateifitisprimarilyameaningfultype/categoryoftheparent\.

2\.Rejectthecandidateifitisredundantwithanexistingchild\.

3\.Rejectthecandidateifitisonlylooselyrelatedtotheparent\.

ReturnONLYvalidJSONwithexactlythesefields:

\{

"accept":trueorfalse,

"is\_type\_of\_parent":trueorfalse,

"is\_redundant":trueorfalse,

"confidence":numberbetween0and1,

"reason":"shortexplanation"

\}

A candidate is accepted only if the judge marks it as acceptable, classifies it as a type of the parent, and does not identify it as redundant:

Accept​\(c\)=a⁡\(c\)∧t⁡\(c\)∧¬r⁡\(c\),\\textsc\{Accept\}\(c\)=a\(c\)\\land t\(c\)\\land\\neg r\(c\),wherea⁡\(c\)a\(c\),t⁡\(c\)t\(c\), andr⁡\(c\)r\(c\)correspond to theaccept,is\_type\_of\_parent, andis\_redundantfields, respectively\.

## Appendix BHuman Evaluation Interface

![Refer to caption](https://arxiv.org/html/2608.10970v1/figures/recovery_case.png)\(a\)Recovery case \(SemEval Environment\)\.
![Refer to caption](https://arxiv.org/html/2608.10970v1/figures/novel_enrichment.png)\(b\)Novel enrichment case \(Schema\.org\)\.

Figure 2:Snapshot of the annotation interface used in the human evaluation\.Figure[2](https://arxiv.org/html/2608.10970#A2.F2)illustrates the annotation interface used throughout the human evaluation\. The upper panel summarizes the local taxonomy context by displaying the hierarchical path, existing children, generated accepted children, and, when applicable, the hidden gold children\. The lower panel presents the evaluation form for each generated concept\. Recovery\-specific criteria are automatically enabled only when hidden gold children are available, while novel enrichment cases evaluate only the validity and quality of newly generated concepts\.

## Appendix CError Analysis

To better understand the remaining limitations of ReLTEx, we manually analyzed all parent–child relations that were accepted by our pipeline but rejected by the majority of human annotators\. Rather than grouping errors according to the evaluation criteria, we categorized them based on their underlying semantic causes\. Table[6](https://arxiv.org/html/2608.10970#A3.T6)presents representative examples from each category\.

One category of remaining errors corresponds toincorrect hierarchical placement\. In these cases, the generated concept is semantically valid but attached to an inappropriate parent within the taxonomy\. For example,BankTransferwas generated underPaymentCard, although it represents an alternative payment method rather than a subtype of payment card\. Similarly,overfishingwas proposed as a child ofmarine pollution, despite representing a distinct environmental issue rather than a form of pollution\.

Another category corresponds toscope mismatch\. Here, the generated concept belongs to the correct semantic domain but is expressed at an incompatible level of abstraction\. For instance, concepts such asClimate change mitigation strategiesandClimate change adaptation measureswere generated as children ofClimate change, mixing intervention strategies with environmental phenomena\. Similar behavior was observed in Schema\.org, whereGallerywas generated underMediaGallery, although it is semantically more general than its parent\.

We also observed cases ofsemantic redundancy, where the generated concept was effectively a near\-synonym of an existing taxonomy concept\. For example,TattooStudiowas generated despite the taxonomy already containing the semantically equivalent conceptTattooParlor, resulting in unnecessary duplication\.

Table 6:Representative semantic error categories identified during qualitative analysis\.Finally, a small number of errors correspond tomalformed concepts, including incomplete or corrupted generations such asSho Emission Trading\. These failures originate from generation artifacts rather than structural reasoning errors\.

## Appendix DAblation Study

To assess the impact of the main design choices in ReLTEx, we conduct ablation studies on three components of the framework: the prompting context, the validation strategy, and the validator acceptance thresholds\. The experiments are performed on the SemEval Environment taxonomy using Mistral:7B as the generator model\. As the goal is to isolate the contribution of each design choice rather than compare datasets, the ablation is conducted on this single representative benchmark\.

Threshold calibration is performed through a sweep over a fixed set of generated candidates\. Based on the resulting recovery performance, we select acceptance thresholds of0\.830\.83for both semantic validators and0\.900\.90for the classifier\. These thresholds are used throughout all experiments reported in the paper\.

We compare three prompting configurations:

- •Local: provides only the path to the parent node together with its existing children\.
- •Parent Subtree: provides the complete subtree rooted at the parent\.
- •Full Taxonomy: provides the entire seed taxonomy as context\.

For each prompting configuration, four validation strategies are evaluated:

- •Semantic V1: validates candidates using cosine similarity between the parent and the generated child\.
- •Semantic V2: extends Semantic V1 by additionally considering the taxonomy path and similarity to the parent’s existing children\.
- •LLM Judge: uses Llama3\.2 to determine whether a generated candidate represents a valid, non\-redundant child\.
- •Classifier: the proposed DistilRoBERTa\-based taxonomy validator\.

Table[7](https://arxiv.org/html/2608.10970#A4.T7)summarizes the benchmark results\.

Across all validation strategies, theLocalprompting configuration consistently achieves the highest R@K and SR@K\. Restricting the context to the parent path and its existing children provides sufficient structural information while avoiding the additional noise introduced by larger contexts\. Both theParent SubtreeandFull Taxonomysettings substantially reduce recovery performance, suggesting that exposing the language model to increasingly large portions of the taxonomy does not improve concept generation\.

The comparison of validation strategies further supports the proposed classifier\. Across all prompting contexts, it consistently achieves the highest R@K and SR@K\. Both semantic validators produce slightly lower recovery scores by rejecting a small number of valid candidates, while Semantic V2 performs nearly identically to Semantic V1, indicating that the additional taxonomy context provides little benefit in this setting\. The LLM Judge is the most conservative validator, substantially reducing recovery performance by rejecting many valid candidates together with incorrect ones\.

Table 7:Results of the ablation study on the SemEval Environment taxonomy\. Higher values indicate better performance\.
## Appendix EExpanded Taxonomy Statistics

To provide a quantitative overview of the resulting enriched taxonomies, table[8](https://arxiv.org/html/2608.10970#A5.T8)compares the original seed taxonomies with the enriched taxonomies produced by ReLTEx\. To remain consistent with the LITE evaluation, we report the taxonomies generated usingMistral:7B, which was selected as the generator after achieving the strongest overall performance in the masked taxonomy expansion benchmark\.

Table 8:Statistics of the seed and enriched taxonomies produced by ReLTEx usingMistral:7B\.\|N\|\|N\|denotes the number of nodes,\|E\|\|E\|the number of edges, and\|D\|\|D\|the maximum depth\.The adaptive recursive expansion substantially increases the size of both taxonomies while introducing one additional hierarchy level\. This indicates that ReLTEx primarily enriches existing branches rather than generating excessively deep hierarchies\. The larger increase observed for Schema\.org also reflects its broader semantic coverage, providing more opportunities for recursive concept generation than the smaller SemEval Environment taxonomy\.

Similar Articles

Learning to Refine Hidden States for Reliable LLM Reasoning

arXiv cs.LG

Proposes ReLAR, a reinforcement-guided latent refinement framework that iteratively updates hidden representations in LLMs before decoding, improving reasoning reliability and efficiency compared to chain-of-thought methods.

ExpRL: Exploratory RL for LLM Mid-Training

Hugging Face Daily Papers

ExpRL is a new RL-based mid-training method that uses human-written reference solutions as dense reward scaffolds (never shown to the policy) to improve LLM reasoning, achieving significant gains on hard math benchmarks like AIME-2026.