research note

Non-Autoregressive Typed Decisions: How Does Laya Compare to BERT for On-Device Classification?

Can a non-autoregressive decision engine (Laya) match or exceed a fine-tuned BERT-base model in accuracy and latency for on-device binary and multi-class classification tasks?

Published
Reading
29 min · 4,899 words
Evidence
40/40 claims verified · 20 sources

Editions: عربي · Español · Français

Direct answer

The verified claims do not include any experiment that runs Laya (LAYA, the Layer-wise Attention Aggregator) against a fine-tuned BERT-base model on the same on-device binary or multi-class text classification task with matched latency and accuracy measurements, so no direct answer to the comparison question exists in the evidence. What the claims do show, separately, is that LAYA is a lightweight output head evaluated on image classification datasets, where it reaches competitive predictive performance and gives depth-aware explanations [12], while fine-tuned BERT and its family (RoBERTa, DistilBERT) are documented as strong, low-latency, low-cost classifiers on text benchmarks compared against LLM prompting, not against LAYA [1]. Because LAYA's own reported comparison is against other output heads on image tasks, and BERT's reported comparisons are against LLM prompting and against distilled or quantum-hybrid variants of itself, a builder cannot infer from these claims which one would win on an on-device text classification benchmark. Anyone who needs that answer must run the head-to-head test themselves; this note lays out how, using the mechanisms, numbers, and costs that the sources do report for each side separately.

Why this question matters for on-device classification

Text classification with a fixed set of labels, such as sentiment (binary) or topic (multi-class), is traditionally solved with encoder-only architectures including BERT, RoBERTa, and DistilBERT [1]. These models achieve strong predictive accuracy while maintaining low inference latency and modest computational footprints [1]. On-device deployment adds constraints that server-side deployment does not: limited memory, limited compute, and a hard requirement on latency per inference. This is why any claim of a cheaper or faster alternative to BERT deserves scrutiny before it is adopted for on-device use, and why a study that actually measures latency and cost side by side with accuracy is more useful to a builder than one that reports accuracy alone.

Large language models such as GPT-4o and Claude Sonnet 4.5 have demonstrated strong capabilities in open-ended reasoning and generative language tasks [1]. But LLMs generate output token by token even when producing a single class label, introducing inherent latency and usage-based costs [1]. A study that evaluates zero- and few-shot prompt-based LLMs against fully fine-tuned encoder-only architectures across four benchmarks, IMDB, SST-2, AG News, and DBPedia, measuring macro F1, inference latency, and monetary cost, found that fine-tuned encoder-based models from the BERT family achieve competitive, and often superior, classification performance while operating at one to two orders of magnitude lower cost and latency compared to zero- and few-shot LLM prompting [1]. This establishes BERT-family models as the practical baseline for on-device or cost-sensitive classification, not the LLM, and it is the baseline this note uses when discussing what a candidate replacement for BERT would need to beat.

Separately, a different line of work asks whether the standard practice of taking a prediction only from the last hidden layer is the right design choice for a neural classifier. Most architectures ultimately derive their predictions exclusively from the representation produced by the last hidden layer [12]. Empirical and theoretical studies suggest that different layers capture distinct and complementary aspects of the input: early layers encode local patterns, middle layers capture structural relations, and deeper layers represent increasingly abstract semantics [12]. LAYA (Layer-wise Attention Aggregator) is a novel output head that dynamically aggregates internal representations through attention, built to make use of this observation instead of discarding it [12].

The practical question a builder faces is whether replacing a standard classifier head with something like LAYA, or replacing a full LLM with a fine-tuned BERT, gives a better accuracy-per-millisecond trade-off on a phone or an embedded chip. The evidence collected here answers the second question directly and does not answer the first for text classification, because LAYA has only been tested on image datasets [12]. The rest of this note treats these as two separate, well-supported bodies of evidence, describes the mechanism and reported numbers for each, and is explicit throughout about where they do not meet, so that a builder who wants the missing comparison knows exactly what experiment to run and what it would need to control for. A study that frames model evaluation as a multi-objective decision problem and analyzes trade-offs using Pareto frontier projections and a parameterized utility function reflecting different deployment regimes offers the right lens for this kind of comparison once the missing measurement is filled in [1].

What BERT is and what LAYA is

BERT is based on a multi-layer bidirectional Transformer and is trained on plain text for masked word prediction and next sentence prediction tasks [6]. It is the first fine-tuning based representation model that achieves state-of-the-art results for a range of NLP tasks [6]. This means BERT is pre-trained once on large unlabeled text using two self-supervised objectives, and the same pre-trained weights are then adapted, or fine-tuned, to many different downstream tasks with comparatively little labeled data. That two-stage recipe, pre-train then fine-tune, is the reason BERT and its descendants are the default choice for fixed-label text classification rather than a model trained from scratch for each task.

Mechanically, BERT generates an embedding vector contextualized through a stack of Transformer blocks for each input token, and prepends a special [CLS] token to the input sentence for classification tasks [5]. For sentence-level classification, an added linear classifier projects the [CLS] embedding to an unnormalized probability vector over the output classes [5]. This is the standard classification head: a single learned linear layer sitting on top of the final Transformer block's output for one designated token, followed by a normalization step that turns the unnormalized scores into class probabilities. The entire stack, encoder plus linear head, is trained end to end during fine-tuning, which is why fine-tuning BERT for a new task requires updating all of its parameters unless a parameter-efficient variant is used.

LAYA takes a different view of what the head should look at. LAY A (Layer-wise Attention Aggregator) is a lightweight output module that learns to weight and combine all hidden representations in an input-dependent way [12]. LAYA learns input-conditioned attention weights over layer-wise features [12]. Instead of the head reading only the last hidden layer, as BERT's [CLS]-based classifier does, LAYA's head reads every hidden layer produced by the backbone network and lets an attention mechanism decide, for each individual input, how much weight each layer's representation should receive. LAYA provides intrinsic layer-attribution scores that explicitly quantify the contribution of each representation to the final decision without external post-hoc explanation methods [12], which means the attention weights themselves double as an explanation of which depths of the network mattered for a given prediction, with no separate interpretability tool required.

