ConceptioArchivearXiv CS
arXiv CSopen access

Neuron-Aware Active Few-Shot Learning for LLMs

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
machine learning, deep learning, neural networks

Neuron-Aware Active Few-Shot Learning for LLMs Zhuowei Chen Liwei Chen Christian Schunn Raquel Coelho Xiang Lorraine Li University of Pittsburgh, USA {zhuowei.chen, xianglli}@pitt.edu

Unlabeled Pool

Abstract

arXiv:2607.02423v1 [cs.LG] 2 Jul 2026

Active Few-Shot Learning (AFSL) adapts LLMs to specialized domains by identifying the most valuable unlabeled samples for annotation and use as few-shot demonstrations, effectively reducing human annotation costs while promoting high performance. However, existing methods typically rely on output-level signals for the sample identification, such as predictive entropy or semantic similarities with test-time data based on external embeddings, which often overlook models’ internal dynamics which could pinpoint specific knowledge gaps. To bridge this gap, we propose N EU FS, a Neuron-Aware Active Few-Shot Learning framework that shifts the selection paradigm from output-level proxies to models’ internal dynamics. N EU FS utilizes neuron activation patterns to represent sample directly, and includes a dual-criteria selection strategy that: (1) ensures few-shot sample diversity with neuron patterns for broader example coverage, while (2) prioritizing on identifying informative and challenging few-shot samples LLMs tend to hallucinate by quantifying neuron consensus. Experiments on three datasets demonstrate that N EU FS excels in both reasoning and text classification tasks, outperforming existing AFSL baselines. Ablation studies further highlight that internal neuron activations provide a more principled and effective selection signal than external embeddings, validating the superiority of the proposed N EU FS.

1

Clustering (via Activation Patterns)

Representative Cluster Centroids

Knowledge Coverage Score Select Annotate

LLM

Labeled Few-shot

