Scaling Closed-Loop Feature Channel Configuration with LLMs
Summary
This paper scales a closed-loop LLM-based channel configuration search to 250 candidates per cycle, showing positive accuracy trends and improved parameter efficiency on CIFAR-100, and revealing architectural regularities in LLM-generated channel priors.
View Cached Full Text
Cached at: 07/24/26, 05:10 AM
# Scaling Closed-Loop Feature Channel Configuration with LLMs
Source: [https://arxiv.org/html/2607.20516](https://arxiv.org/html/2607.20516)
11institutetext:Computer Vision Lab, CAIDAS & IFI, University of Würzburg, Germany
11email:t\.atincuzun@gmail\.com###### Abstract
Promising initial results in closed\-loop large\-language\-model\-based channel\-configuration search demonstrated that neural\-network widths can be optimized directly through executable code generation and accuracy feedback\. However, those results were obtained from a relatively sparse set of valid evaluations, leaving open whether the observed optimization behavior transfers to a denser sampling regime and whether additional architectural regularities emerge when more generated networks are evaluated\. To test this, the same search setting is scaled to 250 candidate networks per fine\-tuning cycle\. The analysis covers 2000 generated candidates from 8 complete cycles, yielding 462 verified CIFAR\-100 evaluations after task and metadata filtering\. Per\-cycle mean accuracy exhibits a positive linear trend with slope9\.87×10−49\.87\\times 10^\{\-4\}\(p=0\.043p=0\.043\), while the high\-performing frontier improves more strongly: the best observed accuracy increases from 0\.3144 to 0\.3676, and both the top\-5 and top\-10 cycle\-level means exhibit positive trends\. The scaled run also reveals improved parameter efficiency\. The best model reaches 0\.3676 with 11\.8M parameters, compared with an early high\-performing model at 0\.3144 with 166\.5M parameters\. Beyond accuracy, the larger sample exposes architectural regularities that were difficult to assess from sparse observations\. Non\-power\-of\-two channel widths occur in 41\.8% of verified candidates, and the strongest models share structured channel\-allocation patterns characterized by moderate early widths and expanded middle or later blocks\. These findings indicate that the channel\-search signal observed in the initial study transfers to a larger\-data setting and that increased sampling scale turns isolated candidate discovery into a measurable distributional and architectural analysis of LLM\-generated channel priors\.
## 1Introduction
Neural architecture search \(NAS\) is usually formulated as optimization over a constrained graph or supernet\[[24](https://arxiv.org/html/2607.20516#bib.bib2),[11](https://arxiv.org/html/2607.20516#bib.bib3)\]\. Channel\-number search is a narrower but practically important case: it changes per\-layer widths while preserving the executable network skeleton, and it is closely related to efficient\-model design and channel\-pruning literature\[[7](https://arxiv.org/html/2607.20516#bib.bib32),[13](https://arxiv.org/html/2607.20516#bib.bib33),[12](https://arxiv.org/html/2607.20516#bib.bib34),[19](https://arxiv.org/html/2607.20516#bib.bib8)\]\. The preceding study asked whether large language models \(LLMs\) can perform such search directly over neural\-network source code\[[16](https://arxiv.org/html/2607.20516#bib.bib1)\]\. In that framework, the LLM generates a PyTorch model, a training harness evaluates it, and successful generations are fed back into later fine\-tuning cycles\.
The preceding result established feasibility on a smaller evaluation sample\. Many generated programs may fail, some successful executions may correspond to non\-target settings, and the best candidate is an order statistic over a sampled architecture population\. Reporting only the final best architecture therefore leaves open the question of whether the search behavior carries over to a larger generation budget\.
The present study analyzes a denser run of the same channel\-configuration loop\. Each complete cycle contains 250 generated candidates, compared with a substantially smaller sample in the preceding experiment\. The resulting data support three observations: the per\-cycle mean accuracy has a positive trend, the high\-performing frontier improves under scaling, and later cycles identify substantially more parameter\-efficient channel configurations than the early incumbent\. The contribution of the present study is therefore a scaled empirical analysis of LLM\-driven channel search and the architectural patterns that become visible with more generated candidates\.
Contributions\.First, the study provides a strict candidate\-accounting protocol for LLM\-generated architecture experiments, distinguishing failed code, missing logs, non\-target datasets, and target\-valid evaluations\. Second, the scaled run recovers and strengthens the accuracy and frontier signals discussed in the preceding study\. Third, channel patterns are analyzed at scale using both programmatic extraction and dynamic PyTorch instrumentation of generated networks\. Fourth, a self\-contained analysis script rebuilds all tables and figures from the raw folders without relying on pre\-existing processed data frames\.
## 2Related Work
Neural architecture search and channel configuration\.Classical NAS formulates architecture design as an optimization problem over a discrete or continuous search space\. Reinforcement\-learning\-based NAS demonstrated that architectures can be learned from validation feedback\[[24](https://arxiv.org/html/2607.20516#bib.bib2)\], while differentiable methods such as DARTS reduced the cost of search by relaxing architectural decisions into continuous parameters\[[11](https://arxiv.org/html/2607.20516#bib.bib3)\]\. For efficient convolutional networks, a closely related line of work searches or prunes channel dimensions rather than entire macro\-architectures\. Network Slimming uses sparsity\-induced channel selection\[[13](https://arxiv.org/html/2607.20516#bib.bib33)\]; AMC frames compression as automated policy search\[[7](https://arxiv.org/html/2607.20516#bib.bib32)\]; MetaPruning predicts weights for pruned channel configurations\[[12](https://arxiv.org/html/2607.20516#bib.bib34)\]; and AutoSlim searches channel widths in a slimmable network\[[19](https://arxiv.org/html/2607.20516#bib.bib8)\]\. These methods usually operate within predefined search spaces or supernets\. The present study instead analyzes channel configurations generated as executable code by a language model, while keeping the scientific focus on channel allocation, parameter efficiency, and proxy accuracy under a scaled candidate budget\.
Language models for architecture generation\.Recent work has explored LLMs as optimizers, code editors, or knowledge sources for architecture design\. GPT\-style models have been tested for NAS prompting and iterative architecture proposal\[[21](https://arxiv.org/html/2607.20516#bib.bib11),[18](https://arxiv.org/html/2607.20516#bib.bib23)\]\. EvoPrompting and LLMatic use language\-model code generation in evolutionary or quality\-diversity search loops\[[4](https://arxiv.org/html/2607.20516#bib.bib16),[14](https://arxiv.org/html/2607.20516#bib.bib19)\]\. Other systems use LLMs to transfer design principles\[[23](https://arxiv.org/html/2607.20516#bib.bib20)\], perform self\-evolution and knowledge\-inspired search\[[2](https://arxiv.org/html/2607.20516#bib.bib21)\], or coordinate multiple LLM roles for knowledge\-guided search\[[10](https://arxiv.org/html/2607.20516#bib.bib22)\]\. A complementary line of work studies the infrastructure needed for generated neural networks to be stored, evaluated, and reused\. NNGPT rethinks AutoML around LLM\-generated neural\-network code under executable API constraints\[[9](https://arxiv.org/html/2607.20516#bib.bib24)\], while LEMUR and LEMUR2 provide large neural\-network datasets and diversity\-oriented resources for automated neural design exploration\[[6](https://arxiv.org/html/2607.20516#bib.bib37),[17](https://arxiv.org/html/2607.20516#bib.bib38)\]\. The closest prior work to the present study is the closed\-loop channel\-prior paper, which introduced feedback\-driven LLM channel\-configuration search and reported promising non\-standard channel priors\[[16](https://arxiv.org/html/2607.20516#bib.bib1)\]\. Compared with these broader architecture\-generation and dataset efforts, the present analysis isolates a narrower question: whether the channel\-search behavior observed in that prior study persists when the number of generated networks per cycle is increased, and what architectural regularities become measurable from the larger generated population\.
Proxy evaluation and short\-horizon signals\.NAS systems often rely on reduced\-cost evaluations before committing to expensive full training\. Proxy signals may come from short training schedules\[[22](https://arxiv.org/html/2607.20516#bib.bib44)\], weight sharing through supernetworks\[[11](https://arxiv.org/html/2607.20516#bib.bib3)\], zero\-cost indicators computed from a single minibatch\[[1](https://arxiv.org/html/2607.20516#bib.bib45)\], or reduced search spaces\. Systematic comparisons show that proxies vary widely in how well they preserve the true ranking of architectures\[[20](https://arxiv.org/html/2607.20516#bib.bib46),[22](https://arxiv.org/html/2607.20516#bib.bib44)\]\. Such approximations are useful for ranking many candidates but must be interpreted as search\-time evidence rather than final trained performance\. The present work follows this logic: one\-epoch CIFAR\-100 accuracy is treated as a fixed proxy for early learning behavior\. The dynamic PyTorch analysis therefore asks which generated channel configurations learn quickly under this proxy, which stage\-wise allocations are associated with short\-horizon accuracy, and which models improve the accuracy\-parameter frontier before full\-training confirmation\.
## 3Closed\-Loop Pipeline and Scaled Evaluation Setting
The pipeline treats channel search as conditional code generation\[[16](https://arxiv.org/html/2607.20516#bib.bib1)\]\. The input prompt contains a baseline network, task metadata, hyperparameters, and a target improvement\. The LLM then emits a complete neural\-network program and training\-related blocks\. The candidate is evaluated under a fixed one\-epoch proxy protocol on CIFAR\-100\. Valid, evaluated candidates are stored and later used to update the model through parameter\-efficient fine\-tuning with LoRA\[[8](https://arxiv.org/html/2607.20516#bib.bib12),[5](https://arxiv.org/html/2607.20516#bib.bib13)\]\. The experiment uses the OlympicCoder\-7B code model\[[15](https://arxiv.org/html/2607.20516#bib.bib42)\]and an AirNet\-like residual convolutional skeleton\[[3](https://arxiv.org/html/2607.20516#bib.bib41)\]\. Generated networks and metadata are stored in the LEMUR/NNGPT ecosystem\[[6](https://arxiv.org/html/2607.20516#bib.bib37),[17](https://arxiv.org/html/2607.20516#bib.bib38),[9](https://arxiv.org/html/2607.20516#bib.bib24)\]\. LoRA hyperparameters follow the standard adapter settings: rank 32,α=32\\alpha=32, dropout0\.050\.05, applied to the q, k, v projection modules of the base model; fine\-tuning restarts from a fresh copy of the base model at the start of each cycle rather than continuing from the previous adapter\.
The study scales the same closed\-loop pipeline to 250 candidates per cycle, a substantial increase over prior sampling density\. The raw experiment directory contains cyclesA0throughA8\. CyclesA0–A7are complete, each with 250 candidate folders\. CycleA8is partial \(seven CIFAR\-100 evaluations\) and is excluded from the main analysis\.
Compute footprint\.Across the 462 strict CIFAR\-100 evaluations, the per\-candidate one\-epoch training took a median of3535s \(IQR2626–4848s\) and a total of approximately7\.47\.4GPU\-hours, with a median peak GPU memory of21\.521\.5GB\. The 12\.8%–34\.4% strict success rate means roughly two thirds of the per\-cycle wall\-clock was spent on candidates that did not enter the analysis\. This cost is part of why 8 cycles of 250 candidates each were needed to accumulate the 462 valid CIFAR\-100 evaluations, and it frames the search as a sample\-efficiency problem as well as an accuracy problem\.
## 4Data Accounting Protocol
A target\-valid success is defined as a candidate inA0–A7with a valid\{epoch\_number\}\.jsonfile \(under the one\-epoch protocol,1\.json\) and aneval\_info\.jsonconfirming evaluation oncifar\-100\. The dataset check removes false\-positive successful evaluations on other tasks\. This rule yields 462 strict CIFAR\-100 evaluations out of 2000 generated candidates\.
Table[1](https://arxiv.org/html/2607.20516#S4.T1)and Fig\.[1](https://arxiv.org/html/2607.20516#S4.F1)summarize the complete accounting\. Across complete cycles, 1348 candidates terminate with an error trace, 185 have no logged output, and 5 are successful evaluations on a dataset other than CIFAR\-100\. The non\-target evaluations are not failures of code execution, but they are excluded from the CIFAR\-100 analysis because they do not answer the target channel\-search question\.
Table 1:Per\-cycle candidate accounting for the complete cycles\. Each cycle contains 250 generated candidates\. Only the strict CIFAR\-100 column is used for accuracy and architecture claims\.Figure 1:Candidate accounting over the 8 complete cycles\. The figure separates target\-valid CIFAR\-100 evaluations from non\-target evaluations, code errors, and missing outputs\.Overall, 23\.1% of generated candidates become target\-valid CIFAR\-100 evaluations under this filtering rule\. The unsuccessful candidates are used for error analysis, while the successfully trained CIFAR\-100 models are used for the subsequent accuracy, efficiency, channel\-configuration, and dynamic PyTorch analyses\.
## 5Accuracy Trends Under Scaling
Table[2](https://arxiv.org/html/2607.20516#S5.T2)summarizes the strict CIFAR\-100 results\. The means lie in a narrow band from 0\.2107 to 0\.2203\. A linear fit to the per\-cycle means gives a positive slope of9\.87×10−49\.87\\times 10^\{\-4\}accuracy points per cycle \(p=0\.043p=0\.043\), indicating an upward trend at the cycle\-mean level across eight cycle\-level observations\. Individual candidates are highly variable, so the stronger empirical signal is found in the upper tail of the distribution rather than in a per\-candidate regression\.
Table 2:Accuracy statistics for strict CIFAR\-100 candidates\. Top\-5 mean is computed within each cycle and highlights the high\-performing tail\.The primary scaling signal is in the frontier\. The best strict CIFAR\-100 model inA0reaches 0\.3144\. Later cycles improve the high\-water mark to 0\.3676 at A6/B190\. Fig\.[2](https://arxiv.org/html/2607.20516#S5.F2)shows this distinction: the central mass of the distribution remains broad and noisy, while the upper tail improves more clearly\. Linear fits to the top\-5 and top\-10 per\-cycle means give slopes of4\.81×10−34\.81\\times 10^\{\-3\}\(p=0\.017p=0\.017\) and4\.02×10−34\.02\\times 10^\{\-3\}\(p=0\.016p=0\.016\), respectively\. This supports the interpretation that scaling the candidate budget primarily reveals improved high\-performing candidates rather than a uniform shift of the entire generated population\.
Figure 2:Accuracy trends and frontier dynamics\. Left: per\-cycle mean accuracy for all strict CIFAR\-100 candidates with a 95% confidence band, interquartile shading, median line, and top\-5 mean\. Right: the per\-cycle best and cumulative high\-water mark; the dashed reference is the best accuracy reported in the preceding study\[[16](https://arxiv.org/html/2607.20516#bib.bib1)\]\.These results show that the search improves the high\-performing frontier over successive cycles\. The best model is an order statistic that depends on sampling budget, and the scaled experiment makes that dependence visible: later samples include rare high\-performing configurations that were less accessible from a smaller sample\.
The trend p\-values are computed on eight cycle\-level points; bootstrap 95% confidence intervals on the per\-cycle means and maxima are wide and overlap across cycles\. The most stable statistical evidence is the positive linear trend of the top\-5 and top\-10 per\-cycle means \(p<0\.02p<0\.02\), rather than the per\-cycle mean alone\.
## 6Efficiency of the Discovered Frontier
The scaled run also shows a parameter\-efficiency effect\. A0/B134 reaches the highest A0 accuracy \(0\.3144\) but is the largest A0 model at 166\.5M parameters — the early cycle’s best raw score came at a high parameter cost \(the A0 median is 6\.5 M, the 75th percentile 19 M\)\. Late cycles recover the same or higher accuracy at much smaller scales: A6/B102 reaches 0\.3400 with 5\.0M parameters, and the global best A6/B190 reaches 0\.3676 with 11\.8M parameters\. The shift is also visible at the population level: 26 of 69 A0 strict candidates are Pareto\-dominated by A6/B190 \(lower accuracy at higher parameter counts\), and the per\-cycle maximum at matched parameter budgets is consistently higher in cycles A4–A7 than in A0–A3\. Thus the later frontier does not merely raise raw accuracy; it identifies channel allocations that dominate the early frontier across the full parameter range\.
Figure 3:Accuracy versus parameter count\. Points are strict CIFAR\-100 candidates, colored by generation cycle\. The red curve is the empirical Pareto frontier\. Late cycles include candidates that improve over the early high\-parameter incumbent while using far fewer parameters\.Fig\.[3](https://arxiv.org/html/2607.20516#S6.F3)shows the empirical Pareto frontier\. This analysis supports comparison beyond the single best accuracy value\. A scaled search should be evaluated not only by whether it finds a numerically similar maximum, but also by whether it recovers comparable trade\-offs between accuracy and model size\.
## 7Channel Configuration Patterns
The analysis script extracts convolutional output widths by executing each generatednew\_nn\.pyunder a lightweighttorch\.nn\-compatible stub module, recording constructor arguments forConv2d,BatchNorm2d, andLinearwithout GPU dependencies\. Extraction succeeds for all 462 strict CIFAR\-100 candidates, yielding 4961 convolutional width tokens with 94 distinct values\.
### 7\.1Non\-standard Widths
Non\-power\-of\-two widths appear in 193 of 462 strict architectures, or 41\.8% at the architecture level; at the token level, 20\.2% of convolutional widths are non\-power\-of\-two\. Power\-of\-two values remain dominant — the most frequent widths are conventional values such as 256, 512, 64, 128, and 192\. Architectures with at least one non\-power\-of\-two width have mean accuracy 0\.2144, compared with 0\.2169 for all\-power\-of\-two architectures, a negligible mean difference; the distinction is visible at the frontier, where the best all\-power\-of\-two architecture reaches 0\.3276 and the best architecture with at least one non\-power\-of\-two width reaches 0\.3676\.
### 7\.2Width\-Position Patterns
Table[3](https://arxiv.org/html/2607.20516#S7.T3)lists the top\-performing candidates\. The best model \(A6/B190, 0\.3676\) has channel sequence \[64, 192, 192, 192, 724, 724, 724, 256, 256, 256, 256, 256\] — a 64\-channel stem, three 192\-channel layers, three 724\-channel layers, and five 256\-channel layers in run\-length form\. The pattern is blockwise: moderate early capacity, a wider middle section, and a controlled later representation\. Fig\.[4](https://arxiv.org/html/2607.20516#S7.F4)shows that this pattern — better trajectories tend toward wider middle blocks — holds across network depths, and Fig\.[5](https://arxiv.org/html/2607.20516#S7.F5)shows the corresponding layer\-local statistics\. Non\-power\-of\-two widths concentrate in early\-middle positions, especially layers 2–7, and the association between width and accuracy is weaker near the stem and stronger in later positions\. The per\-layer tests are not independent, but the result shows that the scaled run produces structured, non\-random width variation\.
Figure 4:Channel profiles faceted by network depth\. Within each depth group, lines are colored by accuracy \(thin red = low, thick green = high\)\. The pattern of wider middle blocks for better models holds across depth values\.Figure 5:Layer\-local channel statistics\. Left: non\-power\-of\-two width rate by convolutional layer index\. Right: Spearman correlation between layer width and validation accuracy\. Later layers show stronger positive association with accuracy than the input stem\.
### 7\.3Dynamic PyTorch Evidence for Capacity Placement
The generated code permits a direct dynamic analysis with real PyTorch\. Each strict CIFAR\-100 network is instantiated, evaluated on a dummy CIFAR\-shaped tensor, and instrumented with hooks on convolutional, linear, normalization, and pooling layers\. This yields observed tensor shapes, parameter counts, and approximate multiply\-accumulate counts \(MACs\) for all 462 verified networks\. These measurements are architectural properties of the generated programs, while their association with accuracy should be interpreted under the fixed one\-epoch proxy protocol\.
Two complementary splits of the convolutional layers are used below\.Stage\-wiselabels a conv layer as*early*,*middle*, or*late*by its position \(first, middle, and last third of layers, respectively\)\.Resolution\-wiselabels a layer by the spatial resolution of its output feature map \(e\.g\., 32×\\times32, 16×\\times16, 8×\\times8\)\. The distinction matters because a layer’s*width*\(number of output channels\) and its*feature map*\(the spatial tensor \(channels×\\timesheight×\\timeswidth\)\) are different objects — a 192\-channel layer at 32×\\times32 is far more expensive than the same 192 channels at 8×\\times8, because the convolution is applied at every spatial position\. Resolution\-wise grouping is therefore the more informative split for capacity analysis\.
The resolution\-wise analysis is shown in Fig\.[6](https://arxiv.org/html/2607.20516#S7.F6)\. Top\-decile proxy models allocate substantially less primary\-convolution parameter share to32x32layers and substantially more to lower\-resolution layers\. In the full verified set \(N=462\), the share of primary\-convolution parameters located at8x8or lower resolution has Spearman correlationρ=0\.477\\rho=0\.477with one\-epoch accuracy \(p<10−26p<10^\{\-26\}\)\. Among the N=119 models that contain4x4convolutions, the mean4x4channel width has a similar\-magnitude association \(ρ=0\.516\\rho=0\.516,p<10−8p<10^\{\-8\}\); the larger coefficient reflects the more restricted parameter range of this subset, not a stronger underlying signal\.
Figure 6:Resolution\-aware dynamic analysis\. Left: primary\-convolution parameter allocation by output feature\-map resolution\. Top\-decile and efficient high\-accuracy candidates allocate more capacity to lower\-resolution stages than bottom\-decile candidates\. Right: resolution\-specific Spearman associations with one\-epoch accuracy\.To test whether the resolution effect is a proxy for larger models, candidates are compared within matched parameter\-count quartiles\. Quartile here means the 462 strict candidates are sorted by parameter count and split into four equal\-sized groups Q1–Q4 \(Q1 = smallest 25%, Q4 = largest 25%\); within each quartile, the candidates are then split into a*lower*and a*higher*half by their low\-resolution primary\-convolution parameter share\. Fig\.[7](https://arxiv.org/html/2607.20516#S7.F7)A shows the result: the higher low\-resolution group wins in all four quartiles, with a gap of approximately 0\.030 accuracy points in Q2, Q3, and Q4 and one\-sided Welch tests givingp<10−3p<10^\{\-3\}in those three bins\. If the resolution effect were only a size artifact, the two bars within each quartile would be roughly equal; they are not, so the resolution effect carries information beyond total parameter count\.
A complementary question is whether architecture features extracted from generated code can*predict*one\-epoch proxy performance at all\. A random\-forest regressor is trained on dynamic architecture features \(resolution shares, layer\-position ratios, log\-parameter count, depth, and so on\) and asked to predict each candidate’s one\-epoch accuracy, with leave\-cycle\-out cross\-validation so that the model is tested only on cycles it has not seen\. Fig\.[7](https://arxiv.org/html/2607.20516#S7.F7)B shows the result: each dot is one candidate, thexx\-coordinate is the observed accuracy and theyy\-coordinate is the predicted accuracy, with the red diagonal marking perfect prediction\. The points follow the diagonal loosely: leave\-cycle\-outR2=0\.219R^\{2\}=0\.219with Pearsonr=0\.476r=0\.476and Spearmanρ=0\.592\\rho=0\.592\(RMSE0\.0400\.040, roughly 4 accuracy points\)\. The most important features are low\-resolution parameter share, log\-parameter count, middle\-over\-early MAC allocation, late\-stage mean width, and depth\. The remaining∼\\sim78% of the variance is consistent with the noise floor of one\-epoch CIFAR\-100 training and LLM sampling: the signal is informative about short\-horizon learning without fully determining the proxy outcome\.
Figure 7:Matched\-budget and predictive analyses\.A: within each parameter\-count quartile, candidates with higher low\-resolution primary\-convolution parameter share \(green\) outperform the lower half \(gray\), so the resolution effect is not a size artifact\.B: predicted vs\. observed one\-epoch accuracy from a leave\-cycle\-out random forest on architecture features \(R2=0\.22R^\{2\}=0\.22, Pearsonr=0\.48r=0\.48\)\.
### 7\.4Confound Audit for Training and Hidden Code Changes
The performance signal could in principle come from three places: \(i\) the channel configuration; \(ii\) drift in the training protocol, evaluation metadata, or non\-channel architectural choices \(stride, downsampling, pooling, dropout, weight decay, Nesterov\); or \(iii\) the one\-epoch training stochasticity itself\. This section audits \(ii\) and shows that the channel signal in \(i\) survives the controls\.
The audit is summarized in Fig\.[8](https://arxiv.org/html/2607.20516#S7.F8)\.Panel Aplots the partial Spearmanρ\\rhobetween each of four channel features and one\-epoch accuracy under progressively stronger controls —*Raw*,*Size\+cycle*,*Full*\(size, cycle, depth, MACs, layer\-count features, stride, downsampling, pooling, evaluation settings, and hidden\-code flags\), and*\+train diag\.*\(full controls plus train loss and gradient norm\)\. The blue line for low\-resolution share starts atρ≈0\.48\\rho\\approx 0\.48under*Raw*and only drops toρ≈0\.17\\rho\\approx 0\.17under*\+train diag\.*; the other channel lines follow a similar pattern, so the signal does not collapse as controls tighten\.Panel Bcompares three feature sets for leave\-cycle\-out rank prediction: non\-channel*Controls*,*Controls \+ channel*, and*Channel only*\. The*Channel only*bar \(green\) is taller than the*Controls*bar \(gray\), and adding controls on top of channels does not improve further\.Panel Csplits the 462 strict candidates by accuracy into*deciles*\(10% groups,∼\\sim46 candidates each\) and compares the bottom\-decile mean \(gray\) to the top\-decile mean \(blue\) for two channel features \(*Low\-res*,*Mid/early*\) and three hidden\-code flags \(*Nest\.*= Nesterov,*WD*= weight decay,*Drop\.*= dropout\)\. The channel features differ sharply between top and bottom; the hidden\-code features do not\. The accuracy gap is in the channels, not in the training code\.
Under the controls described in Panel A, primary low\-resolution parameter share remains positively associated with one\-epoch accuracy \(ρ=0\.139\\rho=0\.139,p=0\.003p=0\.003\), and the middle\-over\-early channel\-allocation ratio remains similarly positive \(ρ=0\.170\\rho=0\.170,p=2\.5×10−4p=2\.5\\times 10^\{\-4\}\)\. Adding post\-training diagnostics such as train loss and gradient norm leaves the low\-resolution association positive \(ρ=0\.170\\rho=0\.170,p=3\.8×10−4p=3\.8\\times 10^\{\-4\}\); these diagnostics are partly a consequence of the architecture and serve as a sensitivity check rather than as primary controls\.
Figure 8:Confound audit for the channel\-configuration claims\.A: partial Spearmanρ\\rhoof four channel features under progressively stronger control sets\.B: leave\-cycle\-out rank prediction for non\-channel controls, controls plus channel features, and channel features only\.C: top vs\. bottom accuracy decile for two channel features and three hidden\-code flags\. Panel details are described in the text\.Table 3:Top strict CIFAR\-100 candidates\. Channel configurations are shown in run\-length form\.
## 8Execution Validity and Failure Modes
Failure modes are part of the generated\-code search process\. Among the 1348 code/error candidates, the most frequent categories are generic runtime errors \(426\), API signature mismatches \(370\), missing required functions \(192\), checksum duplicates \(185\), and shape mismatches \(121\); these labels are deterministic regex categories over error traces and are descriptive rather than a complete compiler taxonomy\. Scaled studies of LLM\-based NAS should preserve raw generated code, training logs, evaluation metadata, rejected error traces, and enough identifiers to reconstruct candidate lineage\. In this run, strict filtering removed non\-target dataset evaluations and1\.json\-only records that would otherwise distort the accuracy trajectory\.
## 9Reproducibility Statement
Every quantitative claim in this paper is regenerated from the raw experiment directory by a single self\-contained analysis script\. The script parses the candidate folders of cyclesA0–A8, applies the strict filtering rule of Sect\.[4](https://arxiv.org/html/2607.20516#S4)\(1\.jsonpluseval\_info\.jsonverification ofcifar\-100\), and rebuilds all tables, all figures, and the numeric macros injected into this document throughgenerated/rrpr\_numbers\.texandgenerated/confound\_numbers\.tex, without relying on any pre\-existing processed data frames\. The generation stack is fixed and stated in Sect\.[3](https://arxiv.org/html/2607.20516#S3): OlympicCoder\-7B\[[15](https://arxiv.org/html/2607.20516#bib.bib42)\]as the base code model; LoRA adapters with rank 32,α=32\\alpha=32, dropout0\.050\.05on the q, k, v projection modules; a fresh copy of the base model at the start of each cycle; and a fixed one\-epoch CIFAR\-100 proxy evaluation for every candidate\. Generated networks, evaluation metadata, and candidate lineage identifiers are stored in the LEMUR/NNGPT ecosystem\[[6](https://arxiv.org/html/2607.20516#bib.bib37),[17](https://arxiv.org/html/2607.20516#bib.bib38),[9](https://arxiv.org/html/2607.20516#bib.bib24)\]\. The preserved artifact comprises the raw candidate folders \(generatednew\_nn\.pyprograms, training logs, error traces,1\.jsonandeval\_info\.jsonrecords for all 2000 candidates, including failures and non\-target evaluations\), the analysis script, and the generated macro files, so that the complete accounting of Table[1](https://arxiv.org/html/2607.20516#S4.T1)— not only the successes — can be independently re\-derived\. The compute footprint of the strict evaluations is reported in Sect\.[3](https://arxiv.org/html/2607.20516#S3)\(approximately7\.47\.4GPU\-hours in total; median3535s per one\-epoch candidate; median peak GPU memory21\.521\.5GB\)\.
## 10Limitations and Future Work
Scope of the experiment\.The experiment is one execution of the closed loop with OlympicCoder\-7B, CIFAR\-100, and a one\-epoch proxy\. Other code LLMs may yield different channel priors, and other datasets or longer schedules may re\-rank candidates\. The confound audit controls for non\-channel code variation, but not for LLM identity, dataset identity, or training horizon\. The generated samples are also not i\.i\.d\., since later cycles depend on LoRA fine\-tuning from earlier cycles\.
Sampling\-budget considerations\.A0’s best \(0\.3144\) and A6’s best \(0\.3676\) differ by 0\.053 absolute accuracy\. With the observed A0 mean of 0\.212 and per\-cycle standard deviation of about 0\.030, the expected maximum of a 250\-sample distribution is roughly 0\.31, while the expected maximum of the 54\-sample A6 cycle is about 0\.27\. A second run with the same prompt, LLM, and protocol would produce a different frontier and would help separate a true accuracy shift from chance on a single realization\.
Partial signal from architecture features\.Resolution\-specific Spearman values \(0\.48–0\.52\) and the leave\-cycle\-out random\-forest model \(R2=0\.219R^\{2\}=0\.219, Spearmanρ=0\.592\\rho=0\.592\) capture an informative but partial signal: roughly three quarters of one\-epoch accuracy variance is not explained by the extracted features, consistent with one\-epoch training stochasticity and LLM sampling being substantial noise sources\. Width tokens are extracted from constructor arguments under atorch\.nn\-compatible stub, and tensor shapes and MACs are measured on a single dummy forward pass, so they approximate rather than replicate the trained network’s behavior\. No candidate was trained for more than one epoch, and a full\-training run on the top candidates would clarify whether one\-epoch rankings correlate with final rankings\.
Future work\.Future work should test whether one\-epoch rankings correlate with final rankings, and should perform controlled channel\-allocation interventions in which depth and parameter budget are held fixed while channels are moved from early to later stages or between power\-of\-two and non\-power\-of\-two middle widths\. The partialA8folder also indicates that robust experiment orchestration remains an open practical concern\.
## 11Conclusion
The scaled experiment shows that closed\-loop LLM channel search improves both accuracy and parameter efficiency with increased candidate budget\. From 2000 generated candidates in 8 complete cycles, 462 are strict CIFAR\-100 evaluations; the high\-performing frontier improves from 0\.3144 to 0\.3676, with A6/B102 reaching 0\.3400 at 5\.0M parameters and A0/B134 at 166\.5M\. The confound audit confirms that the main training protocol is effectively fixed for 461 of 462 strict evaluations\. For LLM\-driven NAS, scaled reporting should include the full generation ledger: successes, failures, target alignment, architecture statistics, confound audits, and sampling budget\.
Acknowledgments\.This work was partially supported by the Alexander von Humboldt Foundation\.
## References
- \[1\]M\. S\. Abdelfattah, A\. Mehrotra, Ł\. Dudziak, and N\. D\. Lane\(2021\)Zero\-cost proxies for lightweight NAS\.arXiv preprint arXiv:2101\.08134\.Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p3.1)\.
- \[2\]Z\. Cai, Y\. Tang, Y\. Lai, H\. Wang, Z\. Chen, and H\. Chen\(2025\)SEKI: self\-evolution and knowledge inspiration based neural architecture search via large language models\.arXiv preprint arXiv:2502\.20422\.Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p2.1)\.
- \[3\]E\. Chee and Z\. Wu\(2018\)Airnet: self\-supervised affine registration for 3d medical images using neural networks\.arXiv preprint arXiv:1810\.02583\.Cited by:[§3](https://arxiv.org/html/2607.20516#S3.p1.2)\.
- \[4\]A\. Chen, D\. M\. Dohan, and D\. R\. So\(2023\)EvoPrompting: language models for code\-level neural architecture search\.InAdvances in Neural Information Processing Systems,Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p2.1)\.
- \[5\]T\. Dettmers, A\. Pagnoni, A\. Holtzman, and L\. Zettlemoyer\(2023\)QLoRA: efficient finetuning of quantized LLMs\.InAdvances in Neural Information Processing Systems,Cited by:[§3](https://arxiv.org/html/2607.20516#S3.p1.2)\.
- \[6\]A\. T\. Goodarzi, R\. Kochnev, W\. Khalid, H\. T\. Goudarzi, F\. Qin, T\. A\. Uzun, Y\. S\. Dhameliya, Y\. K\. Kathiriya, Z\. A\. Bentyn, D\. Ignatov, and R\. Timofte\(2025\)LEMUR neural network dataset: towards seamless AutoML\.arXiv preprint arXiv:2504\.10552\.External Links:2504\.10552,[Link](https://arxiv.org/abs/2504.10552)Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p2.1),[§3](https://arxiv.org/html/2607.20516#S3.p1.2),[§9](https://arxiv.org/html/2607.20516#S9.p1.5)\.
- \[7\]Y\. He, J\. Lin, Z\. Liu, H\. Wang, L\. Li, and S\. Han\(2018\)AMC: AutoML for model compression and acceleration on mobile devices\.InProceedings of the European Conference on Computer Vision \(ECCV\),Cited by:[§1](https://arxiv.org/html/2607.20516#S1.p1.1),[§2](https://arxiv.org/html/2607.20516#S2.p1.1)\.
- \[8\]E\. J\. Hu, Y\. Shen, P\. Wallis, Z\. Allen\-Zhu, Y\. Li, S\. Wang, L\. Wang, and W\. Chen\(2021\)LoRA: low\-rank adaptation of large language models\.arXiv preprint arXiv:2106\.09685\.Cited by:[§3](https://arxiv.org/html/2607.20516#S3.p1.2)\.
- \[9\]R\. Kochnev, W\. Khalid, T\. A\. Uzun, X\. Zhang, Y\. S\. Dhameliya, F\. Qin, C\. Vysyaraju, R\. Duvvuri, A\. Goyal, D\. Ignatov, and R\. Timofte\(2026\-06\)NNGPT: rethinking AutoML with large language models\.InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition \(CVPR\) Workshops,pp\. 3262–3272\.External Links:2511\.20333,[Link](https://openaccess.thecvf.com/content/CVPR2026W/CVPR-NAS26/html/Kochnev_NNGPT_Rethinking_AutoML_with_Large_Language_Models_CVPRW_2026_paper.html)Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p2.1),[§3](https://arxiv.org/html/2607.20516#S3.p1.2),[§9](https://arxiv.org/html/2607.20516#S9.p1.5)\.
- \[10\]Z\. Li, Z\. Lin, and Y\. Wang\(2025\)CoLLM\-NAS: collaborative large language models for efficient knowledge\-guided neural architecture search\.arXiv preprint arXiv:2509\.26037\.Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p2.1)\.
- \[11\]H\. Liu, K\. Simonyan, and Y\. Yang\(2018\)DARTS: differentiable architecture search\.arXiv preprint arXiv:1806\.09055\.Cited by:[§1](https://arxiv.org/html/2607.20516#S1.p1.1),[§2](https://arxiv.org/html/2607.20516#S2.p1.1),[§2](https://arxiv.org/html/2607.20516#S2.p3.1)\.
- \[12\]Z\. Liu, H\. Mu, X\. Zhang, Z\. Guo, X\. Yang, K\. Cheng, and J\. Sun\(2019\)MetaPruning: meta learning for automatic neural network channel pruning\.InProceedings of the IEEE/CVF International Conference on Computer Vision,Cited by:[§1](https://arxiv.org/html/2607.20516#S1.p1.1),[§2](https://arxiv.org/html/2607.20516#S2.p1.1)\.
- \[13\]Z\. Liu, J\. Li, Z\. Shen, G\. Huang, S\. Yan, and C\. Zhang\(2017\)Learning efficient convolutional networks through network slimming\.InProceedings of the IEEE International Conference on Computer Vision,Cited by:[§1](https://arxiv.org/html/2607.20516#S1.p1.1),[§2](https://arxiv.org/html/2607.20516#S2.p1.1)\.
- \[14\]M\. U\. Nasir, S\. Earle, C\. W\. Cleghorn, S\. James, and J\. Togelius\(2023\)LLMatic: neural architecture search via large language models and quality diversity optimization\.arXiv preprint arXiv:2306\.01102\.Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p2.1)\.
- \[15\]G\. Penedo, A\. Lozhkov, H\. Kydlíček, L\. B\. Allal, E\. Beeching, A\. P\. Lajarín, Q\. Gallouédec, N\. Habib, L\. Tunstall, and L\. von Werra\(2025\)OlympicCoder\.Hugging Face\.Note:[https://huggingface\.co/open\-r1/OlympicCoder\-7B](https://huggingface.co/open-r1/OlympicCoder-7B)Cited by:[§3](https://arxiv.org/html/2607.20516#S3.p1.2),[§9](https://arxiv.org/html/2607.20516#S9.p1.5)\.
- \[16\]T\. A\. Uzun, D\. Ignatov, and R\. Timofte\(2026\)Closed\-loop LLM discovery of non\-standard channel priors in vision models\.InProceedings of the International Conference on Pattern Recognition \(ICPR\),Note:to appearExternal Links:2601\.08517,[Link](https://arxiv.org/abs/2601.08517)Cited by:[§1](https://arxiv.org/html/2607.20516#S1.p1.1),[§2](https://arxiv.org/html/2607.20516#S2.p2.1),[§3](https://arxiv.org/html/2607.20516#S3.p1.2),[Figure 2](https://arxiv.org/html/2607.20516#S5.F2)\.
- \[17\]T\. A\. Uzun, W\. Khalid, S\. U\. Din, S\. R\. Mulukuledu, A\. Singh, C\. Vysyaraju, R\. Duvvuri, A\. Goyal, Y\. R\. Lukhi, M\. A Hussain, K\. Jesani, U\. Shrestha, Y\. Mittal, R\. Kochnev, P\. Kadam, M\. Ikram, H\. Moradiya, A\. Arslanian, D\. Ignatov, and R\. Timofte\(2026\-06\)LEMUR 2: unlocking neural network diversity for AI\.InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition \(CVPR\) Workshops,pp\. 3291–3300\.External Links:[Link](https://openaccess.thecvf.com/content/CVPR2026W/CVPR-NAS26/html/Uzun_LEMUR_2_Unlocking_Neural_Network_Diversity_for_AI_CVPRW_2026_paper.html)Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p2.1),[§3](https://arxiv.org/html/2607.20516#S3.p1.2),[§9](https://arxiv.org/html/2607.20516#S9.p1.5)\.
- \[18\]C\. Yu, X\. Liu, Y\. Wang, Y\. Liu, W\. Feng, D\. Xiong, C\. Tang, and J\. Lv\(2023\)GPT\-NAS: evolutionary neural architecture search with the generative pre\-trained model\.arXiv preprint arXiv:2305\.05351\.Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p2.1)\.
- \[19\]J\. Yu and T\. S\. Huang\(2019\)AutoSlim: towards one\-shot architecture search for channel numbers\.arXiv preprint arXiv:1903\.11728\.Cited by:[§1](https://arxiv.org/html/2607.20516#S1.p1.1),[§2](https://arxiv.org/html/2607.20516#S2.p1.1)\.
- \[20\]K\. Yu, C\. Sciuto, M\. Jaggi, C\. Musat, and M\. Salzmann\(2019\)Evaluating the search phase of neural architecture search\.arXiv preprint arXiv:1902\.08142\.Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p3.1)\.
- \[21\]M\. Zheng, X\. Su, S\. You, F\. Wang, C\. Qian, C\. Xu, and S\. Albanie\(2023\)Can GPT\-4 perform neural architecture search?\.arXiv preprint arXiv:2304\.10970\.Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p2.1)\.
- \[22\]D\. Zhou, X\. Zhou, W\. Zhang, C\. C\. Loy, S\. Yi, X\. Zhang, and W\. Ouyang\(2020\)EcoNAS: finding proxies for economical neural architecture search\.arXiv preprint arXiv:2001\.01233\.Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p3.1)\.
- \[23\]X\. Zhou, X\. Wu, L\. Feng, Z\. Lu, and K\. C\. Tan\(2024\)Design principle transfer in neural architecture search via large language models\.arXiv preprint arXiv:2408\.11330\.Cited by:[§2](https://arxiv.org/html/2607.20516#S2.p2.1)\.
- \[24\]B\. Zoph and Q\. V\. Le\(2016\)Neural architecture search with reinforcement learning\.arXiv preprint arXiv:1611\.01578\.Cited by:[§1](https://arxiv.org/html/2607.20516#S1.p1.1),[§2](https://arxiv.org/html/2607.20516#S2.p1.1)\.Similar Articles
LLMs as Noisy Channels: A Shannon Perspective on Model Capacity and Scaling Laws
The paper proposes a Shannon Scaling Law that models LLM training as information transmission over a noisy channel, explaining non-monotonic performance phenomena like catastrophic overtraining and quantization-induced degradation, and demonstrating superior predictive accuracy over traditional scaling laws.
Scaling with Confidence: Calibrating Confidence of LLMs for Adaptive Test Time Scaling
The paper proposes C3RL, a reinforcement learning algorithm that calibrates LLM confidence while maintaining accuracy, and CAS, a confidence-based adaptive test-time scaling strategy that reduces inference costs by up to 12.33 times.
Predictable Scaling Laws of Optimal Hyperparameters for LLM Continued Pre-training
This paper discovers predictable scaling laws for optimal hyperparameters (learning rate, batch size) in LLM continued pre-training, proposing a two-stage framework that reduces hyperparameter search overhead by up to 90% while maintaining performance.
Trainable Smooth-Rotation Transforms with Learned Channel Scales for LLM Quantization
This paper proposes trainable smooth-rotation transforms with quantile-robust scaling and gradient-based optimization to improve post-training quantization of LLMs, achieving significant error reduction on LLaMA-3.2-1B under W4A4 quantization.
Continual LLM Upcycling: A Predictor-Gated Bank-Wise Sparsity Training Recipe for Dense-to-Sparse LLMs
This paper proposes a dense-to-sparse continual training method for LLMs, using a predictor-gated bank-wise sparsity to achieve 4x FFN sparsity, and demonstrates it on Qwen2.5-8B with long-context training.