The two designs therefore differ at exactly the point where a classification decision is made. BERT's classifier head is fixed and reads a single, final representation, the [CLS] embedding after the last Transformer block [5]. LAYA's head is itself a small trainable attention module that reads all the intermediate representations and produces a per-input, per-layer weighting before making the final prediction [12]. Both approaches sit on top of some feature-extracting backbone, an encoder in BERT's case, and the description of LAYA in the source does not specify a text-encoder backbone; the reported experiments use image classification datasets [12]. This distinction, backbone versus head, is the reason a fair comparison of Laya and BERT for text classification would need to specify exactly what backbone LAYA's aggregator sits on top of before any accuracy or latency numbers could be compared. It also means that describing LAYA as a competitor to BERT is only partly accurate: LAYA replaces the classification head, while BERT is usually described and benchmarked as a full encoder plus head, so a fair test would need to hold the backbone fixed and swap only the head, or state clearly that the whole architecture, backbone included, is being swapped.

The mechanism inside LAYA: aggregation, adapters, and prediction

The internal computation of LAYA is described precisely enough in the source to reproduce. LAY A replaces the standard classifier head with an attention-based aggregator: h_agg = sum_{i=1}^{L} alpha_i(x) g_i(h_i), where alpha_i(x) are learnable, input-conditioned coefficients [12]. In plain terms, the backbone produces L hidden representations, one per layer, and instead of keeping only the last one, LAYA computes a weighted sum of all of them, where the weight given to each layer depends on the specific input x currently being processed, not on a fixed, input-independent schedule. This is the core structural claim of the method: the weighting is a function of the input, so two different inputs passing through the same trained network can end up relying on different depths of representation.

Before the weighted sum is computed, each layer's representation is put on a common footing. Each hidden state in LAY A is mapped into a shared latent space through a lightweight adapter g_i(.), ensuring comparability across layers [12]. This adapter step matters because hidden states from different depths of a network can differ in scale, dimensionality, or semantic granularity, and summing them directly without first mapping them into a shared space could let a layer dominate the aggregate for reasons unrelated to how useful its representation actually is. The lightweight adapter is described as small, which keeps LAYA's total parameter and compute overhead low relative to the backbone it sits on, though the source does not give an exact parameter count or a formula for the adapter's size relative to the backbone's hidden dimension.

The output stage is a simple linear-plus-nonlinearity step applied to the aggregated representation. The final prediction in LAY A is computed as y_hat = phi(W h_agg + b) [12]. This is structurally similar to BERT's own classification head, a linear projection followed by a nonlinearity, with the key difference being what is fed into that linear layer: BERT feeds in the single final-layer [CLS] embedding [5], while LAYA feeds in the attention-aggregated combination of all layers' adapted representations [12]. The extra machinery in LAYA, relative to a standard head, is therefore the per-layer adapter g_i and the input-conditioned attention weights alpha_i(x); everything else about how the final class score is produced is a conventional linear classifier with a nonlinearity phi applied at the end.

Because the attention weights alpha_i(x) are learned and depend on the input, they can be inspected after training to see which layers the model relied on for which kinds of inputs, and the source treats this as a first-class feature rather than a side effect. Quantitative and qualitative interpretability analyses demonstrate that LAY A's attention scores closely reflect the actual contribution of individual layers [12]. LAY A reveals structured, task-dependent patterns of depth utilization while providing intuitive explanations of how different abstraction levels contribute to each prediction [12]. For a builder, this means that adopting LAYA as a classifier head is not purely an accuracy or latency decision; it also buys a built-in, per-prediction explanation of which network depths drove the decision, at the cost of the extra adapter and attention parameters described above. None of this mechanism has been described or measured for a text-encoder backbone in the evidence gathered here, so applying it to a BERT-style stack of Transformer blocks would be a direct, reasonable extension to test, not something already reported.

What was measured for BERT-family models, and what was not measured for LAYA on text

The clearest quantitative comparison available in the evidence is between fine-tuned BERT-family encoders and LLM prompting, not between BERT and LAYA. The relevant study measured macro F1, inference latency, and monetary cost across four benchmarks, IMDB, SST-2, AG News, and DBPedia, comparing zero- and few-shot prompt-based LLMs such as GPT-4o and Claude Sonnet 4.5 against fully fine-tuned encoder-only architectures [1]. The result was that fine-tuned encoder-based models from the BERT family achieve competitive, and often superior, classification performance while operating at one to two orders of magnitude lower cost and latency compared to zero- and few-shot LLM prompting [1]. The same paper frames model evaluation as a multi-objective decision problem and analyzes trade-offs using Pareto frontier projections and a parameterized utility function reflecting different deployment regimes [1], which is a methodological point a builder can reuse: accuracy alone is not the right lens when latency and cost differ by orders of magnitude between candidates. This methodology, not the specific numbers, is the part that transfers cleanly to a Laya-versus-BERT study, because it gives a template for reporting three axes together rather than accuracy in isolation.

Other sources add further, separate numbers about BERT variants without comparing them to LAYA. TinyBERT 4 with 4 layers achieves more than 96.8% the performance of its teacher BERT BASE on GLUE benchmark, while being 7.5x smaller and 9.4x faster on inference [7]. TinyBERT 6 with 6 layers performs on-par with its teacher BERT BASE [7]. These numbers describe distillation, compressing BERT BASE into a smaller student model, and they establish that BERT's accuracy can be preserved at a fraction of its size and latency through architectural compression, which is directly relevant to on-device deployment even though it says nothing about LAYA. A builder who wants a size-latency budget for the BERT side of a comparison has, in these numbers, two concrete reference points already measured on GLUE: a 4-layer student at 7.5x smaller and 9.4x faster with over 96.8% of teacher performance, and a 6-layer student at on-par performance.

Fine-tuning BERT for specific NLP tasks requires high computational resources and expensive inference time [2], a cost that motivated a hybrid classical-quantum approach: the proposed hybrid classical-quantum BERT model integrates an n-qubit quantum circuit with a classical BERT model for text classification [2], using the quantum circuit to fine-tune the classical model [2]. The proposed hybrid classical-quantum BERT model achieves performance that is competitive with, and in some cases better than, the classical baselines on standard benchmark datasets [2]. However, current quantum hardware is not yet fault-tolerant enough to achieve actual computational speedup, so experiments are performed with quantum circuit simulations [2], meaning the reported competitiveness is on accuracy, not on any demonstrated latency or cost advantage over classical BERT fine-tuning; the simulation runs on classical hardware, so no on-device latency number is available from this comparison either.