Neuron Consensus Quant (via #Unique Activations) Samples Prone to Hallucinate

Hallucination Correction

Figure 1: Neuron-Aware AFSL, which identifies informative and diverse few-shot samples for annotation. By leveraging activation patterns, N EU FS ensures broad knowledge coverage through activation pattern-based clustering while targeting informative, hallucinationprone samples via neuron consensus quantification.

has emerged as a popular training-free adaptation strategy. By providing examples within the query context, ICL has demonstrated promising performance in practical applications (Brown et al., 2020). The selection of few-shot has been identified as a critical factor for downstream task performance (Min et al., 2022). Existing work on few-shot example selection typically assumes access to a large annotated dataset, where retrieving examples most similar to the test data at inference time yields the best performance (Yu et al., 2023a; Margatina et al., 2023). However, constructing large annotated datasets for test-time retrieval is oftentimes impractical, especially for specialized domains that require expensive expert-level annotations. Consequently, exploration of few-shot selection strategies under unlabeled data settings remains limited. Recent work has begun to address this gap by introducing active learning (AL) into few-shot ICL, i.e Active FewShot Learning (AFSL) (Ahmadnia et al., 2025). AFSL extends traditional AL techniques to the few-shot paradigm, selecting the samples from a large unlabeled pool that are most likely to yield strong test-time performance, to be annotated as ICL demonstrations, providing a promising solu-

Introduction

While recent advances in LLMs have greatly improved general tasks like text classification, these models often fail to perform well out-of-the-box in specialized domains such as education, medicine, or law. Adapting off-the-shelf models to these expert fields is typically made difficult by the scarcity of data and the computational costs required for fine-tuning. To adapt LLMs for specific downstream tasks, few-shot in-context learning (ICL) 1

tion for reducing annotation costs while maintaining performance (Xia et al., 2025; Ahmadnia et al., 2025). AFSL methods largely follow the intuitions of mainstream AL approaches, which either prioritize highly uncertain samples to select informative samples (Meng et al., 2019; Gal et al., 2017), ensure semantic diversity in the selected set (Yuan et al., 2020), or consider both (Guo et al., 2024; Yu et al., 2023b; Hongjin et al., 2022). For informativeness, uncertainty measurement using entropy is commonly adopted. However, in the context of LLMs, it suffers from overconfidence and hallucination issues (Huang et al., 2025), which LLMs can be confidently wrong. Moreover, the misaligned objectives of next token prediction and knowledge assessment further compound these limitations, meaning token predictive entropy cannot fully represent LLMs’ intrinsic knowledge dynamics (Kuhn et al., 2023). For diversity, previous work relies on applying an external model to extract sample representations, then select samples through clustering (Ahmadnia et al., 2025), including KNN algorithms (Hongjin et al., 2022). The strong assumption of semantic-knowledge equivalence causes the sub-optimal performance, that is, semantically similar samples can incentivize completely different knowledge when performing a specific task. Overall, most methods rely on outputlevel model signals (Guo et al., 2024; Ahmadnia et al., 2025). To address these concerns, we shift from outputlevel signal toward internal model dynamics for AFSL. Recent work indicates that neuron activation patterns in the Feed-Forward Networks (FFNs) of LLMs can link to multiple concrete knowledge concepts (Gao et al., 2024). Moreover, neuron activations could indicate potential hallucinations and model utility (Chen et al., 2025; Cao et al., 2025). Specifically, higher neuron consensus corresponds to fewer hallucinations. Thus, utilizing these internal dynamics provides a more robust and principled signal for AFSL by directly revealing the underlying activation patterns associated with the LLMs’ internal knowledge and potential hallucinations. To this end, we introduce N EU FS, a NeuronAware Active Few-Shot Learning framework that shifts the selection paradigm from output-level signals to internal model dynamics. As illustrated in Figure 1, N EU FS ensures broad knowledge-level coverage by diversifying neuron activation patterns via clustering and facilitates hallucination mitigation by leveraging neuron consensus as a uncer-

tainty proxy. This strategy allows the selection to prioritize samples that trigger unique knowledge circuits or those where the LLM is prone to hallucinates. Extensive experiments on four models across three tasks ranging from complex reasoning to text classification demonstrate our method’s strong generalizability and competitive 1st or 2nd ranking performance. Codes have been released1 .

2

Related Work

2.1

Active Learning

AL aims at reducing annotation costs by selectively annotating the most valuable samples from a large pool of unlabeled data for model learning, while maximizing LLMs’ performances (Cohn et al., 1994). For AL, previous work have proposed to select samples based on uncertainty (Meng et al., 2019; Gal et al., 2017), semantic diversity (Yuan et al., 2020), or jointly considers both (Guo et al., 2024; Yu et al., 2023b; Hongjin et al., 2022). As AL aligns with the nature of few-shot learning, where demonstrations are crucial as well, Margatina et al. (2023) analyzed AL in the few-shot setting, discovering that similarity between the testing query to the demonstrations is the key factor in few-shot selections, which aligns with their strong performances, such as TypiClust (Hacohen et al., 2022). However, most existing methods remain datacentric or rely on output-level signals, such as predictive entropy. In the context of LLMs, it suffers from overconfidence and hallucination issues (Huang et al., 2025), and the misaligned objectives of language modeling and knowledge assessment further compound these limitations, meaning token predictive entropy cannot fully represent LLMs’ intrinsic knowledge dynamics (Kuhn et al., 2023). Though gradient-based methods are being proposed recently (Jung et al., 2025), they often run with the ground truth label and require a significant computational resource overhead. In contrast, our approach is model-centric. We bypass these lossy external proxies and output-level signals, and select demonstrations based directly on internal neuron activation patterns, ensuring that the selected samples align with the model’s cognitive processing. 2.2

Neuron Analysis

Techniques for analyzing internal model states have evolved from linear probing (Nostalgebraist, 2020) to sophisticated mechanistic interpretations (Gao 1

2

https://github.com/johnnychanv/NeuFS

What’s the capital of France?

𝑊$%

𝛿

Transformer Block

Neuron Consensus

Early Unembedding

𝛿

𝑊!"#

Neuron Pattern

Neuron Activation Set

LM Head is

𝑊!"#

LLM

Count # Unique Activation

Pa

Selection

Few-Shot Demonstrations

ris

K-Medoids Clustering

FFN

via Jaccard Distance

Figure 2: Overview of the proposed N EU FS. For each candidate, we extract the activation values from the FFN in each layer transformer during answer generation. Then we calculate the contribution score of each neuron via early unembedding, thereby identifying the activated neurons. Next, we perform Neuron Consensus Quantification by counting unique activations and K-Medoids Clustering via Jaccard distance for sample scoring and selection.

et al., 2024). Early work utilized the Logit Lens (Nostalgebraist, 2020) and Tuned Lens (Belrose et al., 2023) to map intermediate activation values in FFNs to vocabulary space. Recently, Sparse Autoencoders (SAEs) have achieved promising results in resolving neuron superposition and disentangling polysemantic features (Gao et al., 2024). Beyond feature extraction, recent studies have established a direct link between internal activation patterns and model reliability. Chen et al. (2025) showed that internal neuron consensus, which is defined as the number of activated neurons across related neurons, serves as a strong indicator of hallucination, where higher consensus correlates with factual correctness. Similarly, Cao et al. (2025) introduced mechanism-interpretable metrics to evaluate model utility beyond surface-level performance, further validating the significance of internal signals. However, while these insights link internal states to generation quality, their application to data selection remains underexplored. Our work bridges this gap by proposing a new paradigm which leverages these internal activation signals for AFSL.

3

via early unembedding to filter for neurons that contribute significantly to the model’s final prediction. Afterwards, we execute Neuron-Aware Active Few-Shot Selection, which integrates NeuronAware Sample Diversification with Neuron Consensus Quantification. This combination prioritizes samples that trigger unique knowledge circuits that LLM tends to hallucinate, while ensuring the selected samples remain representative and diverse. 3.1

Neuron Activation Identification

To capture the internal dynamics of LLMs, we focus on neuron activations in FFNs, which are widely regarded as the key-value memories storing factual knowledge (Geva et al., 2021). However, neuron activations does not strictly imply task relevance, neurons often exhibit polysemanticity or encode noise. To filter for neurons that genuinely support the model’s internal reasoning process, we employ Early Unembedding (Chen et al., 2025). Formally, consider an LLM with L layers. For an input sequence x, let hl denote the input hidden state to the FFN at the l-th layer. The FFN l ∈ Rd×df f , consists of an up-projection matrix Win a non-linear activation function σ(·), and a downl projection matrix Wout ∈ Rdf f ×d , where df f is the intermediate dimension of the FFN and d represents the dimension of hidden states. The neuron activation values kl ∈ Rdf f are computed as:

Methodology

N EU FS operates as a pipeline for AFSL, instead of relying output-level signals, we proposed to shift the selection paradigm toward internal model dynamics by utilizing neuron activation patterns to represent samples directly. As illustrated in Figure 2, the framework consists of three sequential stages designed to capture the LLM’s internal neuron states and uncertainty. First, we retrieve the raw activation values from the FFNs across all transformer layers for each candidate sample. Second, we employ Neuron Activation Identification

l kl = σ(hl Win ),

where k l represents the activation value at the transformer layer l, and kil is the i-th activation value. While the activation value kil indicates how a neuron is activated, it does not directly reveal the semantic concept it promotes. To bridge the gap 3

between internal states and output vocabulary, we analyze each neuron’s contribution to the final prediction through the unembedding matrix in the LM head Eu ∈ Rd×V , where V is the vocabulary size, to decode neuron activations into a distribution over the vocabulary. Let ŷ be the prediction token generated by the l model for the input x. The contribution score Sŷ,i of the i-th neuron in layer l to the predicted token ŷ is calculated by projecting its corresponding output vector directly into the vocabulary space:

few-shot samples that are both representative of the underlying task knowledge and informative for correcting potential model hallucinations. As shown in Figure 2, our pipeline integrates two distinct signals derived from the internal model dynamics: neuron activation patterns and neuron consensus. Specifically, we first perform clustering based on the identified neuron sets to ensure the diversity of the selected examples. Simultaneously, we quantify the neuron consensus for each sample by counting the unique activated neurons during the generation process, serving as a proxy for hallucination risk. Finally, we employ a dual-criteria scoring that balances these two metrics to rank and select the optimal sample from each cluster.

l l Sŷ,i = kil · (wout,i · eŷ ), l where wout,i is the i-th row of the down-projection matrix Wout , and eŷ is the embedding vector corresponding to the predicted token ŷ in Eu . l explicitly quantifies how much This score Sŷ,i neuron i in layer l contributes to the predicted token ŷ. Following Chen et al. (2025), we identify the set of valid activated neurons Nact by filtering out those with contribution scores below the threshold. Specifically, the threshold is defined through a topk process, by selecting the highest k neuron activations across all activations in the FFN layers. For a given threshold η, the activated neuron set is defined as the collection of neurons whose contribution scores exceed this value: n o l N (x, ŷ) = (i, l) | Sŷ,i >η ,

Neuron-Aware Sample Diversification To ensure the selected demonstrations cover diverse semantic and knowledge patterns, we group the unlabeled samples based on their internal activation patterns. Unlike methods that rely on external embeddings, we utilize the sparse set of activated neurons Nact (x) as the sample representation. Given that Nact (x) is a set of discrete indices (layer, neuron), we employ the Jaccard similarity to measure the similarity between two samples xi and xj : DJ (xi , xj ) =

where yt is the t-th token in the predicted sequence, and η is dynamically determined to retain the top-k most contributive neurons globally. Specifically, for computational efficiency, we employ a twostage filtering process. We first retrieve the top-n2 neurons from each layer based on raw activation to form a neuron pool. From this pool, we rank all neurons by their contribution scores and select the top-k neurons as the activated neurons, which implicitly sets η to the contribution score of the kth ranked neuron. This resulting set Nact serves as a sparse representation of the knowledge invoked by the LLM to process sample x, which forms the basis for subsequent selection.

Neuron Consensus Quantification While diversification ensures coverage, it does not account for the quality or difficulty of the samples. Drawing on findings that internal neuron activation patterns correlate strongly with model hallucinations (Chen et al., 2025), we introduce Neuron Consensus as a metric for selecting informative and difficult samples. Previous work suggests that higher neuron consensus, where a smaller number of unique neurons are activated during the generation process, corresponds to fewer hallucinations. Conversely, samples with lower consensus indicate scenarios where the model’s internal knowledge is sparse or conflicted, making them prone to hallucination. For AFSL, these low-consensus samples are the most valuable as demonstration with human annotation guidance. We quantify the neuron consensus Q(x) simply as the count of unique valid activations identified in the early unembedding step, a

Neuron-Aware Active Few-Shot Selection

After identified the valid activated neurons for each candidate, we apply them to the selection process. The core objective of N EU FS is to select a set of 2

(1)

We then apply the K-Medoids algorithm (Kaufman, 1990) to partition the candidate pool into C clusters, where C corresponds to the target number of shots in few-shot experiments.

Nact (x) = N (x, y0 ) ∪ ... ∪ N (x, yt ),

3.2

|Nact (xi ) ∩ Nact (xj )| , |Nact (xi ) ∪ Nact (xj )|

n is set to 2000 for all experiments.

4

higher value means lower consensus: Q(x) = |Nact (x)|,

when combining different features, we compute a unified distance for the sample selection process by summing the distances derived from each feature.

(2)

Our strategy prioritizes samples with higher Q(x), aiming to retrieve samples that trigger more unique circuits which the LLMs tend to hallucinate. 3.3

4.2

Datasets

We evaluated N EU FS and baselines on three datasets from reasoning to classification tasks:

Sample Scoring and Selection

To further select the final demonstrations from each cluster, we design a dual-criteria scoring mechanism that integrates both representativeness (proximity to the cluster center) and informativeness (low neuron consensus). For each cluster Ci with medoid µi , we evaluate every sample x ∈ Ci . First, we normalize the distance and consensus metrics within the cluster to ensure comparable scales. Let D̃J (x, µi ) be the min-max normalized Jaccard distance to the medoid, and Q̃(x) be the min-max normalized number of unique activated neurons. We define the final selection score Score(x) as a weighted combination of these normalized metrics:

• MMLU-Pro (Wang et al., 2024). An advanced reasoning benchmark comprising 12,034 samples across 14 domains, which comprises ten options per question. • Edu-Feedback (Wu and Schunn, 2023). A binary classification dataset for evaluating feedback quality (explanatory vs. nonexplanatory) in educational systems. Collected from a real essay writing course, we split the annotated data into 1,799 training and 14,228 testing samples. • TREC (Li and Roth, 2002). A 6-way question classification dataset. It consists of short opendomain questions labeled into six classes, split into 5,452 training and 500 testing samples.

Score(x) = τ · Q̃(x) + (1 − τ ) · D̃J (x, µi ). (3) where τ ∈ [0, 1] is a hyperparameter controlling the trade-off between prioritizing low-consensus samples (hallucination correction) and representative samples (cluster centrality), which we have further discussions in Section.5.2. The sample with the highest score in each cluster are selected.

4

Experiments and Results

4.1

Setup

4.3

Baselines

We compare N EU FS against six AFSL baselines: • Random. Random selection with fixed seed. • Entropy. Selects samples based on predictive uncertainty derived from output logits. We evaluate Highest-Entropy (ranking samples by entropy score) and Diverse-Entropy (stratified sampling across entropy bins).

We evaluate N EU FS against six baselines and their variants using four instruction-tuned LLMs (Llama3 3B/8B and Qwen3 4B/8B) (Grattafiori et al., 2024; Yang et al., 2025) on three reasoning and classification datasets: MMLU-Pro (Wang et al., 2024), Edu-Feedback (Wu and Schunn, 2023), and TREC (Li and Roth, 2002), stats are in Table 5. We use non-reasoning mode with 5, 10, 20, and 30 shots, averaged over three inference runs with different seeds. Moreover, we categorize methods by their Information Type, which denotes the source of information used for selection. These categories include Semantic signals from external embedding models, Entropy from output logits, Linguistic3 , and our proposed neuron activation patterns. Specifically,

• TypiClust (Hacohen et al., 2022). A semanticonly approach that encodes text via BERT and selects representative samples with K-Means. • Patron (Yu et al., 2023b). Combines uncertainty and semantic. It applies graph-based uncertainty propagation to reduce entropy outliers before performing clustering selection. • FastVoteK (Hongjin et al., 2022). A semantic diversity method that constructs a graph to select samples maximizing mutual distances. • VoteK (Hongjin et al., 2022). Extension of FastVoteK, selects samples from diverse entropy bins to consider uncertainty.

3

We extract sparse logical linguistic feature for feature augmentation, as demonstrated in Appendix.C

5

4.4

Results

Results on Classification Task. The advantage of the neuron-aware selection strategy consistency brings performance rises to classification tasks as shown in Table 2 and Table 3. For 8B models shown in Table 2, N EU FS consistently outperforms baselines that rely on entropy information. On the Edu-Feedback dataset, the proposed N EU FS outperforms all other baselines in terms of accuracy with both Llama3 and Qwen3 models, with competitive Macro-F1 values. Similarly, on the TREC dataset, the proposed NeuFS demonstrated state-of-the-art performances in both F1 values and accuracies with Qwen3-8B. For 4B-level LLMs, this trend persists as presented in Table 3. N EU FS demonstrates substantial gains in specialized domains. For instance, on the Edu-Feedback task with Qwen3-4B, it achieves a F1 of 0.692, significantly outperforming TypiClust and Highest-Entropy-based methods. While some baselines like Fast-VoteK (S.+L.) appear competitive on datasets like TREC, these methods often depend on the participation of external knowledge. N EU FS’s ability to achieve superior results using only internal neuron dynamics proves its efficacy as a more principled, model-aware selection strategy. Rather than relying on surface-level cues such as semantic similarity or output probabilities, N EU FS directly leverages the model’s internal neuron activations to select informative examples for learning. It promotes diversity by identifying distinct activation patterns that capture complementary knowledge, and employs a neuron-consensus score to pinpoint instances where the model is most prone to errors or hallucinations. By explicitly targeting internal knowledge gaps, N EU FS improves sample efficiency and often outperforms prior selection strategies, particularly for domain-specific tasks.

By comparing methods across various Info Types, as detailed below, we show that shifting from output-level signals to internal neuron dynamics consistently yields better performance. (a) 8B Models Method

InfoType

Llama-3.1-8B

Qwen3-8B

Random Patron

N/A S.+E.

0.325±0.007 0.313±0.013

0.388±0.079 0.416±0.074

Entropy

Highest Diverse

0.317±0.007 0.324±0.003

0.394±0.095 0.392±0.066

TypiClust

S. L. S.+L.

0.323±0.007 0.322±0.006 0.318±0.006

0.398±0.085 0.382±0.072 0.383±0.087

FastVoteK

S. L. S.+L.

0.316±0.004 0.323±0.003 0.318±0.009

0.379±0.103 0.373±0.089 0.402±0.075

VoteK

S.+E. S.+E.+L.

0.318±0.004 0.309±0.007

0.391±0.068 0.402±0.075

NeuFS

Neuron

0.327±0.007

0.418±0.069

Method

InfoType

Llama-3.2-3B

Qwen3-4B

Random Patron

N/A S.+E.

0.249±0.005 0.244±0.009

0.412±0.015 0.391±0.045

Entropy

Highest Diverse

0.245±0.005 0.244±0.012

0.430±0.024 0.414±0.019

TypiClust

S. L. S.+L.

0.242±0.005 0.248±0.003 0.243±0.004

0.437±0.016 0.376±0.026 0.398±0.028

FastVoteK

S. L. S.+L.

0.245±0.001 0.242±0.002 0.242±0.003

0.386±0.017 0.401±0.026 0.420±0.014

VoteK

S.+E. S.+E.+L.

0.246±0.003 0.233±0.008

0.401±0.012 0.374±0.012

NeuFS

Neuron

0.251±0.005

0.452±0.010

(b) 3B & 4B Models

Table 1: Average accuracy (± standard deviation) on the MMLU-Pro, aggregated across 5, 10, 20, and 30-shot settings. Bold and italics indicate the best and secondbest performance, respectively. InfoType denotes the source of information used for selection: Semantic (S.), Entropy (E.), Linguistic (L.), and Neuron activations.

Results on Reasoning Task. Table 1 highlights the limitations of traditional information types in complex reasoning scenarios, i.e MMLU-Pro. While methods relying on Semantic signals like TypiClust improve over random selection, they are consistently outperformed by N EU FS. By utilizing the Neuron Info, N EU FS achieves the highest accuracy of 0.452 on Qwen3-4B and 0.418 on Qwen38B. It is worth noting that N EU FS also surpasses Patron, a method combining both semantic and entropy signals. This result suggests that internal neuron consensus provides a more reliable signal for demonstration selection than combining external semantic density with predictive uncertainty.

5

Ablation Study

5.1

Representation Variants

To validate the effectiveness of using sparse neuron activations as sample representations, we compare N EU FS against various dense vector representations. We compare with both Encoder-based and Decoder-based models. For Encoder-based representations, we utilize SimCSE (Gao et al., 2021), a sentence embedding model based on BERT. For Decoder-based representations, we utilizes the Qwen-Embedding-0.6B, which is specifically designed to generate high-quality text embeddings aligned with the Qwen series LLMs. 6

Model Method

InfoType

Random Patron

N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

Entropy TypiClust FastVoteK VoteK NeuFS

Llama-3.1-8B Edu-Feedback TREC Macro-F1 Acc Macro-F1 Acc 0.645±0.053 0.662±0.065 0.777±0.052 0.764±0.070 0.643±0.027 0.690±0.025 0.807±0.046 0.809±0.045 0.619±0.027 0.625±0.030 0.790±0.029 0.785±0.031 0.670±0.028 0.696±0.029 0.829±0.030 0.827±0.033 0.642±0.049 0.683±0.071 0.798±0.026 0.791±0.035 0.664±0.014 0.695±0.021 0.806±0.026 0.802±0.038 0.623±0.055 0.637±0.066 0.814±0.030 0.804±0.039 0.658±0.012 0.694±0.004 0.828±0.024 0.825±0.030 0.654±0.027 0.676±0.032 0.832±0.046 0.825±0.048 0.657±0.042 0.688±0.058 0.809±0.051 0.813±0.052 0.660±0.028 0.692±0.027 0.832±0.019 0.822±0.020 0.653±0.043 0.676±0.054 0.818±0.052 0.810±0.051 0.660±0.024 0.698±0.016 0.834±0.030 0.823±0.036

Qwen3-8B Edu-Feedback TREC Macro-F1 Acc Macro-F1 Acc 0.612±0.084 0.625±0.097 0.844±0.022 0.823±0.030 0.659±0.022 0.709±0.037 0.825±0.023 0.824±0.017 0.555±0.049 0.557±0.051 0.837±0.035 0.839±0.031 0.632±0.035 0.663±0.070 0.856±0.012 0.841±0.017 0.605±0.106 0.629±0.122 0.831±0.022 0.828±0.022 0.626±0.025 0.637±0.033 0.835±0.030 0.826±0.040 0.589±0.091 0.600±0.101 0.851±0.008 0.835±0.005 0.640±0.027 0.662±0.038 0.840±0.017 0.831±0.021 0.621±0.059 0.632±0.066 0.854±0.018 0.843±0.017 0.614±0.097 0.631±0.108 0.861±0.022 0.854±0.011 0.668±0.020 0.701±0.021 0.839±0.006 0.839±0.010 0.631±0.032 0.648±0.047 0.839±0.006 0.826±0.022 0.663±0.014 0.711±0.019 0.862±0.027 0.858±0.020

Table 2: Average performances (± standard deviation) on the TREC and Edu-Feedback datasets with 8B models. Bold and italics indicate the best and second-best performance, respectively. Model Method

InfoType

Random Patron

N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

Entropy TypiClust FastVoteK VoteK NeuFS

Llama-3.2-3B Edu-Feedback TREC Macro-F1 Acc Macro-F1 Acc 0.557±0.029 0.558±0.030 0.699±0.041 0.707±0.049 0.569±0.111 0.597±0.134 0.727±0.051 0.749±0.033 0.501±0.080 0.506±0.074 0.663±0.022 0.638±0.030 0.657±0.034 0.671±0.042 0.736±0.048 0.759±0.020 0.545±0.107 0.557±0.116 0.741±0.049 0.744±0.039 0.606±0.096 0.624±0.116 0.712±0.030 0.740±0.069 0.537±0.033 0.538±0.033 0.753±0.042 0.750±0.049 0.507±0.046 0.509±0.044 0.760±0.026 0.761±0.030 0.548±0.104 0.555±0.101 0.718±0.044 0.739±0.042 0.541±0.059 0.543±0.061 0.726±0.034 0.775±0.017 0.526±0.027 0.528±0.029 0.755±0.035 0.771±0.023 0.572±0.065 0.577±0.076 0.757±0.025 0.776±0.024 0.624±0.007 0.636±0.008 0.754±0.032 0.761±0.044

Qwen3-4B Edu-Feedback TREC Macro-F1 Acc Macro-F1 Acc 0.653±0.080 0.667±0.094 0.859±0.037 0.860±0.037 0.685±0.027 0.742±0.030 0.842±0.023 0.853±0.024 0.555±0.065 0.557±0.064 0.855±0.012 0.857±0.014 0.671±0.056 0.684±0.066 0.862±0.019 0.867±0.013 0.626±0.095 0.640±0.111 0.853±0.014 0.866±0.003 0.636±0.015 0.642±0.017 0.862±0.008 0.863±0.008 0.613±0.086 0.623±0.096 0.855±0.020 0.858±0.013 0.673±0.029 0.707±0.047 0.873±0.010 0.871±0.008 0.662±0.046 0.673±0.096 0.861±0.027 0.867±0.017 0.655±0.083 0.679±0.054 0.847±0.026 0.857±0.025 0.664±0.044 0.681±0.056 0.853±0.007 0.850±0.012 0.681±0.055 0.702±0.067 0.854±0.037 0.846±0.023 0.692±0.021 0.725±0.038 0.865±0.019 0.878±0.015

Table 3: Average performances (± standard deviation) on the TREC and Edu-Feedback datasets with 3B and 4B models. Bold and italics indicate the best and second-best performance, respectively.

#Shot

5 10 20 30 Avg. 5 10 20 30 Avg. 5 10 20 30 Avg.

NeuFS w/ Qwen-Embed4

NeuFS w/ simcse

MMLU-Pro 0.2851±0.0211 0.3598±0.0158 0.3823±0.0113 0.3667±0.0129 0.4517±0.0040 0.4622±0.0073 0.4863±0.0039 0.4638±0.0052 0.4013±0.0887 0.4131±0.0577 Edu-Feedback 0.6362±0.0018 0.6308±0.0009 0.6492±0.0018 0.6827±0.0013 0.5990±0.0020 0.7219±0.0002 0.7162±0.0005 0.7118±0.0016 0.6502±0.0489 0.6868±0.0409 TREC 0.8620±0.0000 0.8433±0.0031 0.8533±0.0050 0.7847±0.0012 0.8027±0.0023 0.7667±0.0031 0.8447±0.0031 0.7847±0.0031 0.8407±0.0263 0.7948±0.0334

cific information provided by neuron activations, which directly links to knowledge circuits, is more effective for few-shot selection than the coarsegrained semantic proximity offered by dense vectors on reasoning and classification tasks.

NeuFS

0.3341±0.0232 0.3911±0.0117 0.4593±0.0054 0.4866±0.0036 0.4178±0.0687

5.2 0.7088±0.0009 0.6928±0.0014 0.7033±0.0012 0.7378±0.0004 0.7107±0.0193

Impact of Neuron Sparsity k

The parameter k determines the sparsity of the neuron representation Nact . We vary k from 2,000 to 10,000 to analyze how the granularity of the internal signal affects selection quality. As illustrated in Figure 3, the overall performance fluctuation is relatively mild, suggesting that N EU FS is generally robust to the specific activation threshold. However, we observe a distinct difference in sensitivity between model sizes: the smaller Qwen3-4B model exhibits more noticeable performance variance compared to the Qwen3-8B, which remains highly stable across the spectrum. This indicates that while larger models may possess redundant knowledge circuits that buffer against selection noise, smaller models are more sensitive

0.8287±0.0031 0.8727±0.0012 0.8600±0.0020 0.8687±0.0023 0.8575±0.0199

Table 4: Representation model variants.

As presented in Table 4, results demonstrate that N EU FS consistently outperforms both dense representation variants. While the Decoder-based Qwen generally surpasses the Encoder-based baseline SimCSE, it still underperforms compared to our neuron-aware method. This confirms that the spe7

to noises and the selection of k.

approaches zero, and minimizing hallucination risk through Neuron Consensus, which prevails when τ approaches one. We analyze the impact of τ on model performance separately for different model sizes, as illustrated in Figure 4.

MMLU-Pro Performance Variant across Neuron-K Avg Acc Score

0.5 0.4 0.3 0.2

For 4B-level models. As shown in Figure 4(a), the smaller model exhibits significant volatility across different weight settings. Crucially, though N EU FS achieved satisfying performance when τ is set to 0.5, the average performance represented by the dashed purple line achieves its maximum value when τ is set to 0, indicating that the 4B model could benefits most from pure sample diversification. As τ increases, performance fluctuates and generally declines. This suggests that neuron consensus signals could be noisier in smaller models. Less capacity leads to higher uncertainty across most candidates, reducing signal reliability and distinguishability. As a result, diversity and representativeness derived from neuron features become the dominant factors in AFSL.

Model

Qwen3-8B Qwen3-4B

0.1 0.0

2000

4000

6000

8000

10000

k (Neuron HyperParam)

Figure 3: Ablation study on the k which used to define the activation threshold. The bar plot shows average performance across 5,10,20,30 shots on Qwen3 series.

5.3

Impact of Sample Scoring Weight τ

MMLU-Pro Performance Variant across

0.475 0.450

Avg Acc Score

0.425 0.400 0.375 0.350

For 8B-level models. In contrast, the larger model in Figure 4(b) displays a much smoother trend. The average performance clearly benefits from the integration of internal signals, peaking when τ is 0.5. This indicates that for 8B models, which likely possess more stable and meaningful internal representations, the neuron consensus metric effectively complements diversity. However, similar to the 4B model, pushing τ to 1 causes a sharp drop, confirming that while consensus is valuable, it cannot entirely replace diversity coverage.

Shot Setting

5 10 20 30 avg

0.325 0.300 0.275 0.0

0.2

0.4

0.6

(Weight HyperParam)

0.8

1.0

(a) Performance on Qwen3 4B

MMLU-Pro Performance Variant across

0.500 0.475

Avg Acc Score

0.450

6

0.425

In this work, we introduced N EU FS, an AFSL framework that shifts the selection paradigm from output-level signals to internal neuron dynamics. By leveraging activation patterns, we proposed a dual-criteria scoring method that combines NeuronAware Sample Diversification for coverage with Neuron Consensus for hallucination mitigation. Experiments on reasoning and classification tasks confirm N EU FS’s superiority over baselines, validating internal signals offer greater robustness than traditional similarity and output-level uncertainty metrics. Beyond performance gains, this work highlights the critical role of model internal dynamics in data selection, encouraging future research to leverage internal model states for designing more robust and theoretically grounded strategies.

0.400 Shot Setting

0.375

5 10 20 30 avg

0.350 0.325 0.0

0.2

0.4

0.6

(Weight HyperParam)

0.8

Conclusion

1.0

(b) Performance on Qwen3 8B

Figure 4: Ablation study on the weight hyper-parameter τ across different model sizes. The shaded regions represent the standard deviation across three runs.

The hyperparameter τ governs the trade-off between maximizing representativeness via cluster centric distance, which becomes dominant when τ 8

Limitations

creases (linear trend slope = −0.0165, red dashed line), while the orange line confirms the monotonically increasing activation count across bins. This validates that samples with lower neuron consensus tend to be more challenging for the model, supporting neuron consensus as an informativeness signal for identifying hallucination-prone samples.

Despite the effectiveness of N EU FS, we acknowledge several limitations. The proposed framework relies on accessing internal FFN activations and unembedding matrices, limiting its applicability to open-weights models rather than black-box APIs. Also, while we employ two-stage filtering for efficiency, analyzing neuron patterns across large unlabeled pools incurs higher computational overhead compared to retrieving static pre-computed embeddings.

Acknowledgement This research was supported in part by the University of Pittsburgh Center for Research Computing and Data, RRID:SCR_022735, through the resources provided. Specifically, this work used the H2P cluster, which is supported by NSF award number OAC-2117681. The research is also funded by the Learning Research Development Center, University of Pittsburgh. We are also grateful to the Pitt NLP group, and the anonymous reviewers for their constructive feedback and suggestions.

A A.1

Accuracy

#Activations (×10³)

33.8

#Unique Neuron Activations (×10³)

Accuracy

Linear trend (slope=-0.0165)

0.60 0.55 0.50 0.45 0.40 0.35 0.30 0.25 0.20 0.15

33.6 33.4 33.2 t-test: t = 3.5698, p < 0.001

1

2

3

4

5

6

7

8

9

Bin Index (sorted by #Unique Neuron Activations)

10

33.0

Figure 5: Relationship between #Unique Neuron Activations and prediction accuracy on MMLU-Pro across 10 equal-width bins. Blue bars indicate accuracy per bin; the dashed red line shows the negative linear trend (slope = −0.0165). The orange line (right axis) shows the corresponding #Unique Neuron Activations. A two-sample t-test over 50 bins confirms a significant difference between correct and incorrect predictions (t = −3.5698, p < 0.001).

Statistical Validation of Neuron Activation Signals

A.2

RQ.1: Is Neuron Consensus Correlates Prediction Correctness?

RQ.2: Does Low-Consensus Samples as Few-shot Improves Performance?

Building on the finding that lower neuron consensus, i.e., higher #neuron activations, indicates model uncertainty, we further investigate whether selecting demonstrations with lower neuron consensus as few-shot examples can improve inference performance. Specifically, we sample 30 queries from MMLU-Pro as inference inputs. For each query, we exclude the query itself from the dataset to construct a candidate pool for 5-shot selection. For each inference query, we rank all candidates in the pool by their #Unique Neuron Activations and use a sliding window (step size 1) to enumerate all possible 5-shot demonstration sets, where each set corresponds to a different level of neuron consensus among the selected demonstrations. We measure prediction accuracy across 20 equal-width bins. To eliminate query-specific difficulty bias, we compute a per-sample relative accuracy:

We revalidate the findings from prior work (Cao et al., 2025; Chen et al., 2025) by measuring the relationship between prediction correctness and the number of unique neuron activations on MMLUPro. Specifically, we extract neuron activations by querying samples to LLMs individually, then record each sample’s prediction correctness and its corresponding number of unique neuron activations (#Unique Neuron Activations). We group the correctly and incorrectly predicted samples into 50 bins each and compare the two distributions via a two-sample t-test, which confirms a statistically significant difference (t = −3.5698, p < 0.001): incorrectly predicted samples activate significantly more neurons than correctly predicted ones. To visualize the trend, we further aggregate all samples into 10 equal-width bins sorted by #Unique Neuron Activations, as shown in Figure 5. The accuracy (blue bars) exhibits a general downward trend as the number of activated neurons in-

∆Acc = Accsample − Accquery ,

(4)

where Accsample is the correctness of a given 5-shot configuration and Accquery is the mean accuracy across all 5-shot pairs for the same query. 9

Figure 6 presents a scatter plot of the 20 binned data points with a linear regression fit and 95% confidence band. The strong positive correlation (Pearson r = 0.6664, p < 0.001) indicates that selecting demonstrations with higher #Unique Neuron Activations — i.e., samples the model is more uncertain about — leads to measurably better inference performance.

Acc

Experiment Settings.

Baseline Algorithms

To perform comparison on various CSAL algorithms, we selected six baseline methods, as follows.

0.00 0.01 Pearson r = 0.6664 p < 0.001

0.02 33.2

33.4

33.6

#Unique Neuron Activations of 5-Shot Demonstrations (×10³)

• Random. We apply the random package in Python with a fix seed of 42 to perform 5, 10, 20, and 30 shot demonstration selection.

33.8

Figure 6: #Unique Neuron Activations of 5-shot demonstrations vs. ∆Acc on MMLU-Pro. Each point represents one of 20 equal-width bins. The red line shows the linear regression fit with a 95% confidence band (shaded region). Pearson r = 0.6664, p < 0.001.

• Entropy. For entropy, we apply both highestentropy and diverse-entropy selection strategies. We begin by extracting LLMs’ entropies using a few-shot prompting approach with 5 randomly sampled shots. The entropies are then computed from the output logits. For highest-entropy selection, following prior work (Schröder et al., 2021), we rank all samples by their entropy values and select the top 5, 10, 20, and 30 samples. For diverse-entropy selection, we partition the samples into multiple bins according to the number of shots, and then randomly select one sample from each bin to construct the final dataset.

Figure 7 provides a complementary view, displaying ∆Acc for each rank bin with color coding. The clear shift from predominantly negative ∆Acc at low ranks (demonstrations with fewer unique activations) to predominantly positive ∆Acc at high ranks (demonstrations with more unique activations) visually confirms the positive correlation: selecting challenging, high-consensus demonstrations as few-shot examples yields better model performance. #Unique Neuron Activations of Demos

33.0k

33.3k

33.5k

33.7k

• TypiClust (Hacohen et al., 2022). The method that purely considers the semantic information. Typiclust firstly encodes all textual samples with text representation models such as BERT, then performs unsupervised clustering with the classic KMeans algorithm, with the cluster number being set to the same as number of shots. Finally it selects sample from each cluster.

33.9k

Pearson r = 0.6664, p < 0.001

0.01

Acc

B.1

B.2

0.01

0.02

Experiments

We experimented with 5, 10, 20, and 30 examples in few-shot setting and report the average performance. All experiments are done with the VLLM (Kwon et al., 2023) framework on four A100s, with a fixed temperature of 0.6. All reported results are averaged cross three runs, each with a different random seed.

Linear fit (r = 0.6664)

0.02

B

0.00 0.01

Acc 0 Acc < 0

0.02 0

1

2

3

4

5

6

7

8

9 10 11 12 13 14 15 16 17 18 19

Rank (sorted by #Unique Neuron Activations of Demos, low high)

Figure 7: ∆Acc across 20 rank bins sorted by #Unique Neuron Activations of the 5-shot demonstrations (low → high). Green bars: ∆Acc ≥ 0; red bars: ∆Acc < 0. The top axis shows the corresponding #Unique Neuron Activations values. Demonstrations with lower neuron consensus (more unique activations) tend to improve inference performance.

• Fast-Votek (Hongjin et al., 2022). This method is purely semantic-based, which performs a graph construction with semantic distances and the K nearest neighbour algorithm, then selects samples that could maximize the distances between all samples in the selected set. 10

B.4

• Patron (Yu et al., 2023b), which simultaneously considers both entropy information and semantic information. It constructed a graph based on semantic distances, then performed uncertainty propagation on the graph, which mitigates entropy outliers. Finally, it performs unsupervised clustering, selecting a sample from each cluster.

Here we provide the hyper-parameter setting for the hyperparameter K, which defines the threshold for activation neuron identification in Equation.3, and the hyperparameter τ , which defines the weighting parameter in Equation.6. Model K MMLU-Pro Llama-3.1-8B 6000 Llama-3.2-3B 6000 Qwen3-8B 8000 Qwen3-4B-Instruct-2507 8000 Edu-Feedback Llama-3.1-8B 500 Llama-3.2-3B 1000 Qwen3-8B 1000 Qwen3-4B-Instruct-2507 4000 TREC Llama-3.1-8B 3000 Llama-3.2-3B 4000 Qwen3-8B 5000 Qwen3-4B-Instruct-2507 5000

• Votek (Hongjin et al., 2022), in addition to fast-votek, this algorithm incrementally considers the entropy information, selecting samples across different levels of entropy bins. B.3

Datasets

We used three datasets in our work, all data are anonymized. Edu-Feedback. Explanatory peer-feedback classification is a binary text classification dataset, which distinguishes comments with explicit rationales from non-explanatory ones, serving as a key measure of review quality. It is a crucial task in building educational AI systems. We collected and annotated more than 14,000 review samples from a real essay writing course. For experiments, we take 1799 samples as the training set, and the rest 14,228 samples as the testing set.

B.5

#Class 10 2 6

#Candidate 2000 1799 5452

0.8 1 0.5 0.5 0.2 1 0.5 0.5 0.25 0.5 1 1

Results

We demonstrated the complete experimental results from Table.7 to Table.12.

C

Linguistic Features.

To incorporate additional linguistic information, we extract sparse linguistic features and integrate them into the selection process. We collect three types of linguistic features: count-based, Rhetorical Structure Theory (RST) (Mann and Thompson, 1988) features and topical features. For count-based features, we count number of indicator features such as causal markers, rhetorical terms, relative clauses, critique and praise expressions, and action verbs.5 For RST-based feature, we employed Qwen3-Next80B (Yang et al., 2025) to get the RST tree labels, then representing the results with a count-based vector. For RST Analysis, conversational example is demonstrated in Figure 8. For topical analysis, we segmented long text into short sentences, clustered them with K-Means, and finally vectorized each sample using counts to obtain sparse features.

MMLU-Pro. MMLU-Pro is an enhanced version of the Massive Multitask Language Understanding (MMLU) benchmark. It increases the difficulty by expanding the candidate options from 4 to 10 and focusing on more complex, reasoning-intensive questions across 14 diverse domains. This dataset provides a more robust evaluation of a model’s advanced knowledge and analytical capabilities compared to the original benchmark. For experiments, we randomly selected 2000 samples as the candidate pool and the rest samples as the testing set. Source Domain Multi-disciplinary Peer-feedback Question

τ

Table 6: Hyper-parameter Setting

TREC. We use the TREC question classification dataset, coarse-grained, 6-way. It contains 5,452 training and 500 testing questions, each labeled with one of six categories: ABBR, DESC, ENTY, HUM, LOC, and NUM. Each instance is a short, open-domain question.

Dataset MMLU-Pro Edu-Feedback TREC

Hyper-parameter Settings

#Test 10032 14228 500

Table 5: Data Statistics.

5

NLTK (https://www.nltk.org) is employed for data processing, keyword dictionaries are manually defined.

11

Llama-3.1-8B-Instruct Method Random Patron Entropy TypiClust fast-votek votek NeuronPattern

Method Random Patron Entropy TypiClust fast-votek votek NeuronPattern

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

5 Macro-F1 0.3401±0.0142 0.3418±0.0117 0.3358±0.0088 0.3379±0.0183 0.3411±0.0199 0.3387±0.0201 0.3350±0.0183 0.3307±0.0201 0.3349±0.0226 0.3367±0.0229 0.3308±0.0223 0.3232±0.0272 0.3463±0.0124

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

Macro-F1 0.2349±0.0579 0.2374±0.0601 0.2343±0.0544 0.2003±0.0796 0.2420±0.0520 0.2389±0.0509 0.2409±0.0539 0.2342±0.0552 0.2215±0.0806 0.2237±0.0716 0.2321±0.0503 0.2081±0.0646 0.2435±0.0512

10 Acc 0.3292±0.0193 0.3305±0.0177 0.3236±0.0139 0.3266±0.0252 0.3321±0.0258 0.3293±0.0258 0.3260±0.0243 0.3211±0.0246 0.3268±0.0280 0.3281±0.0277 0.3210±0.0266 0.3142±0.0289 0.3371±0.0174

Macro-F1 0.3428±0.0179 0.3275±0.0213 0.3297±0.0280 0.3302±0.0269 0.3371±0.0196 0.3344±0.0248 0.3250±0.0259 0.3234±0.0306 0.3318±0.0287 0.3332±0.0260 0.3261±0.0265 0.3258±0.0263 0.3374±0.0144

Acc 0.2481±0.0470 0.2516±0.0485 0.2484±0.0444 0.2261±0.0570 0.2492±0.0405 0.2477±0.0420 0.2483±0.0422 0.2457±0.0440 0.2394±0.0592 0.2379±0.0519 0.2411±0.0391 0.2227±0.0482 0.2561±0.0439

Macro-F1 0.2401±0.0612 0.2339±0.0553 0.2361±0.0634 0.2285±0.0716 0.2313±0.0649 0.2411±0.0543 0.2276±0.0624 0.2333±0.0578 0.2257±0.0792 0.2313±0.0711 0.2342±0.0609 0.2140±0.0771 0.2434±0.0534

5

20 Acc Macro-F1 0.3318±0.0231 0.3309±0.0277 0.3157±0.0276 0.3135±0.0317 0.3205±0.0325 0.3242±0.0317 0.3194±0.0334 0.3355±0.0261 0.3262±0.0252 0.3281±0.0255 0.3247±0.0292 0.3291±0.0290 0.3145±0.0307 0.3249±0.0296 0.3137±0.0336 0.3247±0.0280 0.3216±0.0338 0.3305±0.0244 0.3235±0.0295 0.3209±0.0361 0.3161±0.0304 0.3312±0.0278 0.3145±0.0301 0.3139±0.0294 0.3263±0.0182 0.3321±0.0227 Llama-3.2-3B-Instruct

10

30 Acc 0.3208±0.0347 0.3020±0.0362 0.3163±0.0366 0.3248±0.0334 0.3174±0.0311 0.3188±0.0338 0.3150±0.0332 0.3160±0.0337 0.3209±0.0292 0.3123±0.0384 0.3212±0.0322 0.3021±0.0331 0.3224±0.0292

Macro-F1 0.3270±0.0235 0.3135±0.0336 0.3147±0.0322 0.3354±0.0190 0.3282±0.0226 0.3273±0.0265 0.3248±0.0285 0.3222±0.0280 0.3331±0.0238 0.3190±0.0301 0.3229±0.0302 0.3137±0.0333 0.3320±0.0232

Acc 0.2422±0.0566 0.2321±0.0564 0.2388±0.0517 0.2507±0.0539 0.2371±0.0465 0.2434±0.0537 0.2427±0.0562 0.2447±0.0488 0.2431±0.0565 0.2408±0.0559 0.2458±0.0562 0.2380±0.0558 0.2499±0.0466

Macro-F1 0.2433±0.0588 0.2367±0.0702 0.2276±0.0661 0.2392±0.0621 0.2307±0.0557 0.2377±0.0632 0.2328±0.0613 0.2348±0.0578 0.2322±0.0675 0.2344±0.0620 0.2386±0.0616 0.2250±0.0721 0.2333±0.0589

20 Acc 0.2532±0.0499 0.2429±0.0411 0.2501±0.0507 0.2469±0.0568 0.2429±0.0495 0.2517±0.0445 0.2379±0.0458 0.2432±0.0454 0.2429±0.0600 0.2458±0.0553 0.2465±0.0486 0.2314±0.0568 0.2534±0.0445

Macro-F1 0.2267±0.0728 0.2188±0.0725 0.2239±0.0673 0.2364±0.0667 0.2260±0.0596 0.2299±0.0698 0.2294±0.0731 0.2331±0.0610 0.2298±0.0720 0.2249±0.0755 0.2326±0.0714 0.2246±0.0731 0.2393±0.0571

Acc 0.3165±0.0291 0.3055±0.0392 0.3066±0.0354 0.3243±0.0252 0.3172±0.0302 0.3165±0.0335 0.3145±0.0347 0.3134±0.0329 0.3238±0.0294 0.3086±0.0339 0.3128±0.0359 0.3039±0.0387 0.3229±0.0288

Avg. Macro-F1 Acc 0.3352±0.0075 0.3246±0.0072 0.3241±0.0135 0.3134±0.0128 0.3261±0.0090 0.3167±0.0074 0.3348±0.0033 0.3237±0.0031 0.3336±0.0065 0.3232±0.0073 0.3324±0.0052 0.3223±0.0058 0.3274±0.0050 0.3175±0.0057 0.3252±0.0038 0.3160±0.0035 0.3326±0.0019 0.3233±0.0026 0.3275±0.0088 0.3181±0.0092 0.3277±0.0040 0.3178±0.0041 0.3191±0.0063 0.3087±0.0066 0.3369±0.0067 0.3272±0.0068

Acc 0.2521±0.0479 0.2494±0.0549 0.2417±0.0525 0.2501±0.0496 0.2396±0.0445 0.2474±0.0514 0.2421±0.0476 0.2452±0.0468 0.2440±0.0531 0.2431±0.0497 0.2492±0.0504 0.2398±0.0559 0.2447±0.0478

Avg. Macro-F1 Acc 0.2362±0.0072 0.2489±0.0050 0.2317±0.0087 0.2440±0.0087 0.2305±0.0057 0.2447±0.0054 0.2261±0.0178 0.2435±0.0117 0.2325±0.0068 0.2422±0.0052 0.2369±0.0049 0.2475±0.0034 0.2327±0.0059 0.2428±0.0043 0.2338±0.0008 0.2447±0.0011 0.2273±0.0047 0.2423±0.0020 0.2286±0.0051 0.2419±0.0033 0.2344±0.0029 0.2456±0.0034 0.2179±0.0083 0.2330±0.0078 0.2399±0.0048 0.2510±0.0049

30

Table 7: Experimental results with Llama series on MMLU-Pro.

Llama-3.1-8B-Instruct Method Random Patron Entropy TypiClust

fast-votek votek NeuronPattern

Method Random Patron Entropy TypiClust

fast-votek votek NeuronPattern

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

5 Macro-F1 0.6424±0.0048 0.6636±0.0010 0.6066±0.0076 0.6447±0.0055 0.5720±0.0098 0.6608±0.0025 0.5600±0.0063 0.6463±0.0002 0.6179±0.0030 0.5953±0.0068 0.6480±0.0019 0.5912±0.0089 0.6303±0.0017

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

Macro-F1 0.5640±0.0094 0.6863±0.0024 0.5271±0.0079 0.6363±0.0086 0.4187±0.0106 0.7060±0.0004 0.4947±0.0114 0.5152±0.0100 0.5964±0.0060 0.5348±0.0078 0.5231±0.0102 0.5393±0.0097 0.6340±0.0042

10 Acc 0.6581±0.0074 0.7263±0.0041 0.6128±0.0091 0.6643±0.0084 0.5770±0.0117 0.7153±0.0040 0.5618±0.0072 0.6965±0.0061 0.6435±0.0069 0.6048±0.0089 0.7030±0.0036 0.5959±0.0103 0.6856±0.0038

Macro-F1 0.5728±0.0101 0.6046±0.0036 0.5878±0.0104 0.6468±0.0020 0.6462±0.0036 0.6575±0.0012 0.6000±0.0104 0.6551±0.0014 0.6722±0.0005 0.6775±0.0008 0.6402±0.0038 0.6612±0.0026 0.6531±0.0009

Acc 0.5646±0.0100 0.7467±0.0023 0.5272±0.0079 0.6445±0.0105 0.4291±0.0087 0.7506±0.0036 0.4965±0.0106 0.5153±0.0100 0.6028±0.0077 0.5350±0.0081 0.5233±0.0105 0.5394±0.0097 0.6470±0.0062

Macro-F1 0.5149±0.0093 0.6128±0.0042 0.5766±0.0084 0.6607±0.0083 0.6040±0.0092 0.6657±0.0038 0.5653±0.0128 0.5318±0.0083 0.6391±0.0069 0.6116±0.0128 0.4890±0.0091 0.6698±0.0044 0.6197±0.0087

5

20 Acc Macro-F1 0.5739±0.0108 0.6691±0.0042 0.6862±0.0032 0.6565±0.0048 0.5897±0.0114 0.6314±0.0080 0.6775±0.0055 0.6907±0.0052 0.7066±0.0043 0.6649±0.0047 0.6987±0.0045 0.6527±0.0101 0.6052±0.0123 0.6466±0.0036 0.6889±0.0052 0.6568±0.0020 0.7124±0.0044 0.6751±0.0064 0.7333±0.0044 0.6646±0.0041 0.6710±0.0075 0.6481±0.0047 0.7162±0.0029 0.6732±0.0059 0.6873±0.0049 0.6710±0.0030 Llama-3.2-3B-Instruct

10

30 Acc 0.6899±0.0072 0.6751±0.0078 0.6384±0.0096 0.7183±0.0107 0.7265±0.0021 0.6649±0.0127 0.6740±0.0073 0.6956±0.0070 0.6922±0.0088 0.6911±0.0074 0.6673±0.0074 0.6888±0.0083 0.6998±0.0070

Macro-F1 0.6974±0.0037 0.6488±0.0047 0.6497±0.0094 0.6967±0.0065 0.6828±0.0006 0.6836±0.0061 0.6857±0.0034 0.6749±0.0039 0.6489±0.0077 0.6900±0.0012 0.7017±0.0036 0.6865±0.0055 0.6865±0.0014

Acc 0.5663±0.0142 0.4322±0.0112 0.4039±0.0109 0.7288±0.0176 0.6891±0.0108 0.5046±0.0145 0.5256±0.0104 0.5435±0.0205 0.5551±0.0137 0.4696±0.0139 0.5436±0.0155 0.5425±0.0125 0.6340±0.0084

Macro-F1 0.5826±0.0166 0.5549±0.0141 0.5132±0.0205 0.6277±0.0088 0.4977±0.0171 0.5478±0.0117 0.5616±0.0151 0.4396±0.0199 0.4009±0.0163 0.5495±0.0146 0.5509±0.0095 0.5368±0.0145 0.6218±0.0080

20 Acc 0.5156±0.0089 0.6483±0.0084 0.5795±0.0097 0.6729±0.0105 0.6109±0.0112 0.6904±0.0071 0.5663±0.0136 0.5329±0.0090 0.6488±0.0087 0.6177±0.0150 0.4903±0.0085 0.6908±0.0072 0.6305±0.0113

Macro-F1 0.5647±0.0130 0.4230±0.0133 0.3883±0.0136 0.7040±0.0123 0.6578±0.0049 0.5039±0.0150 0.5255±0.0103 0.5418±0.0187 0.5550±0.0133 0.4673±0.0151 0.5407±0.0133 0.5423±0.0124 0.6203±0.0054

Acc 0.7273±0.0066 0.6703±0.0080 0.6571±0.0111 0.7223±0.0102 0.7202±0.0065 0.6991±0.0081 0.7082±0.0065 0.6951±0.0066 0.6559±0.0089 0.7232±0.0043 0.7248±0.0064 0.7010±0.0073 0.7204±0.0060

Avg. Macro-F1 Acc 0.6454±0.0534 0.6623±0.0654 0.6434±0.0266 0.6895±0.0254 0.6189±0.0272 0.6245±0.0295 0.6697±0.0278 0.6956±0.0291 0.6415±0.0487 0.6826±0.0709 0.6636±0.0137 0.6945±0.0212 0.6231±0.0547 0.6373±0.0661 0.6583±0.0120 0.6940±0.0035 0.6535±0.0265 0.6760±0.0319 0.6568±0.0423 0.6881±0.0584 0.6595±0.0284 0.6915±0.0274 0.6530±0.0425 0.6755±0.0542 0.6602±0.0242 0.6983±0.0160

Acc 0.5847±0.0181 0.5616±0.0173 0.5139±0.0199 0.6376±0.0109 0.4980±0.0174 0.5497±0.0132 0.5620±0.0156 0.4455±0.0173 0.4147±0.0133 0.5501±0.0152 0.5552±0.0113 0.5370±0.0147 0.6304±0.0100

Avg. Macro-F1 Acc 0.5566±0.0291 0.5578±0.0296 0.5693±0.1113 0.5972±0.1335 0.5013±0.0801 0.5061±0.0738 0.6572±0.0342 0.6709±0.0415 0.5445±0.1070 0.5568±0.1158 0.6059±0.0955 0.6238±0.1158 0.5368±0.0333 0.5376±0.0329 0.5071±0.0463 0.5093±0.0441 0.5479±0.1038 0.5554±0.1013 0.5408±0.0592 0.5431±0.0608 0.5259±0.0271 0.5281±0.0285 0.5721±0.0652 0.5774±0.0756 0.6240±0.0068 0.6355±0.0079

30

Table 8: Experimental results with Llama series on Edu-Feedback.

12

Llama-3.1-8B-Instruct Method Random Patron Entropy TypiClust

fast-votek votek NeuronPattern

Method Random Patron Entropy TypiClust

fast-votek votek NeuronPattern

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

5 Macro-F1 0.7084±0.0195 0.7563±0.0237 0.8000±0.0120 0.7936±0.0150 0.7759±0.0105 0.8035±0.0119 0.7916±0.0053 0.7945±0.0075 0.7669±0.0083 0.7506±0.0093 0.8281±0.0060 0.7473±0.0118 0.8346±0.0097

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

Macro-F1 0.6374±0.0066 0.6884±0.0098 0.6892±0.0055 0.7645±0.0086 0.7392±0.0226 0.7457±0.0064 0.6918±0.0159 0.7386±0.0185 0.6910±0.0044 0.7755±0.0095 0.7520±0.0031 0.7576±0.0163 0.7335±0.0072

10 Acc 0.7020±0.0072 0.7480±0.0151 0.7793±0.0162 0.7807±0.0189 0.7440±0.0087 0.7927±0.0110 0.7787±0.0070 0.7867±0.0095 0.7573±0.0099 0.7433±0.0127 0.8133±0.0050 0.7467±0.0130 0.8320±0.0122

Macro-F1 0.7998±0.0155 0.7817±0.0063 0.8231±0.0098 0.8535±0.0098 0.8031±0.0124 0.7733±0.0076 0.8131±0.0024 0.8425±0.0012 0.8762±0.0116 0.7838±0.0289 0.8193±0.0045 0.8659±0.0076 0.7918±0.0224

Acc 0.6460±0.0080 0.7107±0.0083 0.6673±0.0042 0.7467±0.0064 0.7327±0.0208 0.7413±0.0070 0.6793±0.0121 0.7567±0.0150 0.6820±0.0080 0.7873±0.0110 0.7587±0.0129 0.7607±0.0136 0.7147±0.0050

Macro-F1 0.7095±0.0197 0.6839±0.0066 0.6709±0.0146 0.7888±0.0152 0.7398±0.0083 0.6794±0.0104 0.7647±0.0148 0.7966±0.0111 0.7826±0.0059 0.7138±0.0265 0.7517±0.0107 0.7845±0.0034 0.7193±0.0199

5

20 Acc Macro-F1 0.7827±0.0170 0.7698±0.0115 0.8020±0.0035 0.8550±0.0153 0.8287±0.0081 0.7798±0.0152 0.8413±0.0081 0.8532±0.0079 0.8067±0.0070 0.7810±0.0098 0.7533±0.0160 0.8362±0.0037 0.8180±0.0035 0.7931±0.0144 0.8400±0.0020 0.8243±0.0161 0.8687±0.0099 0.8359±0.0087 0.8013±0.0129 0.8580±0.0011 0.8127±0.0070 0.8199±0.0103 0.8600±0.0035 0.8146±0.0211 0.7707±0.0181 0.8595±0.0121 Llama-3.2-3B-Instruct

10

30 Acc 0.7160±0.0151 0.8440±0.0120 0.7733±0.0170 0.8560±0.0080 0.7867±0.0046 0.8360±0.0053 0.7660±0.0156 0.8187±0.0153 0.8267±0.0175 0.8560±0.0020 0.8113±0.0136 0.7913±0.0291 0.8507±0.0155

Macro-F1 0.8311±0.0112 0.8343±0.0067 0.7554±0.0173 0.8150±0.0088 0.8320±0.0100 0.8121±0.0021 0.8569±0.0034 0.8490±0.0138 0.8470±0.0068 0.8452±0.0099 0.8602±0.0074 0.8447±0.0155 0.8400±0.0122

Acc 0.6960±0.0111 0.7787±0.0170 0.6413±0.0050 0.7687±0.0070 0.7107±0.0186 0.7833±0.0133 0.7573±0.0127 0.7327±0.0172 0.7340±0.0250 0.7567±0.0205 0.7867±0.0181 0.7567±0.0117 0.8207±0.0147

Macro-F1 0.7203±0.0167 0.7472±0.0161 0.6384±0.0048 0.6884±0.0363 0.8030±0.0236 0.6964±0.0746 0.7843±0.0206 0.7603±0.0254 0.6947±0.0215 0.7184±0.0319 0.7165±0.0108 0.7629±0.0363 0.7781±0.0117

20 Acc 0.7207±0.0046 0.7320±0.0053 0.6453±0.0153 0.7813±0.0133 0.7320±0.0060 0.6427±0.0133 0.7867±0.0058 0.8033±0.0163 0.7780±0.0080 0.7647±0.0064 0.7453±0.0167 0.7793±0.0095 0.7587±0.0092

Macro-F1 0.7265±0.0284 0.7899±0.0107 0.6520±0.0229 0.7028±0.0166 0.6829±0.0300 0.7278±0.0082 0.7728±0.0256 0.7455±0.0235 0.7019±0.0121 0.6976±0.0350 0.8012±0.0219 0.7233±0.0312 0.7845±0.0259

Acc 0.8553±0.0129 0.8420±0.0020 0.7567±0.0081 0.8300±0.0231 0.8247±0.0115 0.8267±0.0050 0.8527±0.0058 0.8553±0.0110 0.8460±0.0087 0.8493±0.0046 0.8520±0.0104 0.8420±0.0223 0.8506±0.0123

Avg. Macro-F1 Acc 0.7773±0.0523 0.7640±0.0703 0.8068±0.0457 0.8090±0.0450 0.7896±0.0288 0.7845±0.0310 0.8288±0.0296 0.8270±0.0327 0.7980±0.0255 0.7905±0.0347 0.8063±0.0260 0.8022±0.0375 0.8137±0.0304 0.8038±0.0394 0.8276±0.0244 0.8252±0.0297 0.8315±0.0463 0.8247±0.0481 0.8094±0.0509 0.8125±0.0521 0.8319±0.0193 0.8223±0.0198 0.8181±0.0517 0.8100±0.0513 0.8341±0.0301 0.8233±0.0359

Acc 0.7633±0.0153 0.7727±0.0101 0.5967±0.0070 0.7380±0.0193 0.8007±0.0136 0.7940±0.0111 0.7780±0.0140 0.7520±0.0260 0.7627±0.0201 0.7927±0.0190 0.7940±0.0131 0.8087±0.0095 0.7493±0.0117

Avg. Macro-F1 Acc 0.6985±0.0413 0.7065±0.0490 0.7273±0.0507 0.7485±0.0326 0.6626±0.0222 0.6377±0.0296 0.7361±0.0482 0.7587±0.0199 0.7412±0.0491 0.7440±0.0391 0.7123±0.0300 0.7403±0.0690 0.7534±0.0418 0.7503±0.0489 0.7602±0.0259 0.7612±0.0300 0.7176±0.0436 0.7392±0.0422 0.7263±0.0340 0.7753±0.0174 0.7554±0.0348 0.7712±0.0230 0.7571±0.0254 0.7763±0.0237 0.7538±0.0323 0.7608±0.0442

30

Table 9: Experimental results with Llama series on TREC.

Qwen3-8B Method Random Patron Entropy TypiClust

FastVoteK VoteK NeuronPattern

Method Random Patron Entropy TypiClust

FastVoteK VoteK NeuronPattern

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

5 Macro-F1 0.2980±0.0301 0.3373±0.0236 0.2748±0.0283 0.3355±0.0201 0.2980±0.0277 0.3135±0.0292 0.2813±0.0242 0.2475±0.0262 0.2762±0.0326 0.3327±0.0255 0.3452±0.0191 0.3335±0.0251 0.3611±0.0253

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

Macro-F1 0.4242±0.0144 0.4089±0.0147 0.4195±0.0198 0.4431±0.0094 0.4325±0.0111 0.4079±0.0081 0.4096±0.0118 0.3990±0.0098 0.3862±0.0239 0.4265±0.0164 0.4148±0.0093 0.3886±0.0388 0.4566±0.0025

10 Acc 0.2798±0.0247 0.3128±0.0210 0.2621±0.0212 0.3093±0.0179 0.2790±0.0220 0.2923±0.0244 0.2656±0.0190 0.2420±0.0185 0.2629±0.0258 0.3091±0.0222 0.3189±0.0175 0.3098±0.0220 0.3341±0.0232

Macro-F1 0.4128±0.0070 0.4406±0.0058 0.4231±0.0126 0.4005±0.0124 0.4201±0.0082 0.3860±0.0142 0.4039±0.0142 0.3876±0.0153 0.3758±0.0164 0.4099±0.0124 0.3754±0.0139 0.4092±0.0128 0.4166±0.0102

Acc 0.4102±0.0211 0.3929±0.0203 0.4039±0.0273 0.4374±0.0135 0.4252±0.0170 0.3887±0.0119 0.3934±0.0171 0.3775±0.0129 0.3633±0.0263 0.4148±0.0232 0.4010±0.0144 0.3693±0.0445 0.4550±0.0024

Macro-F1 0.4252±0.0017 0.4422±0.0034 0.4488±0.0093 0.4150±0.0085 0.4474±0.0067 0.4099±0.0062 0.3883±0.0118 0.4229±0.0047 0.4328±0.0133 0.4179±0.0074 0.4132±0.0056 0.3816±0.0314 0.4454±0.0010

5

20 Acc Macro-F1 0.3864±0.0080 0.4448±0.0043 0.4170±0.0065 0.4634±0.0065 0.3990±0.0149 0.4509±0.0047 0.3724±0.0125 0.4477±0.0042 0.3951±0.0095 0.4613±0.0040 0.3578±0.0154 0.4449±0.0039 0.3758±0.0151 0.4480±0.0041 0.3615±0.0150 0.4551±0.0044 0.3485±0.0153 0.4335±0.0055 0.3823±0.0135 0.4531±0.0034 0.3481±0.0135 0.4534±0.0028 0.3819±0.0137 0.4528±0.0032 0.3911±0.0117 0.4706±0.0035 Qwen3-4B-Instruct-2507

10

30 Acc 0.4216±0.0056 0.4459±0.0091 0.4332±0.0065 0.4260±0.0055 0.4437±0.0060 0.4225±0.0043 0.4266±0.0050 0.4362±0.0062 0.4092±0.0062 0.4332±0.0043 0.4320±0.0039 0.4331±0.0044 0.4593±0.0054

Macro-F1 0.4726±0.0031 0.4906±0.0027 0.4853±0.0035 0.4725±0.0035 0.4800±0.0034 0.4688±0.0024 0.4763±0.0024 0.4823±0.0039 0.4787±0.0046 0.4883±0.0023 0.4716±0.0057 0.4880±0.0031 0.4886±0.0023

Acc 0.4284±0.0093 0.4033±0.0158 0.4153±0.0126 0.4201±0.0117 0.4565±0.0018 0.3863±0.0055 0.4069±0.0097 0.3842±0.0139 0.4096±0.0120 0.4346±0.0065 0.4154±0.0106 0.3846±0.0076 0.4495±0.0009

Macro-F1 0.4135±0.0070 0.3557±0.0186 0.4580±0.0038 0.4194±0.0112 0.4350±0.0092 0.3649±0.0237 0.4369±0.0127 0.3980±0.0109 0.4218±0.0102 0.4373±0.0085 0.4078±0.0123 0.4050±0.0090 0.4645±0.0010

20 Acc 0.4154±0.0038 0.4382±0.0054 0.4443±0.0121 0.3987±0.0121 0.4434±0.0086 0.3930±0.0079 0.3626±0.0133 0.4109±0.0065 0.4245±0.0186 0.4037±0.0115 0.4013±0.0071 0.3579±0.0348 0.4389±0.0007

Macro-F1 0.4384±0.0069 0.4199±0.0115 0.4280±0.0097 0.4326±0.0076 0.4594±0.0013 0.4063±0.0038 0.4210±0.0077 0.4054±0.0099 0.4221±0.0095 0.4401±0.0033 0.4252±0.0079 0.4061±0.0048 0.4540±0.0014

Acc 0.4646±0.0051 0.4867±0.0042 0.4827±0.0053 0.4611±0.0063 0.4726±0.0066 0.4542±0.0040 0.4658±0.0044 0.4767±0.0059 0.4709±0.0064 0.4847±0.0038 0.4632±0.0081 0.4844±0.0044 0.4866±0.0036

Avg. Macro-F1 Acc 0.4071±0.0767 0.3881±0.0790 0.4330±0.0670 0.4156±0.0743 0.4085±0.0927 0.3943±0.0946 0.4141±0.0603 0.3922±0.0662 0.4149±0.0818 0.3976±0.0853 0.4033±0.0692 0.3817±0.0719 0.4024±0.0861 0.3834±0.0868 0.3931±0.1049 0.3791±0.1031 0.3911±0.0874 0.3729±0.0887 0.4210±0.0670 0.4024±0.0749 0.4114±0.0607 0.3905±0.0682 0.4209±0.0666 0.4023±0.0745 0.4342±0.0575 0.4178±0.0687

Acc 0.3922±0.0094 0.3301±0.0179 0.4542±0.0041 0.3990±0.0148 0.4231±0.0124 0.3372±0.0231 0.4284±0.0160 0.3730±0.0132 0.4058±0.0135 0.4270±0.0122 0.3860±0.0146 0.3823±0.0116 0.4625±0.0021

Avg. Macro-F1 Acc 0.4253±0.0102 0.4115±0.0150 0.4067±0.0367 0.3911±0.0451 0.4386±0.0179 0.4295±0.0237 0.4275±0.0128 0.4138±0.0187 0.4436±0.0124 0.4371±0.0158 0.3973±0.0216 0.3763±0.0262 0.4140±0.0204 0.3978±0.0275 0.4063±0.0115 0.3864±0.0170 0.4157±0.0203 0.4008±0.0263 0.4304±0.0102 0.4200±0.0136 0.4153±0.0073 0.4009±0.0120 0.3953±0.0121 0.3735±0.0124 0.4551±0.0079 0.4515±0.0099

30

Table 10: Experimental results with Qwen3 series on MMLU-Pro.

13

Qwen3-8B Method Random Patron Entropy TypiClust

FastVoteK VoteK NeuronPattern

Method Random Patron Entropy TypiClust

FastVoteK VoteK NeuronPattern

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

5 Macro-F1 0.5097±0.0015 0.6753±0.0004 0.5057±0.0016 0.6022±0.0019 0.4488±0.0017 0.6460±0.0016 0.4683±0.0019 0.6011±0.0013 0.5339±0.0021 0.4712±0.0020 0.6456±0.0009 0.6401±0.0008 0.6679±0.0001

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

Macro-F1 0.5612±0.0016 0.7022±0.0011 0.4661±0.0023 0.6596±0.0018 0.5132±0.0018 0.6381±0.0015 0.5047±0.0013 0.6307±0.0021 0.5935±0.0015 0.5321±0.0013 0.6003±0.0013 0.6023±0.0012 0.7081±0.0002

10 Acc 0.5103±0.0014 0.7265±0.0007 0.5065±0.0015 0.6077±0.0022 0.4540±0.0015 0.6574±0.0019 0.4717±0.0017 0.6083±0.0016 0.5346±0.0023 0.4742±0.0018 0.6729±0.0016 0.6607±0.0012 0.7088±0.0009

Macro-F1 0.5779±0.0016 0.6391±0.0016 0.5273±0.0019 0.6009±0.0017 0.6329±0.0016 0.6065±0.0016 0.5688±0.0018 0.6460±0.0009 0.6383±0.0023 0.6555±0.0014 0.6651±0.0006 0.6717±0.0002 0.6680±0.0010

Acc 0.5612±0.0017 0.7660±0.0003 0.4712±0.0021 0.6675±0.0021 0.5133±0.0018 0.6433±0.0017 0.5055±0.0012 0.6366±0.0024 0.5321±0.0013 0.5991±0.0018 0.6022±0.0014 0.6059±0.0013 0.7651±0.0002

Macro-F1 0.6119±0.0027 0.6624±0.0014 0.5513±0.0019 0.5964±0.0017 0.5820±0.0032 0.6535±0.0012 0.5915±0.0023 0.6824±0.0008 0.6769±0.0008 0.6903±0.0018 0.6658±0.0009 0.6874±0.0006 0.7097±0.0004

5

20 Acc Macro-F1 0.5788±0.0017 0.6691±0.0007 0.7363±0.0004 0.6421±0.0012 0.5274±0.0019 0.5726±0.0019 0.6053±0.0020 0.6561±0.0004 0.6432±0.0020 0.6587±0.0014 0.6119±0.0018 0.6027±0.0032 0.5695±0.0019 0.6466±0.0010 0.6723±0.0015 0.6660±0.0004 0.6526±0.0028 0.6612±0.0012 0.6826±0.0021 0.6421±0.0026 0.6973±0.0012 0.6685±0.0007 0.7085±0.0010 0.6107±0.0011 0.6928±0.0014 0.6724±0.0005 Qwen3-4B-Instruct-2507

10

30 Acc 0.6970±0.0014 0.6550±0.0017 0.5732±0.0020 0.6913±0.0017 0.6855±0.0023 0.6075±0.0036 0.6655±0.0017 0.6983±0.0008 0.6787±0.0018 0.6519±0.0031 0.7127±0.0013 0.6188±0.0016 0.7033±0.0012

Macro-F1 0.6898±0.0013 0.6809±0.0009 0.6158±0.0019 0.6668±0.0018 0.6778±0.0008 0.6501±0.0014 0.6701±0.0011 0.6454±0.0016 0.6489±0.0023 0.6879±0.0005 0.6945±0.0011 0.6008±0.0026 0.6424±0.0023

Acc 0.7382±0.0013 0.6980±0.0016 0.5855±0.0024 0.7344±0.0026 0.7149±0.0022 0.6193±0.0037 0.6656±0.0029 0.7367±0.0009 0.7006±0.0017 0.7138±0.0017 0.7203±0.0017 0.7363±0.0011 0.6747±0.0011

Macro-F1 0.7283±0.0009 0.7142±0.0004 0.6178±0.0016 0.7151±0.0014 0.7129±0.0006 0.6373±0.0022 0.7037±0.0017 0.6885±0.0006 0.6861±0.0006 0.7124±0.0003 0.6934±0.0009 0.7225±0.0003 0.6833±0.0001

20 Acc 0.6145±0.0029 0.7554±0.0003 0.5513±0.0019 0.5978±0.0018 0.5831±0.0034 0.6614±0.0014 0.5937±0.0024 0.7187±0.0003 0.7126±0.0024 0.6967±0.0012 0.6797±0.0011 0.7092±0.0011 0.7353±0.0006

Macro-F1 0.7115±0.0008 0.6616±0.0008 0.5849±0.0023 0.7141±0.0017 0.6955±0.0015 0.6163±0.0034 0.6528±0.0024 0.6921±0.0009 0.6901±0.0013 0.6847±0.0011 0.6943±0.0012 0.7131±0.0007 0.6659±0.0009

Acc 0.7122±0.0020 0.7180±0.0017 0.6205±0.0022 0.7484±0.0003 0.7324±0.0009 0.6725±0.0024 0.6934±0.0018 0.6669±0.0024 0.6622±0.0029 0.7150±0.0012 0.7210±0.0020 0.6035±0.0028 0.7378±0.0004

Avg. Macro-F1 Acc 0.6116±0.0836 0.6246±0.0967 0.6593±0.0218 0.7089±0.0367 0.5554±0.0490 0.5569±0.0507 0.6315±0.0349 0.6632±0.0695 0.6045±0.1055 0.6288±0.1221 0.6263±0.0252 0.6373±0.0325 0.5885±0.0911 0.6000±0.1006 0.6396±0.0274 0.6615±0.0380 0.6206±0.0585 0.6320±0.0658 0.6142±0.0972 0.6310±0.1076 0.6684±0.0201 0.7010±0.0211 0.6308±0.0320 0.6479±0.0471 0.6627±0.0137 0.7107±0.0193

Acc 0.7528±0.0015 0.7487±0.0013 0.6208±0.0018 0.7371±0.0018 0.7486±0.0014 0.6441±0.0026 0.7283±0.0024 0.7345±0.0013 0.7474±0.0012 0.7072±0.0011 0.7224±0.0017 0.7575±0.0006 0.7248±0.0008

Avg. Macro-F1 Acc 0.6532±0.0800 0.6667±0.0937 0.6851±0.0271 0.7420±0.0302 0.5550±0.0652 0.5572±0.0640 0.6713±0.0563 0.6842±0.0660 0.6259±0.0949 0.6400±0.1106 0.6363±0.0153 0.6420±0.0173 0.6132±0.0856 0.6233±0.0958 0.6734±0.0287 0.7066±0.0474 0.6617±0.0457 0.6732±0.0961 0.6549±0.0827 0.6792±0.0539 0.6635±0.0442 0.6812±0.0562 0.6813±0.0548 0.7022±0.0672 0.6918±0.0211 0.7250±0.0376

30

Table 11: Experimental results with Qwen3 series on Edu-Feedback.

Qwen3-8B Method Random Patron Entropy TypiClust

FastVoteK VoteK NeuronPattern

Method Random Patron Entropy TypiClust

FastVoteK VoteK NeuronPattern

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

5 Macro-F1 0.8295±0.0023 0.8189±0.0030 0.8069±0.0099 0.8532±0.0019 0.8003±0.0044 0.8212±0.0033 0.8413±0.0035 0.8461±0.0047 0.8416±0.0011 0.8314±0.0018 0.8392±0.0044 0.8441±0.0016 0.8237±0.0040

#Shot InfoType N/A S.+E. Highest Diverse S. L. S.+L. S. L. S.+L. S.+E. S.+E.+L. Neuron

Macro-F1 0.8039±0.0016 0.8193±0.0015 0.8405±0.0019 0.8363±0.0015 0.8344±0.0014 0.8696±0.0008 0.8341±0.0035 0.8677±0.0029 0.8260±0.0000 0.8151±0.0049 0.8442±0.0040 0.8002±0.0043 0.8390±0.0025

10 Acc 0.8207±0.0031 0.8213±0.0031 0.8167±0.0042 0.8473±0.0012 0.7980±0.0069 0.8353±0.0012 0.8333±0.0050 0.8413±0.0064 0.8420±0.0020 0.8427±0.0012 0.8307±0.0058 0.8433±0.0023 0.8287±0.0031

Macro-F1 0.8246±0.0071 0.7989±0.0082 0.8194±0.0013 0.8579±0.0053 0.8282±0.0038 0.7995±0.0058 0.8467±0.0058 0.8571±0.0012 0.8587±0.0051 0.8661±0.0030 0.8411±0.0033 0.8438±0.0008 0.8654±0.0009

Acc 0.8047±0.0012 0.8267±0.0012 0.8393±0.0023 0.8473±0.0023 0.8633±0.0031 0.8707±0.0012 0.8467±0.0012 0.8660±0.0035 0.8520±0.0000 0.8213±0.0023 0.8380±0.0053 0.8180±0.0020 0.8613±0.0012

Macro-F1 0.8754±0.0009 0.8258±0.0039 0.8521±0.0035 0.8613±0.0012 0.8558±0.0036 0.8655±0.0062 0.8428±0.0009 0.8690±0.0011 0.8556±0.0010 0.8559±0.0005 0.8515±0.0000 0.8747±0.0035 0.8624±0.0022

5

20 Acc Macro-F1 0.7947±0.0095 0.8467±0.0004 0.8160±0.0072 0.8259±0.0048 0.8220±0.0020 0.8356±0.0045 0.8413±0.0031 0.8699±0.0057 0.8240±0.0035 0.8507±0.0029 0.7673±0.0070 0.8570±0.0023 0.8380±0.0053 0.8562±0.0038 0.8420±0.0020 0.8172±0.0051 0.8533±0.0012 0.8773±0.0006 0.8653±0.0012 0.8642±0.0024 0.8320±0.0035 0.8458±0.0013 0.8460±0.0000 0.8374±0.0032 0.8727±0.0012 0.8856±0.0015 Qwen3-4B-Instruct-2507

10

30 Acc 0.8113±0.0012 0.8093±0.0070 0.8327±0.0061 0.8567±0.0023 0.8460±0.0020 0.8493±0.0023 0.8287±0.0050 0.7993±0.0070 0.8567±0.0012 0.8473±0.0023 0.8387±0.0012 0.8080±0.0035 0.8600±0.0020

Macro-F1 0.8737±0.0027 0.8543±0.0017 0.8861±0.0037 0.8410±0.0004 0.8436±0.0071 0.8637±0.0006 0.8588±0.0054 0.8411±0.0005 0.8384±0.0021 0.8836±0.0028 0.8309±0.0049 0.8309±0.0027 0.8717±0.0056

Acc 0.8820±0.0020 0.8773±0.0031 0.8620±0.0040 0.8707±0.0023 0.8653±0.0012 0.8680±0.0020 0.8607±0.0012 0.8653±0.0012 0.8780±0.0020 0.8807±0.0012 0.8660±0.0000 0.8473±0.0023 0.8860±0.0000

Macro-F1 0.8698±0.0029 0.8598±0.0048 0.8681±0.0035 0.8807±0.0010 0.8509±0.0083 0.8504±0.0060 0.8704±0.0009 0.8878±0.0028 0.8882±0.0017 0.8402±0.0013 0.8608±0.0007 0.8804±0.0032 0.8800±0.0038

20 Acc 0.8713±0.0012 0.8387±0.0012 0.8540±0.0035 0.8753±0.0012 0.8667±0.0031 0.8553±0.0023 0.8507±0.0012 0.8687±0.0012 0.8533±0.0012 0.8607±0.0012 0.8480±0.0000 0.8747±0.0012 0.8713±0.0031

Macro-F1 0.8848±0.0013 0.8646±0.0021 0.8592±0.0044 0.8712±0.0024 0.8688±0.0024 0.8615±0.0015 0.8732±0.0008 0.8656±0.0007 0.8743±0.0015 0.8777±0.0004 0.8551±0.0001 0.8587±0.0061 0.8771±0.0000

Acc 0.8640±0.0040 0.8473±0.0031 0.8847±0.0042 0.8180±0.0020 0.8433±0.0031 0.8527±0.0012 0.8400±0.0000 0.8393±0.0012 0.8193±0.0050 0.8593±0.0023 0.8527±0.0050 0.8053±0.0061 0.8687±0.0023

Avg. Macro-F1 Acc 0.8436±0.0222 0.8227±0.0296 0.8245±0.0230 0.8235±0.0166 0.8370±0.0348 0.8390±0.0312 0.8555±0.0119 0.8408±0.0165 0.8307±0.0223 0.8278±0.0222 0.8354±0.0303 0.8262±0.0399 0.8508±0.0082 0.8350±0.0051 0.8404±0.0168 0.8305±0.0208 0.8540±0.0179 0.8428±0.0169 0.8613±0.0218 0.8537±0.0105 0.8393±0.0062 0.8385±0.0101 0.8391±0.0062 0.8257±0.0220 0.8616±0.0266 0.8575±0.0199

Acc 0.8813±0.0031 0.8673±0.0012 0.8713±0.0031 0.8753±0.0012 0.8693±0.0023 0.8580±0.0020 0.8753±0.0012 0.8827±0.0031 0.8847±0.0023 0.8633±0.0012 0.8487±0.0012 0.8453±0.0046 0.8947±0.0042

Avg. Macro-F1 Acc 0.8585±0.0369 0.8598±0.0371 0.8424±0.0231 0.8525±0.0238 0.8550±0.0116 0.8567±0.0136 0.8624±0.0191 0.8672±0.0134 0.8525±0.0142 0.8662±0.0025 0.8618±0.0083 0.8630±0.0075 0.8551±0.0196 0.8583±0.0128 0.8725±0.0103 0.8707±0.0081 0.8610±0.0269 0.8670±0.0168 0.8472±0.0263 0.8565±0.0251 0.8529±0.0069 0.8502±0.0116 0.8535±0.0367 0.8463±0.0231 0.8646±0.0188 0.8783±0.0149

30

Table 12: Experimental results with Qwen3 series on TREC.

14

Prompt

through mechanism interpretable metric. Preprint, arXiv:2504.07440.

You are a Rhetorical Structure Theory discourse parser for English text. Follow these steps internally, but output only valid JSON. ### Task 1. Split the input text into **Elementary Discourse Units (EDUs)** — minimal discourse segments (clauses or short sentences). 2. Identify **Rhetorical Relations** between EDUs. Allowed relation types are strictly limited to: - Causal / Logical Relations - Cause–Effect: One span presents a cause, the other its effect. - Condition: One span sets a condition under which the other holds. - Concession: One span acknowledges a contrary point, while the other still holds. - Elaborative / Explanatory Relations - Elaboration: One span adds detail to another (examples, restatements, specifics). - Evidence: One span supports the truth or plausibility of another. - Justify: Provides reasons for the writer’s intention to assert something. - Contrastive Relations - Contrast: Two spans highlight differences or opposites. - Antithesis: One span is strengthened by contrasting it with an opposite idea. - Temporal / Sequential Relations - Sequence: Events or actions follow each other in order. - Circumstance: One span sets the background situation for another. - Additive / Associative Relations - List: Multiple spans presented as coordinate items. - Joint: Spans contribute equally to the discourse, without hierarchy. - Preparatory / Framing Relations - Background: Provides context needed to understand another span. - Preparation: Introduces or primes the reader for what comes next.

Kang Chen, Yaoning Wang, Kai Xiong, Zhuoka Feng, Wenhe Sun, Haotian Chen, and Yixin Cao. 2025. Do llms signal when they’re right? evidence from neuron agreement. arXiv preprint arXiv:2510.26277. David Cohn, Zoubin Ghahramani, and Michael Jordan. 1994. Active learning with statistical models. Advances in neural information processing systems, 7. Yarin Gal, Riashat Islam, and Zoubin Ghahramani. 2017. Deep bayesian active learning with image data. In International conference on machine learning, pages 1183–1192. PMLR. Leo Gao, Tom Dupré la Tour, Henk Tillman, Gabriel Goh, Rajan Troll, Alec Radford, Ilya Sutskever, Jan Leike, and Jeffrey Wu. 2024. Scaling and evaluating sparse autoencoders. arXiv preprint arXiv:2406.04093.

3. For each relation: - **Asymmetric relations** (Cause, Elaboration, Condition, Purpose, Background, Other): use `"nucleus"` and `"satellite"` to indicate main vs. supporting unit. - **Symmetric relations** (Contrast, Sequence): use `"span1"` and `"span2"` to indicate the two nucleus spans. 4. Output must be a single valid **JSON object** containing: - `"EDUs"`: list of EDU strings (in original order). - `"Relations"`: list of relation objects following the above format. 5. Do not include explanations, comments, or text outside the JSON.

Tianyu Gao, Xingcheng Yao, and Danqi Chen. 2021. SimCSE: Simple contrastive learning of sentence embeddings. In Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing, pages 6894–6910, Online and Punta Cana, Dominican Republic. Association for Computational Linguistics.

User "I didn’t bring an umbrella because the forecast said it would be sunny."

Assistant {

"EDUs": [ "I didn’t bring an umbrella", "because the forecast said it would be sunny" ], "Relations": [ {"type": "Cause", "nucleus": "I didn’t bring an umbrella", "satellite": "because the forecast said it would be sunny"} ] }

Mor Geva, Roei Schuster, Jonathan Berant, and Omer Levy. 2021. Transformer feed-forward layers are keyvalue memories. In Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing, pages 5484–5495, Online and Punta Cana, Dominican Republic. Association for Computational Linguistics.

Figure 8: Example for RST Analysis.

References

Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad AlDahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, and 1 others. 2024. The llama 3 herd of models. arXiv preprint arXiv:2407.21783.

Saeed Ahmadnia, Arash Yousefi Jordehi, Mahsa Hosseini Khasheh Heyran, Seyed Abolghasem Mirroshandel, Owen Rambow, and Cornelia Caragea. 2025. Active few-shot learning for text classification. arXiv preprint arXiv:2502.18782.

Jiaxin Guo, CL Philip Chen, Shuzhen Li, and Tong Zhang. 2024. Deuce: Dual-diversity enhancement and uncertainty-awareness for cold-start active learning. Transactions of the Association for Computational Linguistics, 12:1736–1754.

Nora Belrose, Zach Furman, Logan Smith, Danny Halawi, Igor Ostrovsky, Lev McKinney, Stella Biderman, and Jacob Steinhardt. 2023. Eliciting latent predictions from transformers with the tuned lens. arXiv preprint arXiv:2303.08112.

Guy Hacohen, Avihu Dekel, and Daphna Weinshall. 2022. Active learning on a budget: Opposite strategies suit high and low budgets. In International Conference on Machine Learning, pages 8175–8195. PMLR.

Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, and 1 others. 2020. Language models are few-shot learners. Advances in neural information processing systems, 33:1877–1901.

SU Hongjin, Jungo Kasai, Chen Henry Wu, Weijia Shi, Tianlu Wang, Jiayi Xin, Rui Zhang, Mari Ostendorf, Luke Zettlemoyer, Noah A Smith, and 1 others. 2022. Selective annotation makes language models better few-shot learners. In The Eleventh International Conference on Learning Representations.

Yixin Cao, Jiahao Ying, Yaoning Wang, Xipeng Qiu, Xuanjing Huang, and Yugang Jiang. 2025. Model utility law: Evaluating llms beyond performance

15

Lei Huang, Weijiang Yu, Weitao Ma, Weihong Zhong, Zhangyin Feng, Haotian Wang, Qianglong Chen, Weihua Peng, Xiaocheng Feng, Bing Qin, and 1 others. 2025. A survey on hallucination in large language models: Principles, taxonomy, challenges, and open questions. ACM Transactions on Information Systems, 43(2):1–55.

Christopher Schröder, Andreas Niekler, and Martin Potthast. 2021. Revisiting uncertainty-based query strategies for active learning with transformers. arXiv preprint arXiv:2107.05687. Yubo Wang, Xueguang Ma, Ge Zhang, Yuansheng Ni, Abhranil Chandra, Shiguang Guo, Weiming Ren, Aaran Arulraj, Xuan He, Ziyan Jiang, and 1 others. 2024. Mmlu-pro: A more robust and challenging multi-task language understanding benchmark. arXiv preprint arXiv:2406.01574.

Jaehun Jung, Seungju Han, Ximing Lu, Skyler Hallinan, David Acuna, Shrimai Prabhumoye, Mostafa Patwary, Mohammad Shoeybi, Bryan Catanzaro, and Yejin Choi. 2025. Prismatic synthesis: Gradientbased data diversification boosts generalization in llm reasoning. arXiv preprint arXiv:2505.20161.

Yong Wu and Christian D Schunn. 2023. Passive, active, and constructive engagement with peer feedback: A revised model of learning from peer feedback. Contemporary Educational Psychology, 73:102160.

Leonard Kaufman. 1990. Partitioning around medoids (program pam). Wiley series in probability and statistics, 344:68–125.

Yu Xia, Subhojyoti Mukherjee, Zhouhang Xie, Junda Wu, Xintong Li, Ryan Aponte, Hanjia Lyu, Joe Barrow, Hongjie Chen, Franck Dernoncourt, and 1 others. 2025. From selection to generation: A survey of llm-based active learning. arXiv preprint arXiv:2502.11767.

Lorenz Kuhn, Yarin Gal, and Sebastian Farquhar. 2023. Semantic uncertainty: Linguistic invariances for uncertainty estimation in natural language generation. arXiv preprint arXiv:2302.09664.

An Yang, Anfeng Li, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chang Gao, Chengen Huang, Chenxu Lv, and 1 others. 2025. Qwen3 technical report. arXiv preprint arXiv:2505.09388.

Woosuk Kwon, Zhuohan Li, Siyuan Zhuang, Ying Sheng, Lianmin Zheng, Cody Hao Yu, Joseph Gonzalez, Hao Zhang, and Ion Stoica. 2023. Efficient memory management for large language model serving with pagedattention. In Proceedings of the 29th symposium on operating systems principles, pages 611–626.

Guoxin Yu, Lemao Liu, Haiyun Jiang, Shuming Shi, and Xiang Ao. 2023a. Retrieval-augmented fewshot text classification. In Findings of the Association for Computational Linguistics: EMNLP 2023, pages 6721–6735, Singapore. Association for Computational Linguistics.

Xin Li and Dan Roth. 2002. Learning question classifiers. In COLING 2002: The 19th International Conference on Computational Linguistics.

Yue Yu, Rongzhi Zhang, Ran Xu, Jieyu Zhang, Jiaming Shen, and Chao Zhang. 2023b. Cold-start data selection for better few-shot language model fine-tuning: A prompt-based uncertainty propagation approach. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 2499–2521.

William C Mann and Sandra A Thompson. 1988. Rhetorical structure theory: Toward a functional theory of text organization. Text-interdisciplinary Journal for the Study of Discourse, 8(3):243–281. Katerina Margatina, Timo Schick, Nikolaos Aletras, and Jane Dwivedi-Yu. 2023. Active learning principles for in-context learning with large language models. In Findings of the Association for Computational Linguistics: EMNLP 2023, pages 5011–5034.

Michelle Yuan, Hsuan-Tien Lin, and Jordan BoydGraber. 2020. Cold-start active learning through self-supervised language modeling. arXiv preprint arXiv:2010.09535.

Yu Meng, Jiaming Shen, Chao Zhang, and Jiawei Han. 2019. Weakly-supervised hierarchical text classification. In Proceedings of the AAAI conference on artificial intelligence, volume 33, pages 6826–6833. Sewon Min, Xinxi Lyu, Ari Holtzman, Mikel Artetxe, Mike Lewis, Hannaneh Hajishirzi, and Luke Zettlemoyer. 2022. Rethinking the role of demonstrations: What makes in-context learning work? In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing, pages 11048–11064. Nostalgebraist. 2020. Interpreting GPT: The logit lens. https://www. lesswrong.com/posts/AcCRPn5w6xmtPRD7j/ interpreting-gpt-the-logit-lens. LessWrong.

16

Record · ID 332518 · SHA-256 09ecd9584348dfbd
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.