LAYA's own reported measurement is on a different domain entirely. Experiments on image classification datasets show that LAYA achieves competitive predictive performance while producing meaningful depth-aware explanations [12]. There is no benchmark named, no accuracy number given, and no text classification task involved in this measurement; the claim states only that performance is competitive and that the explanations are meaningful, on image data. Because none of the sources report LAYA's macro F1, latency, or cost on IMDB, SST-2, AG News, DBPedia, or any other text classification benchmark, and because none of the sources run BERT and LAYA on the same task with the same measurement protocol, there is no shared number in the evidence that lets a reader place LAYA and BERT on the same Pareto frontier for text classification. This gap is the central finding of this note: not that LAYA loses or wins, but that the comparison has not been measured, and any statement to the contrary would be going beyond what the sources say.

Instability, fine-tuning cost, and other documented BERT trade-offs

A builder choosing between BERT and any alternative head or architecture also needs to know about failure modes that are specific to BERT fine-tuning, independent of the comparison to LAYA. Fine-tuning BERT remains unstable, especially when using BERTLarge on small datasets, where identical learning processes with different random seeds often result in significantly different models [5]. This means that reported accuracy numbers for a single fine-tuning run of BERT can be misleading unless the run was repeated across multiple seeds, because two runs from the same setup can land at meaningfully different accuracy levels purely due to randomness in initialization or data ordering. This is a direct methodological warning for anyone designing a comparison study: a single-seed accuracy number for a BERT baseline is not enough to draw a conclusion against a competing method such as LAYA.

The same source identifies concrete causes of this instability and a documented mitigation. Factors causing instability in few-sample BERT fine-tuning include: the use of a non-standard optimization method with biased gradient estimation, limited applicability of parts of the BERT network, and the use of a pre-determined small number of training iterations [5]. Fine-tuning the pre-trained BERT model on a large intermediate task stabilizes later fine-tuning on small datasets [5]. For a builder working with a small on-device classification dataset, this gives a specific, actionable recipe: fine-tune first on a larger, related intermediate task before fine-tuning on the small target dataset, rather than fine-tuning directly on the small dataset from the base pre-trained checkpoint.

Cost is a recurring theme across multiple independent sources, not only the LLM-versus-encoder comparison. Fine-tuning BERT produces similar performance to classical models at significant additional cost in automated essay scoring [9]. This is a domain-specific result, automated essay scoring, but it reinforces the general pattern seen in the LLM-prompting comparison [1] and the quantum-hybrid motivation [2]: BERT's accuracy is often matched by cheaper alternatives, and the decision to use BERT should weigh that additional cost against the accuracy gained, task by task, rather than assuming BERT is always worth its cost.

Finally, there is a structural argument about why encoder architectures such as BERT might or might not be the right computational shape for a given task, independent of accuracy. Transformer layers are linear in the input dimensionality and quadratic in the input length [10]. Recurrent networks scale linearly in the input length and quadratically in the input dimensionality [10]. This trade-off is documented in a different application, sequence modeling for control, where Decision Transformer is an offline RL algorithm that auto-regressively models trajectories using the GPT-2 architecture [10], and struggles with continuous control problems such as inverted pendulum and Furuta pendulum stabilization [10], while Decision LSTM is able to achieve expert-level performance on inverted pendulum and Furuta pendulum stabilization tasks [10]. This result does not transfer directly to text classification or to LAYA, but it establishes, as a general and reproducible pattern, that the best architecture for a task depends on the shape of the input, length versus dimensionality, and that Transformer-based designs are not universally superior to alternatives even when the alternative is a much simpler recurrent network. A builder should treat this as a caution against assuming a Transformer-based encoder is automatically the right backbone for every classification setting, on-device or otherwise, without measuring it directly against alternatives on the specific input shape at hand.

On-device deployment considerations: privacy, footprint, and open-source status

Beyond raw accuracy and latency numbers, deployment context matters for an on-device decision, and one source speaks directly to this. Fine-tuned encoders' open-source nature enables on-premise deployment, offering advantages in privacy, data governance, and reproducibility [1]. For on-device classification specifically, this property is close to a requirement: the model weights must be available locally, inference must not depend on a network call to an external API, and the organization deploying the model needs to be able to reproduce and audit its behavior. Fine-tuned BERT-family models satisfy this because they are open-source and can be exported and run locally [1], whereas prompt-based LLM APIs, by contrast, typically require a network round trip and are billed per use, since LLMs generate output token by token even when producing a single class label, introducing inherent latency and usage-based costs [1].

This same property, open weights that can be exported and run locally, is not addressed for LAYA in the evidence. The claims describe LAYA as a lightweight output module [12], and lightweight generally implies a small number of additional parameters and low additional compute relative to whatever backbone it sits on, but no claim states LAYA's parameter count, memory footprint, or whether the reference implementation is openly released. A builder evaluating LAYA for on-device use would need to establish this directly from the LAYA implementation rather than from the claims summarized here, since none of the verified claims give a number for it.

Encoder footprint has already been reduced substantially within the BERT family through distillation, which is directly relevant to on-device budgets. TinyBERT 4 achieving more than 96.8% of BERT BASE's GLUE performance at 7.5x smaller size and 9.4x faster inference [7], and TinyBERT 6 performing on par with BERT BASE [7], both describe deployable, smaller checkpoints that keep BERT's fine-tuning recipe and its [CLS]-based classification head [5] while shrinking the compute and memory needed at inference time. This is the most concrete, reproducible path in the evidence to a low-latency, low-memory BERT-family classifier suitable for on-device use, and it is the natural baseline against which any new head design, including LAYA, should be measured if the goal is on-device deployment.

Taken together, the deployment-relevant claims describe BERT-family models as open-source, exportable, privacy-preserving when self-hosted [1], compressible without much accuracy loss through distillation [7], but unstable across seeds on small datasets unless an intermediate fine-tuning step is used [5]. None of these deployment properties, open-source status, parameter count, exportability, are documented for LAYA in the evidence gathered here; LAYA's documented properties are architectural, its aggregation mechanism [12], and evaluative, competitive accuracy and interpretability on image datasets [12], not operational. This asymmetry in what has been measured is itself an important finding for a builder: the two candidates are not yet described on the same axes, so an on-device deployment decision cannot be made from these claims alone, and closing that gap is exactly the missing experiment this note points toward.

Limits and open questions

The central limit of this evidence base is stated plainly: no claim reports a head-to-head experiment between LAYA and a fine-tuned BERT-base model on any text classification task, binary or multi-class, on-device or otherwise. LAYA's only reported experiments are on image classification datasets, where it achieves competitive predictive performance while producing meaningful depth-aware explanations [12]. BERT's reported comparisons are against zero- and few-shot LLM prompting [1], against a quantum-hybrid fine-tuning variant of itself [2], against a distilled student version of itself [7], and against classical, non-BERT models in essay scoring [9]. None of these comparisons involve LAYA, and none of LAYA's comparisons involve BERT or text data.

A second limit concerns latency specifically, which is the term named in the research question. The only latency numbers in the evidence are: fine-tuned BERT-family models operating at one to two orders of magnitude lower latency than zero- and few-shot LLM prompting on IMDB, SST-2, AG News, and DBPedia [1], and TinyBERT 4 being 9.4x faster on inference than teacher BERT BASE on GLUE [7]. No claim reports an inference latency number for LAYA on any dataset, image or text, and no claim reports an on-device (as opposed to server or simulated) latency number for either BERT or LAYA. A builder cannot therefore quote a latency figure for LAYA at all, only for BERT-family models against LLMs or against a distilled version of themselves.

A third limit concerns architecture mismatch. LAYA is described and evaluated as an output head attached to some unspecified backbone on image classification datasets [12], whereas the BERT-family results summarized here describe a full encoder architecture, pre-training objective, and fine-tuning recipe together [6] [5]. Swapping only the head, keeping a BERT encoder as the backbone and attaching a LAYA-style aggregator in place of the [CLS] linear classifier, is a natural way to close this gap, but it has not been done in any of the verified claims, so its outcome, whether it helps, hurts, or makes no measurable difference to accuracy or latency, is unknown from this evidence.

A fourth limit concerns reproducibility of any future comparison. Given that fine-tuning BERT remains unstable across random seeds on small datasets [5], any future study comparing BERT and LAYA on a small on-device-scale dataset would need to report results across multiple seeds, not a single run, to avoid confusing seed variance with a genuine architectural difference. Given that current quantum-hybrid BERT results rely on quantum circuit simulations rather than real hardware [2], any claim of a computational advantage from non-standard components should be checked for whether it was measured on the actual target hardware or only in simulation. Given that the LLM-versus-encoder study used a multi-objective, Pareto-frontier framing rather than a single accuracy number [1], a future Laya-versus-BERT study should adopt the same multi-axis reporting, accuracy, latency, and resource cost together, rather than reporting accuracy alone and calling the comparison complete.

How to build it, or how to use it

1. Define the task and pick benchmarks that match the research question. Choose one binary task and one multi-class task so the comparison covers both regimes named in the question; the evidence names IMDB and SST-2 as binary-style sentiment benchmarks and AG News and DBPedia as multi-class topic benchmarks [1]. Fix the label set, train/validation/test split, and evaluation metric, macro F1, to match the metric already used for the BERT-versus-LLM comparison so results are comparable to that prior work [1].

2. Choose a shared backbone for both heads. Because LAYA is documented as an output head that reads all hidden layers of a backbone [12], and BERT's own classifier reads only the final [CLS] embedding [5], the fairest test holds the backbone fixed, for example a standard BERT-base encoder pre-trained on masked word prediction and next sentence prediction [6], and attaches two different heads to it: the standard [CLS]-plus-linear head [5], and a LAYA-style aggregator [12].

3. Implement the baseline head exactly as described. Prepend the [CLS] token to the input, run it through the Transformer stack, take the final-layer [CLS] embedding, and project it through a linear classifier to unnormalized class scores [5]. This is the reference configuration; do not modify it, since any change would make the comparison unfair to BERT.

4. Implement the LAYA head following its published computation. Collect the hidden state h_i from every one of the L layers of the shared backbone. Map each h_i into a shared latent space with a lightweight adapter g_i(.) [12]. Compute input-conditioned attention coefficients alpha_i(x) [12], and form the aggregate h_agg = sum_i alpha_i(x) g_i(h_i) [12]. Compute the final prediction as y_hat = phi(W h_agg + b) [12].

for each input x:
  h_1 ... h_L = backbone(x)          # one hidden state per layer
  for i in 1..L:
    z_i = adapter_i(h_i)            # g_i(.), shared latent space
  alpha = attention(x, z_1..z_L)     # input-conditioned weights
  h_agg = sum_i alpha_i * z_i
  y_hat = phi(W * h_agg + b)

5. Fine-tune both configurations on the same data with the same optimizer and the same number of epochs, changing only the head. Because fine-tuning BERT-based models is known to be unstable on small datasets across random seeds [5], run each configuration, baseline head and LAYA head, across at least three or four different random seeds and report the spread, not a single number.

6. If any target dataset is small, apply the documented stabilization step before the final fine-tuning run: first fine-tune the pre-trained backbone on a larger, related intermediate task, then fine-tune on the small target dataset [5]. Apply this identically to both head configurations so it does not become a confound.

7. Measure accuracy with macro F1 on held-out test data for both configurations, matching the metric used in the BERT-versus-LLM study so results sit in the same frame of reference [1]. Report mean and spread across seeds from step 5.

8. Measure inference latency for both configurations on the actual target on-device hardware, not a server or a simulator, since the evidence base warns that simulated results, as in the quantum-hybrid case, do not establish a real hardware speedup [2]. Record wall-clock time per example at a fixed batch size of one, matching the on-device deployment scenario in the research question.

9. Measure memory footprint and parameter count for both head configurations attached to the shared backbone. Use the TinyBERT-style compression numbers, 7.5x smaller and 9.4x faster for a 4-layer student versus BERT BASE [7], as a reference scale for what a meaningful size or speed difference looks like, so the LAYA-versus-baseline-head difference can be judged against a known magnitude.

10. Report results as a multi-objective comparison, not a single accuracy table, following the Pareto-frontier and utility-function framing used for the BERT-versus-LLM study [1]. Plot accuracy against latency for both head configurations and state clearly whether one dominates the other or whether there is a genuine trade-off.

11. Common failure points to check before trusting the result: confirm the adapter g_i is applied identically to every layer so no layer is given an unfair scale advantage [12]; confirm the attention coefficients alpha_i(x) are actually input-dependent and not collapsing to a fixed, input-independent weighting, since the interpretability value of LAYA depends on this being true [12]; and confirm that seed variance in the baseline BERT head, documented as a known instability [5], is not being mistaken for a genuine effect of the LAYA head.

12. Report the interpretability outputs alongside accuracy and latency if LAYA is used, since its attention weights are meant to double as a layer-attribution explanation without a separate post-hoc method [12]. Check qualitatively whether the pattern of layer usage looks structured and task-dependent, as reported for image classification [12], or whether it looks uniform or noisy on the text task, since this was not previously tested and is a new observation this experiment would produce.

What we would build

We would build a small, controlled head-to-head test: take a single pre-trained BERT-base encoder and attach two heads to it, the standard [CLS]-plus-linear classifier [5] and a LAYA-style attention aggregator built from the published computation, h_agg = sum_i alpha_i(x) g_i(h_i) followed by y_hat = phi(W h_agg + b) [12]. We would fine-tune both configurations on one binary task, SST-2, and one multi-class task, AG News, since both are named in the existing BERT-versus-LLM benchmark set [1], across four random seeds each, given the documented instability of BERT fine-tuning on small data [5].

We would judge the result on three axes together, following the multi-objective framing already used for BERT-versus-LLM comparisons [1]: macro F1 on held-out test data, per-example inference latency measured on one fixed on-device-class machine (a laptop CPU, to keep the setup reproducible without needing specialized hardware), and parameter count added by each head. We would use the un-modified fine-tuned BERT-base with its standard head as the baseline, and treat the TinyBERT compression numbers, 7.5x smaller and 9.4x faster than BERT BASE [7], as a reference scale for what counts as a meaningful latency difference.

In a few weeks, two people can implement both heads, run the fine-tuning across two tasks and four seeds, and produce one accuracy-versus-latency plot per task. The cost is modest: one pre-trained BERT-base checkpoint, two small public datasets, and CPU or single-GPU fine-tuning runs, no quantum simulation and no LLM API calls are required. This would be the first reported direct comparison between LAYA and a fine-tuned BERT-base classifier on text data, filling the exact gap this note identifies.

What this note is based on

  1. factsupported

    Large language models such as GPT-4o and Claude Sonnet 4.5 have demonstrated strong capabilities in open-ended reasoning and generative language tasks.

    [1] Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Prompting in Production, abstract arXiv:2602.06370v1
    Large language models (LLMs) such as GPT-4o and Claude Sonnet 4.5 have demonstrated strong capabilities in open-ended reasoning and generative language tasks, leading to their widespread adoption across a broad range of NLP applications. However, for structured text classificatio…
  2. methodsupported

    The paper evaluates zero- and few-shot prompt-based large language models and fully fine-tuned encoder-only architectures across four benchmarks (IMDB, SST-2, AG News, and DBPedia), measuring macro F1, inference latency, and monetary cost.

    [1] Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Prompting in Production, abstract arXiv:2602.06370v1
    Large language models (LLMs) such as GPT-4o and Claude Sonnet 4.5 have demonstrated strong capabilities in open-ended reasoning and generative language tasks, leading to their widespread adoption across a broad range of NLP applications. However, for structured text classificatio…
  3. resultsupported

    Fine-tuned encoder-based models from the BERT family achieve competitive, and often superior, classification performance while operating at one to two orders of magnitude lower cost and latency compared to zero- and few-shot LLM prompting.

    [1] Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Prompting in Production, abstract arXiv:2602.06370v1
    Large language models (LLMs) such as GPT-4o and Claude Sonnet 4.5 have demonstrated strong capabilities in open-ended reasoning and generative language tasks, leading to their widespread adoption across a broad range of NLP applications. However, for structured text classificatio…
  4. methodsupported

    The paper frames model evaluation as a multi-objective decision problem and analyzes trade-offs using Pareto frontier projections and a parameterized utility function reflecting different deployment regimes.

    [1] Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Prompting in Production, section Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Promp
    We frame model evaluation as a multi-objective decision problem and analyze trade-offs using Pareto frontier projections and a parameterized utility function reflecting different deployment regimes. Our results show that fine-tuned encoder-based models from the BERT family achiev…
  5. factsupported

    Fine-tuned encoders' open-source nature enables on-premise deployment, offering advantages in privacy, data governance, and reproducibility.

    [1] Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Prompting in Production, section Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Promp
    We frame model evaluation as a multi-objective decision problem and analyze trade-offs using Pareto frontier projections and a parameterized utility function reflecting different deployment regimes. Our results show that fine-tuned encoder-based models from the BERT family achiev…
  6. factsupported

    For fixed-label text classification, tasks have traditionally been addressed using encoder-only architectures including BERT, RoBERTa, and DistilBERT.

    [1] Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Prompting in Production, section 1. Introduction
    Despite this broad success, the applicability of LLMs to structured prediction problems warrants closer examination. In fixed-label text classification—where the objective is to assign each input to one of a predefined set of categories—performance alone is rarely the sole determ…
  7. factsupported

    Fine-tuned BERT, RoBERTa, and DistilBERT models achieve strong predictive accuracy while maintaining low inference latency and modest computational footprints.

    [1] Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Prompting in Production, section 1. Introduction
    Despite this broad success, the applicability of LLMs to structured prediction problems warrants closer examination. In fixed-label text classification—where the objective is to assign each input to one of a predefined set of categories—performance alone is rarely the sole determ…
  8. factsupported

    LLMs generate output token by token even when producing a single class label, introducing inherent latency and usage-based costs.

    [1] Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Prompting in Production, section 1. Introduction
    The growing reliance on LLMs for classification thus raises an important systems-level question: under what conditions does the generality of large, prompt-driven models justify their operational overhead relative to specialized, fine-tuned encoders? Unlike discriminative encoder…
  9. resultsupported

    The proposed hybrid classical-quantum BERT model achieves performance that is competitive with, and in some cases better than, the classical baselines on standard benchmark datasets.

    [2] A Hybrid Classical-Quantum Fine Tuned BERT for Text Classification, abstract arXiv:2511.17677v1
    Fine-tuning BERT for text classification can be computationally challenging and requires careful hyper-parameter tuning. Recent studies have highlighted the potential of quantum algorithms to outperform conventional methods in machine learning and text classification tasks. In th…
  10. methodsupported

    The hybrid approach integrates an n-qubit quantum circuit with a classical BERT model for text classification.

    [2] A Hybrid Classical-Quantum Fine Tuned BERT for Text Classification, section A Hybrid Classical-Quantum Fine Tuned BERT for Text Classification
    Abu Kaisar Mohammad Masum Naveed Mahmud M. Hassan Najafi Sercan Aygun Abstract Fine-tuning BERT for text classification can be computationally challenging and requires careful hyper-parameter tuning. Recent studies have highlighted the potential of quantum algorithms to outperfor…
  11. methodsupported

    The proposed hybrid classical-quantum approach uses an n-qubit quantum circuit to fine-tune a classical BERT model.

    [2] A Hybrid Classical-Quantum Fine Tuned BERT for Text Classification, section Introduction
    In this work, we propose a hybrid classical-quantum approach for classifying texts. We use an nn-qubit quantum circuit to fine-tune a classical BERT model. We perform a comprehensive evaluation of the proposed method for text classification on a variety of popular datasets. The B…
  12. limitationsupported

    Current quantum hardware is not yet fault-tolerant enough to achieve actual computational speedup, so experiments are performed with quantum circuit simulations.

    [2] A Hybrid Classical-Quantum Fine Tuned BERT for Text Classification, section Introduction
    In this work, we propose a hybrid classical-quantum approach for classifying texts. We use an nn-qubit quantum circuit to fine-tune a classical BERT model. We perform a comprehensive evaluation of the proposed method for text classification on a variety of popular datasets. The B…
  13. factsupported

    Fine-tuning BERT for specific NLP tasks requires high computational resources and expensive inference time.

    [2] A Hybrid Classical-Quantum Fine Tuned BERT for Text Classification, section Introduction
    Pre-trained language models such as BERT (Bidirectional Encoder Representations from Transformers) (Devlin et al. 2018), have demonstrated exceptional performance across various language comprehension challenges (Sun et al. 2019). The BERT model effectively learns universal langu…
  14. methodsupported

    BERT generates an embedding vector contextualized through a stack of Transformer blocks for each input token, and prepends a special [CLS] token to the input sentence for classification tasks.

    [5] Revisiting Few-sample BERT Fine-tuning, section 2 Background and Related Work
    BERT The Bidirectional Encoder Representations from Transformers (Devlin et al., 2019, BERT;) model is a Transformer encoder (Vaswani et al., 2017) trained on raw text using masked language modeling and next-sentence prediction objectives. It generates an embedding vector context…
  15. methodsupported

    For sentence-level classification, an added linear classifier projects the [CLS] embedding to an unnormalized probability vector over the output classes.

    [5] Revisiting Few-sample BERT Fine-tuning, section 2 Background and Related Work
    BERT The Bidirectional Encoder Representations from Transformers (Devlin et al., 2019, BERT;) model is a Transformer encoder (Vaswani et al., 2017) trained on raw text using masked language modeling and next-sentence prediction objectives. It generates an embedding vector context…
  16. factsupported

    Fine-tuning BERT remains unstable, especially when using BERTLarge on small datasets, where identical learning processes with different random seeds often result in significantly different models.

    [5] Revisiting Few-sample BERT Fine-tuning, section 1 Introduction
    Fine-tuning self-supervised pre-trained models has significantly boosted state-of-the-art performance on natural language processing (NLP) tasks (Liu, 2019; Yang et al., 2019a; Wadden et al., 2019; Zhu et al., 2020; Guu et al., 2020). One of the most effective models for this pro…
  17. factsupported

    Fine-tuning the pre-trained BERT model on a large intermediate task stabilizes later fine-tuning on small datasets.

    [5] Revisiting Few-sample BERT Fine-tuning, section 2 Background and Related Work
    Existing work (Phang et al., 2018; Lee et al., 2020; Dodge et al., 2020) shows that these seemingly benign factors can influence the results significantly, especially on small datasets (i.e., << 10K examples). Consequently, practitioners often conduct many random trials of fine-t…
  18. factsupported

    Factors causing instability in few-sample BERT fine-tuning include: the use of a non-standard optimization method with biased gradient estimation, limited applicability of parts of the BERT network, and the use of a pre-determined small number of training iterations.

    [5] Revisiting Few-sample BERT Fine-tuning, abstract arXiv:2006.05987v3
    This paper is a study of fine-tuning of BERT contextual representations, with focus on commonly observed instabilities in few-sample scenarios. We identify several factors that cause this instability: the common use of a non-standard optimization method with biased gradient estim…
  19. factsupported

    BERT is based on a multi-layer bidirectional Transformer and is trained on plain text for masked word prediction and next sentence prediction tasks.

    [6] How to Fine-Tune BERT for Text Classification?, section 1 Introduction
    Another kind of pre-training models is sentence-level. Howard and Ruder (2018) propose ULMFiT, a fine-tuning method for pre-trained language model that achieves state-of-the-art results on six widely studied text classification datasets. More recently, pre-trained language models…
  20. factsupported

    BERT is the first fine-tuning based representation model that achieves state-of-the-art results for a range of NLP tasks.

    [6] How to Fine-Tune BERT for Text Classification?, section 2.1 Language Model Pre-training
    More recently, the method of pre-training language models on a large network with a large amount of unlabeled data and fine-tuning in downstream tasks has made a breakthrough in several natural language understanding tasks, such as OpenAI GPT Radford et al. (2018) and BERT Devlin…
  21. resultsupported

    Fine-tuning BERT produces similar performance to classical models at significant additional cost in automated essay scoring.

    [9] Should You Fine-Tune BERT for Automated Essay Scoring?, abstract DOI 10.18653/v1/2020.bea-1.15
    Most natural language processing research now recommends large Transformer-based models with fine-tuning for supervised classification tasks; older strategies like bag-ofwords features and linear models have fallen out of favor.Here we investigate whether, in automated essay scor…
  22. resultsupported

    TinyBERT 4 with 4 layers achieves more than 96.8% the performance of its teacher BERT BASE on GLUE benchmark, while being 7.5x smaller and 9.4x faster on inference.

    [7] TinyBERT: Distilling BERT for Natural Language Understanding, abstract DOI 10.18653/v1/2020.findings-emnlp.372
    Language model pre-training, such as BERT, has significantly improved the performances of many natural language processing tasks.However, pre-trained language models are usually computationally expensive, so it is difficult to efficiently execute them on resourcerestricted device…
  23. resultsupported

    TinyBERT 6 with 6 layers performs on-par with its teacher BERT BASE.

    [7] TinyBERT: Distilling BERT for Natural Language Understanding, abstract DOI 10.18653/v1/2020.findings-emnlp.372
    Language model pre-training, such as BERT, has significantly improved the performances of many natural language processing tasks.However, pre-trained language models are usually computationally expensive, so it is difficult to efficiently execute them on resourcerestricted device…
  24. factsupported

    Transformer layers are linear in the input dimensionality and quadratic in the input length.

    [10] How Crucial is Transformer in Decision Transformer?, section 2 Background
    Recently Transformers [27] have become predominant in natural language processing and sequence modeling. Transformer is an architecture for auto-regressive sequence modeling that is purely based on the attention mechanism and does not contain any recurrent or convolutional struct…
  25. factsupported

    Recurrent networks scale linearly in the input length and quadratically in the input dimensionality.

    [10] How Crucial is Transformer in Decision Transformer?, section 2 Background
    Recently Transformers [27] have become predominant in natural language processing and sequence modeling. Transformer is an architecture for auto-regressive sequence modeling that is purely based on the attention mechanism and does not contain any recurrent or convolutional struct…
  26. factsupported

    LAYA (Layer-wise Attention Aggregator) is a novel output head that dynamically aggregates internal representations through attention.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, abstract arXiv:2511.12723v2
    Deep neural networks typically rely on the representation produced by their final hidden layer to make predictions, implicitly assuming that this single vector fully captures the semantics encoded across all preceding transformations. However, intermediate layers contain rich and…
  27. methodsupported

    LAYA learns input-conditioned attention weights over layer-wise features.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, abstract arXiv:2511.12723v2
    Deep neural networks typically rely on the representation produced by their final hidden layer to make predictions, implicitly assuming that this single vector fully captures the semantics encoded across all preceding transformations. However, intermediate layers contain rich and…
  28. methodsupported

    LAYA provides intrinsic layer-attribution scores that explicitly quantify the contribution of each representation to the final decision without external post-hoc explanation methods.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, abstract arXiv:2511.12723v2
    Deep neural networks typically rely on the representation produced by their final hidden layer to make predictions, implicitly assuming that this single vector fully captures the semantics encoded across all preceding transformations. However, intermediate layers contain rich and…
  29. resultsupported

    Experiments on image classification datasets show that LAYA achieves competitive predictive performance while producing meaningful depth-aware explanations.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, abstract arXiv:2511.12723v2
    Deep neural networks typically rely on the representation produced by their final hidden layer to make predictions, implicitly assuming that this single vector fully captures the semantics encoded across all preceding transformations. However, intermediate layers contain rich and…
  30. factsupported

    Most architectures ultimately derive their predictions exclusively from the representation produced by the last hidden layer.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, section 1 Introduction
    The remarkable success of deep neural networks in computer vision is largely attributable to their ability to learn hierarchical representations, progressively transforming raw visual inputs into increasingly abstract representations. Yet, despite differences in architecture and …
  31. factsupported

    Decision Transformer is an offline RL algorithm that auto-regressively models trajectories using the GPT-2 architecture.

    [10] How Crucial is Transformer in Decision Transformer?, section 1 Introduction
    Transformers [27] have shown impressive results across a number of problem domains in Natural Language Processing [5, 17, 3] and Computer Vision [6, 13]. Inspired by these results, [4, 11] framed Reinforcement Learning (RL) as a sequence modeling problem, in which Transformer pre…
  32. resultsupported

    Decision Transformer struggles with continuous control problems such as inverted pendulum and Furuta pendulum stabilization.

    [10] How Crucial is Transformer in Decision Transformer?, abstract arXiv:2211.14655v1
    Decision Transformer (DT) is a recently proposed architecture for Reinforcement Learning that frames the decision-making process as an auto-regressive sequence modeling problem and uses a Transformer model to predict the next action in a sequence of states, actions, and rewards. …
  33. resultsupported

    Decision LSTM is able to achieve expert-level performance on inverted pendulum and Furuta pendulum stabilization tasks.

    [10] How Crucial is Transformer in Decision Transformer?, abstract arXiv:2211.14655v1
    Decision Transformer (DT) is a recently proposed architecture for Reinforcement Learning that frames the decision-making process as an auto-regressive sequence modeling problem and uses a Transformer model to predict the next action in a sequence of states, actions, and rewards. …
  34. factsupported

    LAY A (Layer-wise Attention Aggregator) is a lightweight output module that learns to weight and combine all hidden representations in an input-dependent way.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, section 1 Introduction
    This work revisits the role of the output stage of deep neural networks. The central idea is that the output layer should not depend exclusively on the deepest representation, but should instead integrate information across depth while simultaneously exposing how different abstra…
  35. methodsupported

    LAY A replaces the standard classifier head with an attention-based aggregator: h_agg = sum_{i=1}^{L} alpha_i(x) g_i(h_i), where alpha_i(x) are learnable, input-conditioned coefficients.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, section 1 Introduction
    This work revisits the role of the output stage of deep neural networks. The central idea is that the output layer should not depend exclusively on the deepest representation, but should instead integrate information across depth while simultaneously exposing how different abstra…
  36. methodsupported

    Each hidden state in LAY A is mapped into a shared latent space through a lightweight adapter g_i(.), ensuring comparability across layers.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, section 1 Introduction
    This work revisits the role of the output stage of deep neural networks. The central idea is that the output layer should not depend exclusively on the deepest representation, but should instead integrate information across depth while simultaneously exposing how different abstra…
  37. methodsupported

    The final prediction in LAY A is computed as y_hat = phi(W h_agg + b).

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, section 1 Introduction
    This work revisits the role of the output stage of deep neural networks. The central idea is that the output layer should not depend exclusively on the deepest representation, but should instead integrate information across depth while simultaneously exposing how different abstra…
  38. resultsupported

    Quantitative and qualitative interpretability analyses demonstrate that LAY A's attention scores closely reflect the actual contribution of individual layers.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, section LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks
    Furthermore, quantitative and qualitative interpretability analyses demonstrate that LAYA’s attention scores closely reflect the actual contribution of individual layers, revealing structured, task-dependent patterns of depth utilization while providing intuitive explanations of …
  39. resultsupported

    LAY A reveals structured, task-dependent patterns of depth utilization while providing intuitive explanations of how different abstraction levels contribute to each prediction.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, section LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks
    Furthermore, quantitative and qualitative interpretability analyses demonstrate that LAYA’s attention scores closely reflect the actual contribution of individual layers, revealing structured, task-dependent patterns of depth utilization while providing intuitive explanations of …
  40. factsupported

    Empirical and theoretical studies suggest that different layers capture distinct and complementary aspects of the input: early layers encode local patterns, middle layers capture structural relations, and deeper layers represent increasingly abstract semantics.

    [12] LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks, section 1 Introduction
    However, empirical and theoretical studies suggest that different layers capture distinct and complementary aspects of the input: early layers encode local patterns, middle layers capture structural relations, and deeper layers represent increasingly abstract semantics (e.g., (Ba…

Sources

  1. [1]
    Alberto Andres Valdes Gonzalez. Cost-Aware Model Selection for Text Classification: Multi-Objective Trade-offs Between Fine-Tuned Encoders and LLM Prompting in Production. arXiv, 2026.arxiv · primary · https://arxiv.org/abs/2602.06370v1
  2. [2]
    Abu Kaisar Mohammad Masum, Naveed Mahmud, M. Hassan Najafi, Sercan Aygun. A Hybrid Classical-Quantum Fine Tuned BERT for Text Classification. arXiv, 2025.arxiv · primary · https://arxiv.org/abs/2511.17677v1
  3. [3]
    Ji Xin, Raphael Tang, Yaoliang Yu, Jimmy Lin. BERxiT: Early Exiting for BERT with Better Fine-Tuning and Extension to Regression, 2021.openalex · primary · DOI 10.18653/v1/2021.eacl-main.8 · https://doi.org/10.18653/v1/2021.eacl-main.8
  4. [4]
    Dhendy Zaki Ridwan, Panji Peksi Brajangan. Vibration-Based Operational State Classification of Wheel Loaders: A Feasibility Study Using Decision Tree and Time-Frequency Features. 2025 2nd Beyond Technology Summit on Informatics International Conference (BTS-I2C), 2025.semanticscholar · primary · DOI 10.1109/BTS-I2C67944.2025.11399347 · https://doi.org/10.1109/BTS-I2C67944.2025.11399347
  5. [5]
    Tianyi Zhang, Felix Wu, Arzoo Katiyar, Kilian Q. Weinberger, Yoav Artzi. Revisiting Few-sample BERT Fine-tuning. arXiv, 2020.arxiv · primary · https://arxiv.org/abs/2006.05987v3
  6. [6]
    Chi Sun, Xipeng Qiu, Yige Xu, Xuanjing Huang. How to Fine-Tune BERT for Text Classification?. arXiv, 2019.arxiv · primary · https://arxiv.org/abs/1905.05583v3
  7. [7]
    Xiaoqi Jiao, Yichun Yin, Lifeng Shang, Xin Ran Jiang, Xiao Dong Chen, Linlin Li. TinyBERT: Distilling BERT for Natural Language Understanding, 2020.openalex · primary · DOI 10.18653/v1/2020.findings-emnlp.372 · https://doi.org/10.18653/v1/2020.findings-emnlp.372
  8. [8]
    Xinjie Lin, Gang Xiong, Gaopeng Gou, Zhen Li, Junzheng Shi, Jing Hua Yu. ET-BERT: A Contextualized Datagram Representation with Pre-training Transformers for Encrypted Traffic Classification. Proceedings of the ACM Web Conference 2022, 2022.openalex · primary · DOI 10.1145/3485447.3512217 · https://doi.org/10.1145/3485447.3512217
  9. [9]
    Elijah Mayfield, Alan W. Black. Should You Fine-Tune BERT for Automated Essay Scoring?, 2020.openalex · primary · DOI 10.18653/v1/2020.bea-1.15 · https://doi.org/10.18653/v1/2020.bea-1.15
  10. [10]
    Max Siebenborn, Boris Belousov, Junning Huang, Jan Peters. How Crucial is Transformer in Decision Transformer?. arXiv, 2022.arxiv · primary · https://arxiv.org/abs/2211.14655v1
  11. [11]
    Xiaoqi Jiao, Yichun Yin, Lifeng Shang, Xin Ran Jiang, Xiao Chen, Linlin Li. TinyBERT: Distilling BERT for Natural Language Understanding. arXiv (Cornell University), 2019.openalex · primary · DOI 10.48550/arxiv.1909.10351 · https://doi.org/10.48550/arxiv.1909.10351
  12. [12]
    Gennaro Vessio. LAYA: Layer-wise Attention Aggregation for Interpretable Depth-Aware Neural Networks. arXiv, 2025.arxiv · primary · https://arxiv.org/abs/2511.12723v2
  13. [13]
    Shital Dupare, Prof. Jayant Adhikari. A Survey on Flood Predication and Classification using Machine learning. Zenodo (CERN European Organization for Nuclear Research), 2023.openalex · primary · DOI 10.5281/zenodo.21552694 · https://doi.org/10.5281/zenodo.21552694
  14. [14]
    Magdalena Rybicka, J. Villalba, N. Dehak, K. Kowalczyk. End-to-End Neural Speaker Diarization with an Iterative Refinement of Non-Autoregressive Attention-based Attractors. Interspeech, 2022.semanticscholar · primary · DOI 10.21437/interspeech.2022-10169 · https://doi.org/10.21437/interspeech.2022-10169
  15. [15]
    Sergey S. Averyanov, Andrey S. Trofimov. Analysing Non-Ensemble Machine Learning Methods for Solving the Transient Classification Problem. Educational Data Mining, 2025.semanticscholar · primary · DOI 10.1109/EDM65517.2025.11096849 · https://doi.org/10.1109/EDM65517.2025.11096849
  16. [16]
    Sajith Ranatunga, Rune Strand Ødegård, Knut Jetlund, Bjørn Arild Godager, C. Storie, J. Storie. From remote sensing to decision-making: a web-based platform for near-real-time land cover classification. International Journal of Digital Earth, 2026.semanticscholar · primary · DOI 10.1080/17538947.2026.2639785 · https://doi.org/10.1080/17538947.2026.2639785
  17. [17]
    Jiatao Gu, Xiang Kong. Fully Non-autoregressive Neural Machine Translation: Tricks of the Trade, 2021.openalex · primary · DOI 10.18653/v1/2021.findings-acl.11 · https://doi.org/10.18653/v1/2021.findings-acl.11
  18. [18]
    Yakoub Bazi, Laila Bashmal, Mohamad Mahmoud Al Rahhal, Reham Al-Dayil, Naif Al Ajlan. Vision Transformers for Remote Sensing Image Classification. Remote Sensing, 2021.openalex · primary · DOI 10.3390/rs13030516 · https://doi.org/10.3390/rs13030516
  19. [19]
    Ce Zhou, Qian Li, Chen Li, Jun Yu, Yixin Liu, Guangjing Wang. A Comprehensive Survey on Pretrained Foundation Models: A History from BERT to ChatGPT. arXiv (Cornell University), 2023.openalex · primary · DOI 10.48550/arxiv.2302.09419 · https://doi.org/10.48550/arxiv.2302.09419
  20. [20]
    Zhuoyan Li, Hangxiao Zhu, Zhuoran Lu, Ming Yin. Synthetic Data Generation with Large Language Models for Text Classification: Potential and Limitations, 2023.openalex · primary · DOI 10.18653/v1/2023.emnlp-main.647 · https://doi.org/10.18653/v1/2023.emnlp-main.647