Next Article in Journal
Landsat Imagery Built-Up Area Extraction Method with Use of Multiple Indexes and Tasseled Cap Transformation
Previous Article in Journal
Research on the Influence of Aerosol Optical Thickness Distribution on Apparent Brightness Contrast Under Vertical Non-Uniformity
Previous Article in Special Issue
GRCD-Net: Guided Global–Local Relational Learning for Few-Shot Fine-Grained and Remote Sensing Scene Classification
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Darwinian Wiring: A Connectome-Constrained Structural Plasticity Framework for Extreme Model Compression

1
College of Computer Science and Mathematics, Central South University of Forestry and Technology, Changsha 410004, China
2
Xiangjiang Laboratory, Changsha 410073, China
3
School of Information Science and Engineering, Lanzhou University, Lanzhou 730000, China
4
The Laboratory for Big Data and Decision, National University of Defense Technology (NUDT), Changsha 410004, China
5
Key Laboratory of Collaborative Intelligence Systems (Ministry of Education), School of Electronic Engineering, Xidian University, Xi’an 710071, China
6
School of Business, Jiangnan University, Wuxi 214122, China
*
Author to whom correspondence should be addressed.
These authors contributed equally to this work.
Remote Sens. 2026, 18(11), 1719; https://doi.org/10.3390/rs18111719
Submission received: 25 February 2026 / Revised: 7 April 2026 / Accepted: 8 April 2026 / Published: 27 May 2026

Highlights

What are the main findings?
  • We propose the Darwinian Wiring framework which redefines lightweight detection as a dynamic adaptation process where the coupling of structural stability in the CAB and functional plasticity in the FCR enables high precision with minimal resources.
  • We achieve breakthrough performance across multiple benchmarks: 79.57% mAP on DOTA v1.0 (82.35% under multi-scale settings), 98.62% mAP on HRSC2016, and 69.68% mAP on DIOR R, all while utilizing only 28.3 M parameters.
What is the implication of the main finding?
  • The CONERSLite framework provides a scalable, energy-efficient solution for oriented object detection on edge platforms by breaking the structural complexity and perceptual accuracy trade-off via instance-specific resource allocation.

Abstract

The deployment of lightweight object detectors on remote sensing edge platforms is severely constrained by the rigid trade-off between perception capacity and metabolic expenditure. To solve this fundamental challenge, we draw inspiration from the superior energy efficiency of the mammalian brain and the principles of connectomics to introduce CONERSLite. By emulating the dual mode synergy of biological neural systems, CONERSLite integrates a Compact Anatomical Backbone (CAB) representing the stable anatomical connectome and a Functional Connectome Router (FCR) that mimics the plasticity of the functional connectome. Our framework achieves a peak mAP of 82.35% on the DOTA-v1.0 dataset with only 28.3 M parameters and 195 G FLOPs, effectively establishing a new accuracy–efficiency Pareto frontier for remote sensing. On the HRSC2016 dataset, it reaches a state-of-the-art mAP of 98.62% while reducing the total parameter count by approximately 45% compared to high-precision optimized models like RTMDet. These results demonstrate that the application of connectomics principles provides a biologically grounded and highly efficient solution for resource-constrained remote sensing object detection.

1. Introduction

Object detection in remote sensing imagery has become a vital component of modern earth observation which provides critical insights for applications such as environmental monitoring and urban planning. The deployment of high-resolution sensors on satellites and unmanned aerial vehicles has shifted the demand for processing pipelines from centralized ground stations to edge hardware. This transition toward onboard real-time inference is essential for reducing data transmission latency and optimizing bandwidth. However the deployment of sophisticated deep learning models on remote platforms remains a difficult task due to the intrinsic characteristics of remote sensing data and the severe power management limitations of edge devices.
The development of high-performance yet hardware-compatible detectors is currently obstructed by two fundamental challenges.
  • Lightweighting of remote sensing target detection: Remote sensing images often contain expansive and featureless backgrounds like open sea or deserts where critical targets occupy a negligible fraction of the total area. Traditional detectors operate with a fixed computational budget and process every spatial region with identical intensity regardless of the information density. This results in massive metabolic redundancy where the system expends nearly all its energy on non-informative voids rather than focusing on vital targets.
  • The improvement of detection accuracy specifically within lightweight models: Remote sensing targets exhibit extreme variations in scale as well as arbitrary rotational orientations and are often located in high-clutter environments. While heavy architectures can achieve high precision through deep feature hierarchies, they are incompatible with the strict size and power envelopes of edge platforms. The conflict between the need for high-fidelity representation and the imperative for physical lightweighting stands as a central obstacle.
In response to these challenges, the academic community has developed various lightweight designs. Researchers introduced architectures such as the MobileNet and ShuffleNet series [1,2]. MobileNet employs depthwise separable convolutions to reduce the total number of operations. This structure separates spatial filters from channel mixing into two simple steps. ShuffleNet uses pointwise group convolutions to limit the connections between feature channels. This design also includes channel shuffling to maintain information flow across groups. Both architectures effectively decrease the physical size and complexity of the model.
However, these models rely on a fixed computational logic during inference. The operations in MobileNet and ShuffleNet apply to every spatial region in a uniform manner. This static approach prevents the model from reducing its effort in simple background areas. Such architectures always execute the same sequence of calculations regardless of the scene difficulty. This rigidity limits the potential for energy savings in remote sensing applications. Recent designs also consider geometric alignment for rotated targets. But these models still follow a constant computational schedule for every image. Quantitatively, on the DOTA-v1.0 benchmark, representative lightweight backbones such as MobileNetV3 and ShuffleNetV2, when paired with Oriented RCNN, typically achieve mAP values in the range of 68–72% with 20–25 M parameters and 150–180 G FLOPs. While these models are significantly smaller than heavy architectures like ResNet-101-based detectors (41–55 M parameters, 200–340 G FLOPs, 74–76% mAP), their static computational allocation leads to substantial resource waste in remote sensing imagery where informative target regions often occupy less than 5% of the total image area. This efficiency gap motivates our dynamic resource allocation paradigm.
To overcome these obstacles, we seek a paradigm shift by looking to the mammalian brain, as nature is the most optimized computational engine. Neuroscience research on the theory of neuronal group selection suggests that the superior energy efficiency of the brain is derived from a selection-based adaptation mechanism. Specifically the brain manages its energy budget through the synergy of a dual mode system consisting of the anatomical connectome and the functional connectome. The anatomical connectome acts as a stable substrate designed for structural parsimony, while the functional connectome exhibits profound plasticity. It enables the brain to rapidly reconfigure its neural pathways in milliseconds forming temporary coalitions of neural assemblies that are precisely tailored to the immediate task. Under this selective framework, high-cost computational resources are only mobilized when the stimulus complexity exceeds a threshold which effectively matches metabolic expenditure to informational demand.
Drawing upon these connectomics principles, we develop the Darwinian Wiring framework that transforms model compression from a static pruning exercise into a dynamic adaptation process. We implement this paradigm in the CONERSLite architecture through two synergistically coupled modules. The Compact Anatomical Backbone emulates the phylogenetic substrate of the brain to provide a minimalist structural foundation. It delivers the essential multi-scale feature representations required for oriented detection while maintaining a negligible baseline metabolic footprint. The Functional Connectome Router introduces ontogenetic plasticity as a real-time arbiter that emulates somatic selection. It oversees a competition among parallel neural pathways and recruits a comprehensive coalition of specialized neural experts only when informational peaks are detected.
As illustrated in Figure 1, we provide a quantitative comparison between CONERSLite and several representative state-of-the-art models in terms of mean Average Precision (mAP) and computational complexity (FLOPs). While traditional detectors often occupy the high-precision high-cost or low-cost low-precision regions of the landscape, our model establishes a new Pareto frontier. Specifically, CONERSLite achieves a peak mAP of 79.57% while maintaining a minimalist computational footprint of 195 GFLOPs. This performance significantly surpasses both established heavy architectures and optimized lightweight baselines. This efficiency proves that our Darwinian Wiring framework allows the system to extract high-fidelity geometric features without the overhead associated with static dense connectivity. By locating itself in the upper left corner of the efficiency map, CONERSLite demonstrates its superior suitability for deployment on resource-constrained remote sensing platforms where energy economy and detection reliability must be maximized simultaneously.
Our contributions are summarized below.
  • We redefine lightweight remote sensing detection as a dynamic adaptation process grounded in neural Darwinism where the model achieves extreme efficiency by allocating computational resources only where high informational density exists.
  • We introduce the CONERSLite framework which achieves a superior accuracy–efficiency trade-off through its dual stage selection mechanism comprising structural manifold filtering in the backbone and functional expert routing in the neck.
  • We provide empirical evidence that CONERSLite establishes a new performance benchmark by achieving a peak mAP of 82.35% on the DOTA dataset with only 28.3 M parameters which represents a significant reduction in model complexity compared to current state-of-the-art oriented detectors.
This work belongs to the exploratory application of dynamic neural networks in the field of remote sensing detection and forms a complementary rather than alternative relationship with static lightweight models.

2. Related Work

2.1. Lightweight Object Detection

Lightweight models such as MobileNet [1], ShuffleNet [2] and GhostNet [3] reduce computational cost through depthwise separable convolutions, group convolutions with channel shuffling and inexpensive linear transformations respectively. These static designs apply uniform computation to all input regions regardless of scene complexity, which wastes resources on background-dominated remote sensing imagery. Dynamic neural networks [4] address this through early exit [5], conditional computation [6] and dynamic channel pruning [7] to adaptively adjust inference paths per input.
In remote sensing detection, LO-Det [8] separates orientation sensitive components for oriented targets, SEMA-YOLO and MSF-SNET [9] enhance semantic features and multi-scale fusion, and Zhan et al. [10] and Zhong et al. [11] introduce binary pixel difference operators and adaptive deformation learning respectively. Strip R-CNN [12] aggregates context via large strip convolutions, SM3Det [13] employs a unified multimodal architecture, and LayerLink [14] bridges detectors with large vision models through efficient fine tuning. EfficientDet [15] jointly optimizes model dimensions using weighted bidirectional feature pyramids, while ghost convolution hierarchical graphs address dense objects [16] and RTMPose [17] demonstrates extreme architectural streamlining for mobile deployment. Bio-inspired methods such as BRSTD [18], SCM-YOLO [19,20] and ECDet [21] introduce center surround inhibition, spatial reweighting and reparameterized transformers for small target detection. Liu et al. [22,23] further propose geometric aware and weather adaptive detectors for UAV-based road scenes. These designs reduce the network footprint but follow constant computational schedules regardless of local informational density.
Dynamic approaches such as Dynamic DETR [24] utilize dynamic attention for rapid convergence, while dynamic zoom in networks [25] selectively processes high-reward regions via reinforcement learning. Neural Architecture Search further automates design optimization through strategies like NAS-FCOS [26] and structural to modular NAS [27], which dominate manually designed networks in efficiency. CONERSLite introduces a competitive mechanism among parallel neural pathways through the principles of neuronal group selection. It evaluates the perceptual gain of different neural assemblies and recruits expert coalitions only when the input complexity is high. This dual mode framework ensures high functional capacity for important objects while keeping the baseline metabolic cost low.

2.2. Brain-Inspired and Connectomics-Inspired Methods in Object Detection

Drawing inspiration from the biological visual system has become a fruitful technical route for achieving high efficiency and robustness in deep learning [28]. Early research primarily focused on the functional mimicry of specialized brain mechanisms such as attention and context-sensitive perception. For instance, designs like the Squeeze-and-Excitation [29] block and the Convolutional Block Attention Module [30] enable networks to dynamically focus on key information by reweighting feature channels or spatial locations. Similarly, the Non-Maximum Suppression [31] algorithm operates on a principle highly analogous to the lateral inhibition phenomenon where active neurons suppress their neighbors to sharpen spatial perception. However, the metabolism–accuracy conflict in remote sensing demands a deeper integration of biological principles, leading to research trajectories focusing on sparse pulse communication, recursive foveal processing, and structural connectomics.
Event-based pulse computation simulates the energy-efficient communication of biological neurons through discrete spikes. Representative methods such as Spiking YOLO [32] and EMS-YOLO [33] convert or train detection models using integrate-and-fire neuron models, achieving extreme power efficiency through sparse, event-driven processing. However, these SNN-based approaches still face challenges in training stability and precision gaps compared to dense ANNs, particularly for the fine-grained geometric alignment required in oriented object detection.
Connectomics-inspired methods shift the focus from functional mimicry to the engineering of structural connectivity patterns observed in biological brains. BioNIC [34] and Deep Connectomics Networks [35] leverage principles from mammalian connectomes to design more efficient neural architectures that balance local processing with long-range integration. Similarly, CORnet-S [36] explicitly mimics the recurrent processing and hierarchical structure of the primate ventral stream to achieve more robust object recognition. For complex object detection tasks, the Structure Inference Net (SIN) [37] incorporates scene-level context and instance relationships to resolve spatial ambiguities, mimicking the top–down relational reasoning of the human brain. In the hyperspectral domain, DGPF-RENet [38] demonstrates that low-data-dependence architectures with reduced training iterations can achieve competitive classification accuracy, highlighting the potential of efficient structural design beyond object detection.
Attentional focus and selective foveation draw inspiration from the human ability to prioritize relevant visual stimuli through narrow-field glimpses. The OCRA network combines recurrent glimpse-based attention with object-centric representation learning to perform multi-object reasoning [39]. Li et al. [40] propose a sorted texture-aware glance-and-gaze network that mimics the coarse-to-fine visual perception process for hyperspectral image classification under limited training samples, demonstrating the effectiveness of biologically inspired attentional hierarchies. In the domain of remote sensing, BRSTD leverages biological principles such as center-surround inhibition and contrast sensitivity functions to enhance tiny target detection in high-clutter backgrounds [18]. Beyond isolated functions, macroscopic brain-inspired architectures map collective neural dynamics onto specialized hardware combined with dynamics-aware quantization to achieve multi fold acceleration [41] and broader biological computing feasibility [42]. For medical scenarios, lightweight frameworks introduce neural plasticity and rhythm-regulated sampling to maintain robustness under severe constraints [43]. While effective, these mechanisms primarily adjust feature weights without modifying the underlying structural connectivity. In contrast, CONERSLite introduces a dynamic selection mechanism inspired by the competition of neural assemblies, allowing for real-time reconfiguration of the functional connectome to achieve optimal resource allocation.
Relevant work summaries are presented in Table 1.

3. Methodology

We reconceptualize the inference process of CONERSLite not merely as a static feed-forward computation but as a dynamic, continuous-time biological adaptation process. Grounded in Edelman’s Theory of Neuronal Group Selection (TNGS)—which posits that functional circuitry arises from competitive selection rather than fixed instruction—we model the network state evolution as the synergistic interplay between two distinct evolutionary forces. First, Phylogenetic Constraints, embodied by the Compact Anatomical Backbone (CAB), provide a stable, genetically conserved structural foundation optimized for metabolic efficiency. Second, Ontogenetic Selection, facilitated by the Functional Connectome Router (FCR), introduces somatic plasticity, acting as a real-time arbiter that dynamically recruits neural assemblies in response to immediate environmental complexity.
To mathematically instantiate this biological paradigm into a computable deep learning topology, we instantiate the abstract concept of somatic functional groups into concrete computational units termed neural assemblies. In our framework, a neural assembly A i ( i = 1 , , N a s m ) is a self-contained expert sub-network that operates as an independent feature processing unit within the FCR. Concretely, each assembly consists of a depthwise separable convolutional block (DWConv 3 × 3 → BatchNorm → SiLU) for spatial feature extraction, followed by a pointwise convolution (Conv 1 × 1 ) for channel mixing. All assemblies share the same input feature map x R C × H × W and produce output feature maps of identical dimensions y i R C × H × W , but each learns distinct convolutional kernels, thereby specializing in different feature patterns (e.g., edge orientations, texture frequencies, or scale ranges). The final output of the FCR is calculated via the context-aware weighted aggregation of all assemblies
y = i = 1 N a s m g i * · y i
where g i * denotes the dynamic Boltzmann selection weights. This architecture ensures that each assembly functions as a specialized “neural expert”, while the competitive selection mechanism determines which experts are actively recruited for a given input instance.
Table 2 provides an explicit mapping between the biological principles that motivate our design and their corresponding engineering implementations.
Figure 2 presents the overall CONERSLite architecture and shows how CAB and FCR cooperate within the oriented detection pipeline.
To provide an intuitive overview of the inference logic, we present the pseudocode for the complete CONERSLite forward pass in Table 3.

3.1. Fitness Landscape and Selection Pressure

We redefine the perceptual gain U i by shifting from a simple energy metric to an information gain perspective. Unlike global measures, we define it as the information gain acquired through neural assembly activation, representing the reduction in uncertainty for target relevant features. Theoretically, this is quantified by the Kullback–Leibler (KL) divergence between target and background distributions:
U i ( x ) = E p t a r g e t log f i ( x ) t a r g e t f i ( x ) b a c k g r o u n d
where f i ( x ) is the output feature map and p t a r g e t is the estimated distribution of target regions. In our implementation, we employ a differentiable approximation using a spatial weight mask M :
U i ( x ) = M f i ( x ) 2 2 f i ( x ) 2 2 + ϵ
where M highlights potential target regions and ϵ is a small positive constant ( 10 6 ) to prevent division by zero. This formulation captures the selective amplification and Signal to Noise Ratio (SNR) enhancement observed in biological visual systems.
Figure 3 illustrates the internal structure of FCR and the sparse activation process used to recruit neural assemblies according to target complexity.
The instantaneous fitness Φ i ( x , Ω ) is defined as the trade-off between the perceptual gain and the dynamic metabolic cost C i ( x ) . Unlike static parameter counts, we define C i as the actual computational resources consumed by the assembly, controlled by a learnable binary gate g i { 0 , 1 } :
C i ( x ) = g i · FLOPs i max FLOPs + β · KL ( g i ρ )
where g i = GumbelSoftmax ( ϕ i ( x ) ) implements differentiable sampling, ϕ i ( x ) denotes the logit score produced by the fitness evaluation MLP for the i-th assembly, FLOPs i is the floating-point operation count of assembly i, β is a weighting coefficient (set to 0.01) for the sparsity regularization term, and ρ is the target activation probability (set to 0.5). The first term represents the normalized computational overhead when the assembly is activated, while the second term encourages parsimony via KL divergence. Biologically, this simulates the metabolic cost of action potential generation and synaptic transmission, where g i represents the firing decision and the KL penalty reflects energy constraints.
The final fitness value Φ i ( x ) integrates these terms to determine the activation probability of each assembly:
Φ i ( x ) = U i ( x ) λ · C i ( x )
where λ is a hyperparameter that balances the perceptual rewards against metabolic expenditures. To quantify the overall sparsity of the functional connectome, we define the mean activation sparsity S ( G ) (dimensionless) as the expected number of activated neural assemblies per input instance:
S ( G ) = E x i = 1 N a s m g i ( x )
where g i ( x ) { 0 , 1 } is the binary selection state. This metric provides a normalized measure of the system’s metabolic load, with S ( G ) = 1 representing minimal single-assembly activation and S ( G ) = N a s m representing full assembly recruitment.
The temporal evolution of the activation levels is governed by the selection pressure which drives the system toward an optimal state. We model the change in the activation distribution g i ( t ) using the continuous time replicator equation. This equation describes how the activation of each assembly grows or shrinks based on its relative fitness compared to the population average:
g i ( t ) t = g i ( t ) Φ i ( x ) Φ ¯ ( x , g ( t ) )
This equation provides a mathematical abstraction of group selection within biological evolution, where the proportion of each assembly g i ( t ) grows at a rate proportional to its relative fitness advantage over the population average.
In this setup, the variable Φ ¯ ( x , g ( t ) ) = j = 1 N a s m g j ( t ) Φ j ( x , Ω ) represents the mean fitness of the entire population. According to the dynamics defined in the replicator equation, the average fitness of the neural assemblies is always non-decreasing over time. This property satisfies the fundamental theorem of natural selection which guarantees that the system will move toward higher representational utility.
Proof. 
The continuous improvement of the system can be verified by differentiating the mean fitness Φ ¯ with respect to time. The derivation shows that the rate of change is equal to the variance of the fitness within the population.
d Φ ¯ d t = i = 1 N a s m g i t Φ i = i = 1 N a s m g i ( Φ i Φ ¯ ) Φ i = i = 1 N a s m g i Φ i 2 Φ ¯ i = 1 N a s m g i Φ i = E g [ Φ 2 ] ( E g [ Φ ] ) 2 = Var g ( Φ ) 0
This implies that the Functional Connectome Router naturally evolves toward a state of higher efficiency. The speed of this adaptation is directly proportional to the diversity of the experts in the pool. □
To find the stable equilibrium state, we reformulate the selection as an exploration exploitation trade-off. The system objective is to find a distribution g that maximizes expected fitness while preserving sufficient diversity (entropy) to handle environmental uncertainty. This is equivalent to minimizing the free energy F of the system under temperature τ :
min g Δ F ( g ) = min g Δ E g [ Φ ( x ) ] τ H ( g )
In this equation, the term H ( g ) = g i ln g i represents the informational entropy. We solve this constrained optimization problem by using the method of Lagrange multipliers to incorporate the requirement that the probabilities must sum to one. The Lagrangian L for this system is expressed below:
L ( g , γ ) = i = 1 N a s m g i Φ i τ i = 1 N a s m g i ln g i + γ i = 1 N a s m g i 1
By taking the derivative of the Lagrangian with respect to each activation level and setting the result to zero, we can identify the optimal distribution:
L g i = Φ i + τ ( ln g i + 1 ) + γ = 0
ln g i = Φ i γ τ 1 g i * = exp Φ i / τ Z , Z = j exp Φ j / τ
This derivation proves that the routing logic is the natural equilibrium state of an entropic selection process. Here, the temperature τ controls the sharpness of selection: as τ 0 , the system approaches a winner-take-all exploitation state, while as τ , it converges to a uniform distribution for maximum exploration.
Scope and Interpretation of Biological Analogies. The concepts of fitness, replicator dynamics, and neuronal group selection in this work serve as principled design heuristics for dynamic resource allocation, rather than exact reproductions of biological processes. The fitness function Φ i (Equation (5)) is an engineering approximation whose hyperparameter λ is determined empirically, and the replicator dynamics (Equation (7)) motivate the architecture design theoretically, while the actual training relies on standard backpropagation with discrete forward passes. Nevertheless, these biological principles provide valuable inductive biases: competition-based routing encourages assembly specialization, and metabolic cost penalties promote computational parsimony, both empirically validated in our ablation studies (Section 4.3).

3.2. Phylogenetic Constraints: Constrained Manifold Flow in CAB

While the Functional Connectome Router handles the dynamic selection of pathways, the Compact Anatomical Backbone enforces the necessary phylogenetic constraints that ensure structural efficiency. We model the process of feature extraction as the evolution of a feature state h ( l ) R C (where C is the channel dimension) governed by a continuous flow field. This dynamics can be described as a neural ordinary differential equation that evolves on a Riemannian manifold M . The critical innovation in our framework is that this flow is strictly subject to a sparsity projection operator P K . This operator represents the hard limits on the connectivity of the network, which ensures that the information processing remains metabolically cheap:
d h ( l ) d l = P K f θ ( h ( l ) , l )
where f θ denotes the parameterized transformation function (i.e., the convolutional block with learnable parameters θ ) and l indexes the network depth.
The operator P K works by projecting the high-dimensional gradient flow onto a low-rank manifold K ρ , defined as K ρ = { W rank ( W ) ρ · C } , where ρ ( 0 , 1 ] is the structural compression factor, and C is the input channel dimension. Mathematically, we can understand this projection by considering the singular value decomposition of the weight matrix W ( l ) as U Σ V . The projection operator retains only the top k = ρ C singular values, which forces the information flow to pass through a narrow channel:
P K ( W ) = j = 1 ρ C σ j u j v j
where σ j denotes the j-th singular value in descending order, and u j , v j are the corresponding left and right singular vectors, respectively.
This operator P K provides a mathematical representation of the physical constraints within the biological brain, such as axonal diameter limitations and the degree of myelination. These biophysical factors create an information bottleneck that forces neural signals to traverse low-dimensional manifolds, thereby achieving structural parsimony and extreme metabolic efficiency.
Figure 4 shows the CAB design and the low-rank bottleneck that preserves essential spatial filtering under structural compression.

Discrete Approximation and Residual Learning

Residual bottleneck blocks are classic structures widely used in deep learning. This work does not claim to have invented this structure but instead provides a new theoretical explanation from the perspective of connectomics. We model feature extraction as a continuous evolution process on a low-rank manifold where the discrete approximation naturally leads to the residual bottleneck form. This perspective reveals the principle of rank constraint behind the bottleneck. It is essentially the optimal numerical implementation for dimension compression of information flow which mirrors the information bottleneck caused by axonal volume limitations in the biological nervous system:
h k + 1 = h k + W u p · σ W d o w n · h k
where W d o w n R C × r and W u p R r × C are the down-projection and up-projection weight matrices with bottleneck dimension r = ρ · C C , and σ ( · ) denotes the nonlinear activation function (SiLU in our implementation).
The significance of this theoretical framework is three fold. First, it provides a biologically inspired rational explanation for the effectiveness of existing structures. Second, it inspires us to further explore learnable rank selection mechanisms. Third, it establishes an explicit link between structural design and resource constraints, which provides new ideas for the rational design of lightweight backbones in the future.

4. Experiments

4.1. Datasets

We evaluate our method on three challenging oriented object detection benchmarks. DOTA v1.0 comprises 2806 high-resolution images (up to 4000 × 4000 ) and 188,282 instances across 15 categories, serving as a primary benchmark for multi-scale detection. HRSC2016 is a dedicated ship detection dataset containing 1061 images and 2976 instances, distinct for its elongated targets with extreme aspect ratios. DIOR-R extends the DIOR dataset with oriented annotations, featuring 23,463 images and approximately 190k instances across 20 categories.

4.2. Experimental Settings

For the oriented object detection task on the DOTA-v1.0 dataset, all our experiments were conducted on a platform equipped with four RTX 4090 GPUs. During the training process, we set the batch size to 8 and an initial learning rate to 5.0 × 10−5, and trained the model for 12 epochs. To ensure a rigorous and fair comparison, all baseline results are cited directly from their original publications or official reports, and the evaluation protocols (specifically the VOC 12 metric) were maintained consistently across all models. For methods such as LSKNet and PKINet that primarily report backbone level performance, we integrated their official code with the default detection head (Oriented RCNN) and re-evaluated them under identical training settings to obtain full detector metrics. All comparisons were performed on a unified hardware platform using the same evaluation protocol to ensure baseline consistency. CONERSLite achieves a state-of-the-art 98.62% mAP through strictly validated experimental procedures. Following the standard evaluation protocol established by the DOTA benchmark, all results are reported using the VOC 2012 metric (mAP at IoU = 0.5), which is the universally adopted metric in the oriented object detection community and ensures direct comparability with prior work. To ensure a fair comparison with other mainstream methods, we adopted their standard data preprocessing protocols and utilized a single-scale strategy for both the training and testing phases. Terminology Note. To avoid ambiguity, we clarify the use of “baseline” in this paper. MTP [44] serves as the base detector for the ablation study (Section 4.3). All ablation variants are constructed by incrementally adding proposed modules onto MTP: “MTP + CAB” denotes MTP augmented with the Compact Anatomical Backbone; “MTP + FCR” denotes MTP augmented with the Functional Connectome Router; and “CONERSLite (Full)” denotes MTP augmented with both CAB and FCR. This additive design allows us to isolate the contribution of each module independently. All FPS measurements are obtained on a single RTX 4090 GPU with a batch size of 1 and input resolution of 1024 × 1024 , averaged over 1000 iterations after a 200-iteration warm-up.

4.3. Main Results

Table 4 and Figure 5 present a quantitative comparison on the DOTA-v1.0 dataset, where CONERSLite achieves a state-of-the-art mAP of 79.57% under the single-scale setting. This performance notably surpasses the best competing lightweight models including PKINet-S (+1.18%) and LSKNet-S (+2.08%), while maintaining extreme parameter efficiency (28.3 M params, 195 G FLOPs). This advantage stems from our Darwinian Wiring scheme: the Compact Anatomical Backbone (CAB) preserves critical geometric connectivity for structured categories like Bridges and Harbors, while the Functional Connectome Router (FCR) dynamically suppresses background interference in complex scenes such as Roundabouts and Soccer Fields through instance-specific sparse routing. CONERSLite still underperforms on several categories, notably Bridge (BR, 64.40%), Helicopter (HC, 64.90%), Soccer Ball Field (SBF, 69.10%), and Roundabout (RA, 73.90%). Bridge targets have extreme aspect ratios (often exceeding 1:20), and the low-rank bottleneck in the CAB compresses channel representations to r = ρ · C dimensions, which struggles to preserve the fine-grained linear structural continuity required for such slender targets. Helicopters are extremely small in DOTA imagery (often fewer than 15 × 15 pixels), and the rank-constrained manifold projection aggressively compresses already sparse feature representations below the discriminability threshold. Soccer Ball Fields have large regular geometry that is well captured by the CAB, but their visual similarity to other field-type categories (Ground Track Field, Basketball Court) causes the FCR to distribute weights across multiple assemblies rather than concentrating on a single expert, reducing classification confidence. Roundabouts exhibit near-circular geometry with complex internal structure, and the 3 × 3 DWConv kernels in the CAB have limited capacity to model curved boundaries, creating a geometric representation gap. These results reveal a trade-off in the CONERSLite design: the efficiency gained through rank-constrained projection and sparse expert selection comes at the cost of reduced representational capacity for targets with extreme geometries or very small spatial extent. Nonetheless, CONERSLite establishes a superior trade-off between perception and efficiency for resource-constrained remote sensing platforms.
To provide a direct comparison with existing lightweight detectors as well as a standard evaluation, Table 5 reports the parameter count, FLOPs, and mAP@0.5 on DOTA-v1.0 for CONERSLite alongside representative lightweight baselines including EfficientDet-D0 [15], YOLOv8n-obb and RTMDet-R-tiny [71]. EfficientDet-D0 is a horizontal detector with 3.9 M parameters and 2.5 G FLOPs that achieves 33.8 AP on COCO; however, it lacks native oriented bounding box support and therefore cannot be directly evaluated on the DOTA OBB task without substantial architectural modification. YOLOv8n-obb (3.11 M params, 23.3 G FLOPs) achieves 78.0% mAP@0.5 on DOTA-v1.0 under multi-scale evaluation. RTMDet-R-tiny (4.88 M params, 20.45 G FLOPs) achieves 75.36% mAP@0.5 under single-scale and 79.82% under multi-scale settings. CONERSLite achieves 79.57% mAP@0.5 under single-scale with 28.3 M parameters and 195 G FLOPs. While CONERSLite has a higher parameter count, its accuracy substantially surpasses these lightweight baselines (+4.21% over RTMDet-R-tiny SS, +1.57% over YOLOv8n-obb MS). This demonstrates that the Darwinian Wiring paradigm provides a superior accuracy–efficiency trade-off for oriented remote sensing detection compared to directly scaling down general-purpose detectors.
Table 6 summarizes the quantitative performance on the ship centric HRSC2016 dataset. On this benchmark, CONERSLite achieves a state-of-the-art mAP of 98.62% (VOC 12). It is worth noting that while recent SOTA models have gradually approached the performance ceiling of this dataset, for instance, ReDet reports 97.63% and Oriented RCNN reports 97.80%, our method further optimizes feature selection and resource allocation to achieve a consistent improvement of approximately 1.0%. This result is in the same order of magnitude as current leading models, further validating the effectiveness of our framework. These results surpass established high-precision models such as ReDet and RTMDet while utilizing significantly fewer resources. Specifically, compared to RTMDet, our framework reduces the total parameter count by approximately 45%, which is a substantial leap in structural efficiency.
The superior accuracy on ship targets is directly attributed to the coupling of phylogenetic stability and functional plasticity. Ships in remote sensing imagery are characterized by extreme aspect ratios and precise geometric symmetries that are difficult to capture with generic lightweight filters. The Compact Anatomical Backbone solves this by enforcing constrained manifold flow that preserves the structural integrity of elongated targets during the feature extraction process. By selecting stable anatomical anchors optimized for oriented structures, the CAB provides a consistent geometric foundation for ship detection.
Complementing this structural foundation, the Functional Connectome Router enables dynamic somatic selection to handle the diverse orientations and scales of different vessels. In scenarios with complex harbor backgrounds or overlapping ship clusters, the FCR evaluates the utility of specialized neural experts in real time. It recruits a comprehensive coalition of assemblies to resolve fine-grained features only when the local information density requires it. This dynamic adaptation ensures that the model maintains high representational capacity for slender targets without incurring the metabolic cost of a dense heavyweight architecture. These findings demonstrate that Darwinian Wiring provides a robust solution for oriented detection on resource-constrained maritime monitoring platforms.
Table 7 summarizes the comparative results on the DIOR-R dataset which is characterized by high category diversity and complex background variations. CONERSLite achieves a state-of-the-art mAP of 69.68% which outperforms the strong PKINet-S baseline by a significant margin of 2.65%. This performance advantage is achieved while maintaining the lowest parameter count of 28.3 M among all competing models. It is noteworthy that CONERSLite FLOPs (195 G) is slightly higher than LSKNet S (161 G), but its parameter count is lower (28.3 M vs. 31.0 M). This phenomenon originates from the dynamic routing mechanism introduced by the FCR module: the routing network itself adds a secondary computational overhead, yet through sparse activation, the actual parameters involved in the active computation path are fewer than in static networks. Therefore, the moderate increase in FLOPs is an efficient trade-off for higher precision (69.68% vs. 65.90%), demonstrating the superior efficiency of dynamic resource allocation. The superior generalization of our framework across twenty different remote sensing categories demonstrates the effectiveness of the Darwinian Wiring mechanism.
In scenes with high intra class variability, the Compact Anatomical Backbone provides a stable structural manifold that captures the essential geometric properties of varied objects from airports to bridges. Unlike standard backbones that might overfit to specific textures, the CAB uses connectome constrained flow to prioritize stable anatomical features. Simultaneously, the Functional Connectome Router addresses the high entropy backgrounds prevalent in DIOR-R. In areas with significant background noise or distractors that resemble targets, the FCR dynamically evaluates the perceptual utility of neural experts. By suppressing irrelevant pathways and recruiting specialized assemblies only when target signals are detected, the system effectively increases its signal-to-noise ratio. This dynamic resource allocation is particularly effective for the diverse object scales found in DIOR-R. These findings confirm that the coupling of phylogenetic structural constraints and ontogenetic functional plasticity allows the model to maintain high representational capacity across diverse environmental conditions with minimal computational overhead.

4.4. Ablation Study

Core Component (CAB and FCR) Ablation Analysis: As demonstrated in Table 8 and Figure 6, the integration of the Compact Anatomical Backbone (CAB) and the Functional Connectome Router (FCR) is vital for the performance of CONERSLite. The full model achieves a mAP of 79.57% which represents a substantial improvement over all baseline configurations. When the FCR is removed, the mAP drops to 75.12% despite the presence of the CAB. This reduction occurs because the system loses its capacity for dynamic somatic selection and cannot reconfigure its functional connectome to match the input complexity. Specifically, in scenes with high informational density, a static CAB cannot recruit the necessary neural assemblies to enhance detection precision.
Similarly, replacing the CAB with a generic MobileNetV3 backbone while retaining the FCR leads to a decrease in mAP to 74.86%. This decline proves that the FCR requires a structured manifold with stable anatomical anchors to function effectively. A standard lightweight backbone lacks the geometric alignment properties needed for oriented remote sensing targets which prevents the FCR from selecting the optimal neural pathways. The worst performance of 71.39% mAP is observed when both modules are removed which reflects the limitations of traditional static lightweight architectures in handling the complexities of remote sensing imagery. These results confirm that the synergistic coupling of anatomical stability and functional plasticity is the primary source of the efficiency of the framework.
Multi-Scale Training Ablation Analysis: As demonstrated in Table 9, the full CONERSLite model achieves a peak overall mAP of 82.35 and a small target AP of 75.32. When the FCR is removed, the overall mAP drop is accompanied by a severe 6.87% reduction in small target AP. This failure is directly linked to the absence of the fitness-driven competition mechanism. In our FCR implementation, the Boltzmann selection gate uses a temperature parameter to modulate the activation of parallel neural assemblies. For clustered small targets that exhibit high local entropy, the Multi-Layer Perceptron (MLP)-based fitness evaluator assigns higher utility to high-frequency experts. Without this competitive selection, the system remains in a static state and cannot concentrate its functional connectome on the fine-grained details necessary for small objects, which leads to significant perceptual loss in dense scenes.
Similarly, replacing the CAB with a generic backbone while keeping the FCR leads to a 7.41% drop in small target AP. This indicates that the FCR requires the specific structural constraints of the CAB to operate effectively under multi-scale training. The CAB utilizes a low-rank bottleneck projection defined by down-projection and up-projection weight matrices. This structural bottleneck forces the feature flow to pass through a narrow manifold which acts as a phylogenetic filter. This filtering process preserves stable anatomical anchors that represent the geometric core of oriented targets. A generic backbone lacks this rank constrained flow and provides a feature space where small target signals are easily obscured by background clutter during multi-scale scaling operations. These results prove that the synergistic coupling of manifold projection in the CAB and competitive selection in the FCR is the primary driver of high-precision detection for small targets.
FCR Design Detail Ablation Analysis: As shown in Table 10, the full FCR achieves the best performance at 79.57% mAP, confirming its architectural effectiveness. Replacing GAP with LAP reduces mAP to 77.13%, showing global average pooling extracts context more effectively. Using a single neural assembly decreases mAP to 75.68%, proving multiple assemblies enhance representation. Standard Softmax lowers mAP to 78.05%, indicating temperature control optimizes sparse activation.
Neural Assembly Count ( N a s m ) Ablation Analysis: As illustrated in Table 11, the richness of the functional connectome, represented by the count of parallel neural assemblies N a s m , plays a pivotal role in the adaptation capacity of the model. When N a s m is set to low values such as 2 or 4, the mAP remains significantly lower at 76.23 or 78.45% respectively. This performance gap stems from the limited phenotypic plasticity of the expert pool. A restricted number of assemblies cannot cover the diverse geometric and textural niches present in remote sensing scenes where targets exhibit extreme scale variations and arbitrary orientations. In biological terms, a depauperate population of experts lacks the necessary functional diversity to respond effectively to high-complexity environmental stimuli.
With N a s m is increased to 6, CONERSLite achieves an optimal peak mAP of 79.57 while maintaining a high inference speed of 103 FPS. This configuration represents a critical equilibrium point where the plurality of neural experts is sufficient to map the manifold of oriented targets without introducing excessive metabolic overhead. At this scale, the replicator dynamics within the FCR can effectively differentiate between specialists for varied categories while the selection pressure ensures that only the most fit coalition is activated for a given instance.
However, further increasing the count to 8 or 10 results in diminishing returns, where mAP saturates at 79.63% and even slightly declines to 79.51%. This suggests that the informational entropy of the scene is already fully captured by six specialized assemblies. The additional pathways introduce redundant functional overlaps, where multiple assemblies compete for the same representational niche. When the count of assemblies N a s m increases from 6 to 8, FLOPs rise from 195 G to 210 G (adding 7.7%), while FPS drops from 103 to 92 (decreasing 10.7%). This discrepancy arises from the engineering implementation characteristics of dynamic routing. The increase in the number of assemblies not only brings a linear growth in multiplicative operations but also introduces additional memory access overhead and control flow complexity such as reduced parallelism in gating networks and increased cache miss rates. These factors cause the actual latency increase to be higher than the theoretical FLOPs increase. This phenomenon is widely observed in dynamic networks. From an accuracy perspective, N a s m = 8 only provides a marginal improvement of 0.06 mAP compared to N a s m = 6 , which is within the range of experimental noise. However, the associated latency cost of decreasing 10.7% FPS significantly impacts real-time applications. Therefore, considering mAP, speed, and computational efficiency, we select N a s m = 6 as the default configuration. For scenarios that are not sensitive to latency, N a s m = 8 can provide marginal accuracy gains.
Statistical Significance. To rigorously verify the robustness of the selected configuration, we conducted three independent training runs with different random seeds for the N a s m = 6 and N a s m = 8 settings. The results show that the mAP for N a s m = 6 is 79.57 ± 0.15 and for N a s m = 8 is 79.63 ± 0.18 . The difference of 0.06 mAP falls well within the overlapping confidence intervals of the two configurations, confirming that N a s m = 8 does not provide a statistically significant improvement over N a s m = 6 ( p > 0.05 under paired t-test). This analysis rules out the possibility that the observed saturation is a result of random training variance and substantiates our selection of N a s m = 6 as the default configuration based on the efficiency–accuracy trade-off rather than marginal accuracy gains.
Temperature Parameter ( τ ) Ablation Analysis: As demonstrated in Table 12 and Figure 7, the temperature parameter τ acts as a critical physical lever for modulating the selection pressure within the Boltzmann selection gate of the FCR. This parameter dictates the sharpness of the probability distribution over parallel neural assemblies and directly influences the mean activation sparsity S ( G ) and the collaborative dynamics of the functional connectome.
At a low temperature of τ = 0.1 , the selection mechanism enters a winner-take-all state characterized by extreme sparsity, where S ( G ) drops to 1.2. While this minimizes computational flow, the high selection pressure prevents the formation of synergistic coalitions. Under such conditions, the system is forced to rely on a single dominant assembly regardless of input complexity which leads to a significant degradation in mAP to 75.89% because multi-scale features cannot be integrated effectively.
Conversely, increasing τ to 1.0 results in a high entropy state with a mean activation count of 4.3. The loss of selection pressure leads to redundant activations where specialized signals are obscured by a uniform average of neural noise. This functional degradation occurs because the assemblies lose their competitive edge and transition from specialized experts back toward a generic uniform state, which reduces mAP to 78.65%.
Structural Compression Factor ( ρ ) Ablation Analysis: The structural compression factor ρ serves as the primary regulator of the phylogenetic filtering process within the CAB modules. As illustrated in Table 13 and Figure 8, ρ determines the dimensionality of the low-rank manifold that anchors the feature representation of oriented objects. When ρ is reduced to 0.5 which corresponds to a 50% pruning rate, the mAP suffers a catastrophic decline to 74.36%. This degradation occurs because the extreme structural bottleneck destroys the geometric integrity of the anatomical anchors. In this over-compressed state, the manifold dimension is insufficient to preserve the rotational symmetries and elongated axes critical for remote sensing targets, which leads to severe information collapse during the projection into the compressed latent space.
In contrast, the optimal setting of ρ = 0.7 with a 30% pruning rate achieves a peak mAP of 79.57 while maintaining high parameter efficiency. This specific ratio ensures that the structural core of the backbone is robust enough to act as a stable phylogenetic foundation for the subsequent functional routing. At this equilibrium, the low-rank bottleneck effectively filters out redundant spatial noise while retaining a complete set of geometric primitives necessary for resolving complex object orientations. Further increasing ρ to 0.9 yields only marginal improvements in mAP while significantly inflating the parameter count to 39.2 M and the computational cost to 281 G FLOPs. This plateau indicates that the essential structural manifold for remote sensing categories is relatively low rank and that additional parameters only contribute to representational redundancy without enhancing the perceptual gain. These results validate that the structural selection in CAB provides a lean yet powerful foundation for the Darwinian Wiring framework.
The sharp mAP transition from 74.36% ( ρ = 0.5 ) to 79.57% ( ρ = 0.7 ) reveals a critical threshold effect tied to the intrinsic dimensionality of the oriented object feature manifold. When ρ falls below 0.6, the effective rank of the CAB weight matrices becomes insufficient to preserve the geometric properties (elongated axes and angular symmetries) essential for remote sensing targets, causing abrupt discriminability loss. Singular value spectrum analysis confirms this: at ρ = 0.7 , the retained singular values capture over 95% of the total spectral energy, whereas at ρ = 0.5 this ratio drops to approximately 78%. The subsequent plateau beyond ρ = 0.7 indicates that the intrinsic feature dimensionality of typical remote sensing categories is relatively low, and additional capacity primarily captures redundant noise rather than discriminative signals.
CAB Internal Sub-Component Ablation Analysis: To further investigate the contribution of each structural element within the Compact Anatomical Backbone, we conduct an ablation on the internal sub-components of CAB, as reported in Table 14. The full CAB employs a low-rank bottleneck projection with residual learning, depthwise spatial filtering, SiLU activation, and batch normalization. Replacing the bottleneck structure with standard 3 × 3 convolutions inflates the parameter count to 35.6 M and the computational cost to 252 G FLOPs, while mAP decreases to 78.91%. This confirms that the rank constraint enhances feature discriminability by forcing information flow through a low-dimensional manifold. Removing the residual connection causes a drop to 77.23% mAP, demonstrating that the skip pathway is necessary for preserving gradient flow and enabling stable feature propagation. Expanding the bottleneck ratio to 1.0 (removing low-rank projection) increases parameters to 33.1 M with loss to 79.14%, indicating that the feature manifold is intrinsically low rank. Replacing depthwise separable convolutions with standard convolutions yields a mAP (79.71%) at the cost of higher parameters (35.2 M) and FLOPs (267 G), confirming that depthwise filtering provides an efficient spatial encoding.
We further ablate two fundamental operators within the CAB block that directly correspond to the nonlinear activation function σ ( · ) in Equation (15) and the normalization layer in the bottleneck path. Replacing SiLU with ReLU causes a 0.83% mAP decrease to 78.74%, despite identical parameter count and FLOPs. This performance gap is attributed to the smooth, self-gated property of SiLU ( x · sigmoid ( x ) ), which preserves gradient continuity on the low-rank manifold during the constrained ODE integration. The ReLU hard zero-threshold introduces gradient discontinuities that disrupt the assumed flow field in Equation (13), particularly in the compressed bottleneck space where feature magnitudes are inherently small. Replacing SiLU with GELU yields a 0.25% mAP decrease to 79.32%, suggesting that smooth activations in general are beneficial, but the SiLU explicit multiplicative gating provides a slight edge over the GELU probabilistic gating for oriented feature representations.
Removing BatchNorm from the bottleneck path causes the largest single-component degradation (2.91% mAP drop to 76.66%), surpassing the impact of removing the residual connection. This finding reveals that normalization plays a role in stabilizing the numerical integration of the constrained ODE: without BatchNorm, the feature magnitudes in the compressed r-dimensional space exhibit high variance across spatial locations, leading to gradient explosion during backpropagation and convergence instability. Replacing BatchNorm with GroupNorm ( G = 32 ) recovers most of the performance (79.21% mAP) but introduces a slight slowdown (97 FPS vs. 103 FPS) due to the per-group statistics computation overhead. These results confirm that normalization within the low-rank bottleneck is a structural necessity for maintaining the stability of the manifold flow.

4.5. Visualization and Qualitative Analysis

From the provided visual comparison results in Figure 9, it can be clearly observed that the proposed method achieves significant improvements over the baseline approach. Across distinct representative scenarios, the heatmaps generated by the baseline method generally suffer from dispersed responses and insufficient focus on target regions, leading to blurred boundaries and background interference. In contrast, our method produces heatmaps with highly concentrated activations, which more precisely highlight the core areas of target objects.
The qualitative comparisons in Figure 10 provide granular evidence of the effectiveness of the proposed Darwinian Wiring framework. In these magnified local views, the baseline model frequently exhibits two primary failure modes: “Miss Detection”, where small or partially occluded targets are overlooked in dense clusters, and “Wrong Detection”, where background clutter or shadows are misidentified as targets. These issues are systematically addressed in CONERSLite through our dual-stage refinement process.
Specifically, in the dense harbor scenarios shown in the top row, the Functional Connectome Router (FCR) dynamically orchestrates a sparse neural coalition that effectively suppresses interfering dock textures and water reflections. This instance-specific routing ensures that the model’s representational capacity is focused solely on the targets, thereby preventing the omissions observed in the baseline. Simultaneously, in high-density parking lot and warehouse scenes in the middle and bottom rows, the Compact Anatomical Backbone (CAB) utilizes connectome-constrained features selected through structural plasticity to prioritize geometric consistency over deceptive surface textures. By preserving only the most stable anatomical anchors during the pruning phase, the CAB facilitates precise boundary localization even for overlapping objects. This transition from structural selection in the CAB to functional focus in the FCR allows CONERSLite to achieve superior precision and reliability, successfully eliminating the classification errors and omissions that plague the uncompressed baseline.
This enhancement not only increases the visual salience of targets but also indicates that the model extracts target features more accurately, yielding more reliable and interpretable detection results. The orientations of detected bounding boxes are also more stable and consistent with the target geometry, demonstrating the effectiveness of the proposed Darwinian Wiring and Functional Connectome Routing (FCR) in managing complex spatial distributions.
Advantages of Module Complementarity on Complex Categories: The synergistic integration of CAB and FCR demonstrates pronounced advantages in detecting objects with complex structures or large scale variations. At the category level, the proposed model demonstrates significant improvements across challenging scenarios, underscoring CONERSLite’s effectiveness in small object modeling, rotational invariance, and background suppression. The angular equivariance modeling with the anatomical backbone and the functional routing strategy complement each other, with the former addressing angular consistency and the latter improving the robustness of small targets in complex scenarios.
It should be noted that the nonlinear relationship between FPS and FLOPs reflects the complexity of dynamic networks in actual deployment. Theoretical calculation optimization does not always translate linearly to inference speed gains. This leaves room for future engineering optimization such as operator fusion and sparse library adaptation.

5. Discussion

The experimental results presented in the preceding sections demonstrate that the Darwinian Wiring paradigm offers a principled and effective approach to lightweight oriented object detection in remote sensing. This section synthesizes the key findings across all benchmarks and ablation studies, discusses the underlying design trade-offs, and identifies avenues for future improvement.
CONERSLite consistently achieves competitive or superior accuracy across three benchmarks with markedly different characteristics. On DOTA-v1.0 (Table 4), the proposed model surpasses representative lightweight backbones such as PKINet-S and LSKNet-S under both single-scale and multi-scale settings while maintaining a compact parameter budget of 28.3 M. The per-category radar chart in Figure 5 further reveals that these improvements are most pronounced in geometrically complex categories like Harbor, Swimming Pool, and Roundabout, where the dynamic routing of the FCR can selectively recruit specialized neural assemblies for intricate spatial structures. On HRSC2016 (Table 6), CONERSLite delivers a state-of-the-art mAP of 98.62% under the VOC 2012 metric and simultaneously reduces the total parameter count by approximately 45% relative to RTMDet. This result indicates that the constrained manifold flow within the CAB preserves the elongated geometric features critical for ship detection with high fidelity. The DIOR-R benchmark (Table 7) provides a particularly rigorous test of generalization, owing to its 20 diverse categories. CONERSLite outperforms the next-best model PKINet-S by 2.65% mAP on this dataset, confirming that competitive neural assembly selection generalizes well beyond domain-specific target types.
A comparison with the base detector MTP in Table 5 highlights the compression efficiency of the proposed framework. CONERSLite matches the mAP@0.5 of MTP while reducing its parameters by over 74% and its FLOPs by over 64%. The direct comparison with ultra-lightweight detectors such as YOLOv8n-obb and RTMDet-R-tiny in the same table shows that CONERSLite achieves substantially higher accuracy at the cost of a larger model footprint. This observation suggests that the Darwinian Wiring paradigm occupies a distinct and favorable position on the accuracy–efficiency landscape, targeting applications where detection reliability takes priority over absolute model minimality.
The ablation studies provide strong evidence for the synergistic nature of the CAB and FCR modules. Table 8 shows that removing either module individually leads to significant performance degradation, and the combined gain of the full model exceeds the sum of the individual module contributions. This super-additive behavior confirms that anatomical stability and functional plasticity are complementary rather than independent. The multi-scale ablation in Table 9 further reveals that both modules are especially critical for small-target detection, where the removal of either component causes a disproportionately large drop in small-target AP compared to overall mAP. These findings align with the biological intuition that stable structural wiring and adaptive functional routing must work in concert to handle complex perceptual demands.
The FCR design ablation in Table 10 demonstrates that global context aggregation, multiple parallel assemblies, and temperature-controlled selection each make indispensable contributions to the routing quality. Replacing any one of these elements with a simpler alternative results in measurable accuracy loss. Similarly, the CAB sub-component ablation in Table 14 identifies batch normalization and the residual connection as the two most impactful internal elements. The removal of batch normalization causes the single largest performance drop among all sub-components, underscoring its role in stabilizing feature propagation through the low-rank bottleneck.
The hyperparameter studies further characterize the operating envelope of CONERSLite. The neural assembly count N a s m in Table 11 exhibits a clear saturation point at six assemblies, beyond which additional experts provide negligible accuracy gains while increasing computational overhead. The temperature parameter τ in Table 12 controls the trade-off between expert specialization and functional diversity, and the optimal value of 0.5 balances these competing objectives. The structural compression factor ρ in Table 13 reveals a pronounced threshold effect, where reducing the bottleneck ratio below 0.6 leads to a sharp accuracy collapse due to the destruction of essential geometric primitives on the feature manifold. These results collectively demonstrate that the framework is robust within a well-defined operating range and that its key hyperparameters have interpretable physical meanings grounded in the biological analogy.
Several limitations of the current framework deserve attention. The per-category analysis in Table 4 shows that CONERSLite underperforms on categories with extreme aspect ratios such as Bridge and on very small targets such as Helicopter. These weaknesses arise because the low-rank bottleneck in the CAB compresses feature representations below the discriminability threshold for such challenging geometries. In addition, the absolute parameter count and FLOPs of CONERSLite remain higher than those of ultra-lightweight models such as YOLOv8n-obb (Table 5), which may limit its applicability on the most resource-constrained edge devices. The nonlinear relationship between FLOPs and actual inference speed, as observed in the N a s m ablation (Table 11), also highlights the engineering challenges inherent in deploying dynamic routing architectures on current hardware. Future work could explore adaptive rank selection to dynamically adjust the compression ratio based on input complexity, multi-resolution attention mechanisms to improve small-target recall, and knowledge distillation techniques to transfer the learned routing strategies into more hardware-friendly static architectures.

6. Conclusions

In this paper, we introduced Darwinian Wiring, a novel connectome-constrained structural plasticity framework for extreme model compression in remote sensing object detection. Inspired by the principles of neural Darwinism, our approach transcends the limitations of static pruning by implementing a dynamic, selection-based computation paradigm. Through the synergistic integration of the Compact Anatomical Backbone (CAB) and the Functional Connectome Router (FCR), our model, CONERSLite, achieves a state-of-the-art balance between perception capability and computational efficiency. Extensive experiments on benchmarks like DOTA, HRSC2016, and DIOR-R demonstrate that CONERSLite not only significantly reduces parameter count and FLOPs but also maintains or even surpasses the accuracy of much larger models. By enabling instance-specific neural coalitions, Darwinian Wiring provides a robust and energy-efficient solution for deploying high-performance detectors on resource-constrained edge platforms, establishing a new direction for biologically inspired neural architecture design.
Despite the high precision achieved by CONERSLite (e.g., 98.62% on HRSC2016), we acknowledge that performance on these datasets is nearing saturation. Remaining errors primarily stem from extreme occlusions, interference from cloud cover, and misses on ultra small targets. As detailed in Section 4.5, these failure modes reveal the inherent trade-offs of the rank-constrained manifold design: while the low-rank bottleneck achieves remarkable metabolic efficiency, it inevitably limits the preservation of fine-grained spatial details for extremely small or heavily occluded targets. Future work can be targeted at optimizing these long tail difficult cases.

Author Contributions

Conceptualization, L.T., Y.G. and S.Z.; methodology, L.T., W.G. and Y.G.; software, L.T., W.G. and J.L.; validation, J.L., Y.X. and Y.H.; formal analysis, Y.H. and Y.W.; investigation, Y.W. and W.M.; resources, S.Z. and Y.G.; data curation, J.L. and Y.H.; writing—original draft preparation, L.T.; writing—review and editing, L.T., Y.X., S.Z. and Y.G.; visualization, L.T. and Y.X.; supervision, S.Z. and Y.G.; project administration, S.Z. and Y.G.; funding acquisition, S.Z. and Y.G. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by the Key Project of the Xiangjiang Laboratory (No. 23Xj02003), the Training Program for Excellent Young Innovators of Changsha (Grant No. kq2209001), Hunan Excellent Young Scientists Fund (Grant No. 2025JJ40066) and General Program of National Natural Science Foundation of China (Grant No. 72571281).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

The datasets DIOR-R, HRSC2016, and DOTA-v1.0 arepublicly available from their respective sources. No new data were created.

Conflicts of Interest

The authors declare no conflicts of interest.

Abbreviations

The following abbreviations are used in this manuscript:
BSGBoltzmann Selection Gate
CABCompact Anatomical Backbone
FCRFunctional Connectome Router
FLOPsFloating Point Operations
FPSFrames Per Second
mAPmean Average Precision
MLPMulti-Layer Perceptron
MoEMixture of Experts
MoSMean Activation Sparsity ( S ( G ) )
SFPSparse Forward Propagation
SNRSignal-to-Noise Ratio

References

  1. Howard, A.G.; Zhu, M.; Chen, B.; Kalenichenko, D.; Wang, W.; Weyand, T.; Andreetto, M.; Adam, H. Mobilenets: Efficient convolutional neural networks for mobile vision applications. arXiv 2017, arXiv:1704.04861. [Google Scholar] [CrossRef]
  2. Zhang, X.; Zhou, X.; Lin, M.; Sun, J. Shufflenet: An extremely efficient convolutional neural network for mobile devices. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Salt Lake City, UT, USA, 18–22 June 2018. [Google Scholar]
  3. Han, K.; Wang, Y.; Tian, Q.; Guo, J.; Xu, C.; Xu, C. Ghostnet: More features from cheap operations. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Seattle, WA, USA, 14–19 June 2020. [Google Scholar]
  4. Han, Y.; Huang, G.; Song, S.; Yang, L.; Wang, H.; Wang, Y. Dynamic Neural Networks: A Survey. arXiv 2021, arXiv:2102.04906. [Google Scholar] [CrossRef]
  5. Demir, E.; Akbas, E. Early-exit Convolutional Neural Networks. arXiv 2024, arXiv:2409.05336. [Google Scholar] [CrossRef]
  6. Bengio, E.; Bacon, P.L.; Pineau, J.; Precup, D. Conditional Computation in Neural Networks for faster models. arXiv 2016, arXiv:1511.06297. [Google Scholar] [CrossRef]
  7. Gao, X.; Zhao, Y.; Dudziak, Ł.; Mullins, R.; Xu, C.Z. Dynamic Channel Pruning: Feature Boosting and Suppression. arXiv 2019, arXiv:1810.05331. [Google Scholar] [CrossRef]
  8. Peng, W.; Yi, J.; Wang, X.v.; Yi, Z.; Song, Y. LO-Det: Lightweight oriented object detection in remote sensing images. IEEE Geosci. Remote Sens. Lett. 2022, 19, 1–5. [Google Scholar]
  9. Wu, Z.; Zhen, H.; Zhang, X.; Bai, X.; Li, X. SEMA-YOLO: Lightweight small object detection in remote sensing image via shallow-layer enhancement and multi-scale adaptation. Remote Sens. 2025, 17, 1917. [Google Scholar] [CrossRef]
  10. Zhan, J.; Bai, L.; Zhang, J.; Liu, T.; Shi, F.; Liu, Y.; Liu, L. Heterogeneous binary pixel difference networks for remote sensing object detection. IEEE Trans. Geosci. Remote Sens. 2025, 63, 5602619. [Google Scholar] [CrossRef]
  11. Zhong, X.; Zhan, J.; Xie, Y.; Zhang, L.; Zhou, G.; Liang, M.; Yang, K.; Guo, Z.; Li, L. Adaptive deformation-learning and multiscale-integrated network for remote sensing object detection. Remote Sens. 2025, 63, 5611619. [Google Scholar] [CrossRef]
  12. Yuan, X.; Zheng, Z.; Li, Y.; Liu, X.; Liu, L.; Li, X.; Hou, Q.; Cheng, M.M. Strip R-CNN: Large strip convolution for remote sensing object detection. In Proceedings of the AAAI Conference on Artificial Intelligence, Singapore, 20–27 January 2026; Volume 40, pp. 12259–12267. [Google Scholar]
  13. Li, Y.; Li, X.; Li, Y.; Zhang, Y.; Dai, Y.; Hou, Q.; Cheng, M.M.; Yang, J. Sm3det: A unified model for multi-modal remote sensing object detection. In Proceedings of the AAAI Conference on Artificial Intelligence, Singapore, 20–27 January 2026; Volume 40, pp. 6717–6725. [Google Scholar]
  14. Zhu, X.; Liang, D.; Jiang, X.; Guan, Y.; Liu, Y.; Zhu, Y.; Bai, X. Layerlink: Bridging remote sensing object detection and large vision models with efficient fine-tuning. Pattern Recognit. 2025, 165, 111583. [Google Scholar] [CrossRef]
  15. Tan, M.; Pang, R.; Le, Q.V. Efficientdet: Scalable and efficient object detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Seattle, WA, USA, 14–19 June 2020; pp. 10781–10790. [Google Scholar]
  16. Yue, M.; Zhang, L.; Zhang, Y.; Zhang, H. An improved YOLOv8 detector for multi-scale target detection in remote sensing images. IEEE Access 2024, 12, 114123–114136. [Google Scholar] [CrossRef]
  17. Jiang, T.; Lu, P.; Zhang, L.; Ma, N.; Han, R.; Lyu, C.; Li, Y.; Chen, K. Rtmpose: Real-time multi-person pose estimation based on mmpose. arXiv 2023, arXiv:2303.07399. [Google Scholar]
  18. Huang, S.; Lin, C.; Jiang, X.; Qu, Z. BRSTD: Bio-Inspired Remote Sensing Tiny Object Detection. IEEE Trans. Geosci. Remote Sens. 2024, 62, 5643115. [Google Scholar] [CrossRef]
  19. Qiang, H.; Hao, W.; Xie, M.; Tang, Q.; Shi, H.; Zhao, Y.; Han, X. SCM-YOLO for lightweight small object detection in remote sensing images. Remote Sens. 2025, 17, 249. [Google Scholar] [CrossRef]
  20. Chen, Y.; Wang, Z.; Xiong, Z.; Zhang, Y.; Xu, X. SCM-YOLO: An efficient and lightweight detector for small object detection in remote sensing imagery. Remote Sens. 2025, 17, 25. [Google Scholar]
  21. Lyu, X.; Tian, L.; Teng, S. ECDet: Efficient oriented object detection on the aerial image with cross-layer attention. J. Real-Time Image Process. 2025, 22, 42. [Google Scholar] [CrossRef]
  22. Liu, J.; Zhan, J.; Guo, Y.; Li, T.; Zhao, Y.; Zhang, J.; Tang, L.; Li, Y.; Wei, Y.; Cai, W. Learning geometric-aware and weather-adaptive semantics in remote sensing: Affine Lie group enhanced detector for UAV road scenes. IEEE Trans. Geosci. Remote Sens. 2026, 64, 5605820. [Google Scholar] [CrossRef]
  23. Liu, J.; Zhan, J.; Zhang, J.; Chen, J.; Song, Y.; Tang, L.; Zhou, L.; Du, C.; Wei, Y.; Guo, Y. Robust scale fusion and edge-aware feature attention network for remote sensing UAV road detection under harsh weather. Results Eng. 2025, 27, 104337. [Google Scholar] [CrossRef]
  24. Dai, X.; Chen, Y.; Yang, J.; Zhang, P.; Yuan, L.; Zhang, L. Dynamic detr: End-to-end object detection with dynamic attention. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Montreal, QC, Canada, 11–17 October 2021; pp. 2988–2997. [Google Scholar]
  25. Gao, M.; Yu, R.; Li, A.; Morariu, V.I.; Davis, L.S. Dynamic zoom-in network for fast object detection in large images. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Salt Lake City, UT, USA, 18–22 June 2018; pp. 6926–6935. [Google Scholar]
  26. Wang, N.; Gao, Y.; Chen, H.; Wang, P.; Tian, Z.; Shen, C.; Zhang, Y. NAS-FCOS: Fast neural architecture search for object detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Seattle, WA, USA, 13–19 June 2020; pp. 11943–11951. [Google Scholar]
  27. Yao, L.; Xu, H.; Zhang, W.; Liang, X.; Li, Z. SM-NAS: Structural-to-modular neural architecture search for object detection. In Proceedings of the AAAI conference on artificial intelligence, New York, NY, USA, 7–12 February 2020; Volume 34, pp. 12661–12668. [Google Scholar]
  28. Ebrahimpour, M.K.; Li, J.; Yu, Y.Y.; Reesee, J.; Moghtaderi, A.; Yang, M.H.; Noelle, D.C. Ventral-dorsal neural networks: Object detection via selective attention. In Proceedings of the 2019 IEEE Winter Conference on Applications of Computer Vision (WACV); IEEE: Piscataway, NJ, USA, 2019; pp. 986–994. [Google Scholar]
  29. Hu, J.; Shen, L.; Sun, G. Squeeze-and-excitation networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Salt Lake City, UT, USA, 18–22 June 2018; pp. 7132–7141. [Google Scholar]
  30. Woo, S.; Park, J.; Lee, J.Y.; Kweon, I.S. Cbam: Convolutional block attention module. In Proceedings of the European Conference on Computer Vision (ECCV), Munich, Germany, 8–14 September 2018; pp. 3–19. [Google Scholar]
  31. Neubeck, A.; Van Gool, L. Efficient non-maximum suppression. In Proceedings of the 18th International Conference on Pattern Recognition (ICPR’06); IEEE: Piscataway, NJ, USA, 2006; Volume 3, pp. 850–855. [Google Scholar]
  32. Kim, S.; Park, S.; Na, B.; Yoon, S. Spiking-YOLO: Spiking neural network for energy-efficient object detection. In Proceedings of the AAAI Conference on Artificial Intelligence, New York, NY, USA, 7–12 February 2020; Volume 34, pp. 11270–11277. [Google Scholar]
  33. Su, Q.; Chou, Y.; Hu, Y.; Li, J.; Mei, S.; Zhang, Z.; Li, G. Deep directly-trained spiking neural networks for object detection. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), Paris, France, 2–6 October 2023. [Google Scholar]
  34. Forster, D.T.; Li, S.C.; Yashiroda, Y.; Yoshimura, M.; Li, Z.; Isuhuaylas, L.A.V.; Itto-Nakama, K.; Yamanaka, D.; Ohya, Y.; Osada, H.; et al. BIONIC: Biological network integration using convolutions. Nat. Methods 2022, 19, 1250–1261. [Google Scholar] [CrossRef]
  35. Roberts, N.; Yap, D.A.; Prabhu, V.U. Deep Connectomics Networks: Towards Biologically-Inspired Computer Vision. In Proceedings of the ICLR Workshop, Vancouver, BC, Canada, 30 April–3 May 2018. [Google Scholar]
  36. Kubilius, J.; Schrimpf, M.; Hong, H.; Majaj, N.J.; Rajalingham, R.; Issa, E.B.; Kar, K.; Bashivan, P.; Prescott-Roy, J.; Schmidt, K.; et al. Brain-like object recognition with recurrent supervised networks. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Vancouver, BC, Canada, 8–14 December 2019. [Google Scholar]
  37. Liu, Y.; Wang, R.; Shan, S.; Chen, X. Structure Inference Net: Object Detection Using Scene-Level Context and Instance-Level Relationships. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Salt Lake City, UT, USA, 18–22 June 2018. [Google Scholar]
  38. Zhan, J.; Xie, Y.; Guo, J.; Hu, Y.; Zhou, G.; Cai, W.; Wang, Y.; Chen, A.; Xie, L.; Li, M.; et al. DGPF-RENet: A low data dependence network with low training iterations for hyperspectral image classification. IEEE Trans. Geosci. Remote Sens. 2023, 61, 5520521. [Google Scholar] [CrossRef]
  39. Adeli, H.; Ahn, S.; Zelinsky, G.J. OCRA: A brain-inspired object-based attention network for multiobject recognition and visual reasoning. bioRxiv 2022, 2022.04.02.486850. [Google Scholar]
  40. Li, T.; Zhan, J.; Liu, J.; Guo, J.; Xiong, X.; Cai, W.; Liu, E.; Wei, Y.; Hu, Y. Sorted texture-aware glance and gaze network for hyperspectral image classification with low training samples. IEEE Trans. Geosci. Remote Sens. 2025, 63, 5518126. [Google Scholar] [CrossRef]
  41. Zheng, Z.; Wei, J.; Xu, Y.; Li, C.; Lu, T.; Guo, Q.; Ji, X.; Guo, H.; Wang, G.; Deng, L. Modeling macroscopic brain dynamics with brain-inspired computing architecture. Nat. Commun. 2025, 16, 9424. [Google Scholar] [CrossRef]
  42. Parhi, K.K.; Unnikrishnan, N.K. Brain-inspired computing: Models and architectures. IEEE Open J. Circuits Syst. 2020, 1, 185–204. [Google Scholar] [CrossRef]
  43. Xia, J.; Wang, S. A Lightweight Brain-Inspired Machine Learning Framework for Coronary Angiography: Hybrid Neural Representation and Robust Learning Strategies. arXiv 2026, arXiv:2601.15865. [Google Scholar] [CrossRef]
  44. Wang, D.; Zhang, J.; Xu, M.; Liu, L.; Wang, D.; Gao, E.; Han, C.; Guo, H.; Du, B.; Tao, D.; et al. MTP: Advancing remote sensing foundation model via multitask pretraining. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2024, 17, 11632–11654. [Google Scholar] [CrossRef]
  45. Hu, Z.; Gao, K.; Zhang, X.; Wang, J.; Wang, H.; Yang, Z.; Li, C.; Li, W. EMO2-DETR: Efficient-matching oriented object detection with transformers. IEEE Trans. Geosci. Remote Sens. 2023, 61, 5616814. [Google Scholar] [CrossRef]
  46. Wang, J.; Yang, W.; Li, H.C.; Zhang, H.; Xia, G.S. Learning center probability map for detecting objects in aerial images. IEEE Trans. Geosci. Remote Sens. 2020, 59, 4307–4323. [Google Scholar] [CrossRef]
  47. Dai, L.; Liu, H.; Tang, H.; Wu, Z.; Song, P. AO2-DETR: Arbitrary-oriented object detection transformer. IEEE Trans. Circuits Syst. Video Technol. 2022, 33, 2342–2356. [Google Scholar] [CrossRef]
  48. Yang, X.; Yang, J.; Yan, J.; Zhang, Y.; Zhang, T.; Guo, Z.; Sun, X.; Fu, K. SCRDet: Towards more robust detection for small, cluttered and rotated objects. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), Seoul, Republic of Korea, 27 October–2 November 2019; pp. 8232–8241. [Google Scholar]
  49. Yang, X.; Yan, J.; Feng, Z.; He, T. R3Det: Refined single-stage detector with feature refinement for rotating object. In Proceedings of the AAAI Conference on Artificial Intelligence, Virtual, 2–9 February 2021; Volume 35, pp. 3163–3171. [Google Scholar]
  50. Ding, J.; Xue, N.; Long, Y.; Xia, G.S.; Lu, Q. Learning RoI transformer for oriented object detection in aerial images. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Long Beach, CA, USA, 16–20 June 2019; pp. 2849–2858. [Google Scholar]
  51. Yujie, L.; Xiaorui, S.; Wenbin, S.; Yafu, Y. S2ANet: Combining local spectral and spatial point grouping for point cloud processing. Virtual Real. Intell. Hardw. 2024, 6, 267–279. [Google Scholar] [CrossRef]
  52. Hou, L.; Lu, K.; Xue, J.; Li, Y. Shape-adaptive selection and measurement for oriented object detection. In Proceedings of the AAAI Conference on Artificial Intelligence, Virtual, 22 February–1 March 2022; Volume 36, pp. 923–932. [Google Scholar]
  53. Xu, Y.; Fu, M.; Wang, Q.; Wang, Y.; Chen, K.; Xia, G.S.; Bai, X. Gliding vertex on the horizontal bounding box for multi-oriented object detection. IEEE Trans. Pattern Anal. Mach. Intell. 2020, 43, 1452–1459. [Google Scholar] [CrossRef]
  54. Xie, X.; Cheng, G.; Wang, J.; Yao, X.; Han, J. Oriented R-CNN for object detection. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Virtual, 11–17 October 2021; pp. 3520–3529. [Google Scholar]
  55. Han, J.; Ding, J.; Xue, N.; Xia, G.S. ReDet: A rotation-equivariant detector for aerial object detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Virtual, 19–25 June 2021; pp. 2786–2795. [Google Scholar]
  56. Yang, X.; Yan, J.; Ming, Q.; Wang, W.; Zhang, X.; Tian, Q. Rethinking rotated object detection with Gaussian Wasserstein distance loss. In Proceedings of the International Conference on Machine Learning (ICML), PMLR, Virtual, 18–24 July 2021; pp. 11830–11841. [Google Scholar]
  57. Xiao, Z.; Yang, G.; Yang, X.; Mu, T.; Yan, J.; Hu, S. Theoretically achieving continuous representation of oriented bounding boxes. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Seattle, WA, USA, 16–22 June 2024; pp. 16912–16922. [Google Scholar]
  58. Yang, X.; Yang, X.; Yang, J.; Ming, Q.; Wang, W.; Tian, Q.; Yan, J. Learning high-precision bounding box for rotated object detection via Kullback–Leibler divergence. Adv. Neural Inf. Process. Syst. 2021, 34, 18381–18394. [Google Scholar]
  59. Yang, X.; Zhou, Y.; Zhang, G.; Yang, J.; Wang, W.; Yan, J.; Zhang, X.; Tian, Q. The KFIoU loss for rotated object detection. arXiv 2022, arXiv:2201.12558. [Google Scholar]
  60. Li, Y.; Hou, Q.; Zheng, Z.; Cheng, M.M.; Yang, J.; Li, X. Large selective kernel network for remote sensing object detection. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Paris, France, 2–6 October 2023; pp. 16794–16805. [Google Scholar]
  61. Cai, X.; Lai, Q.; Wang, Y.; Wang, W.; Sun, Z.; Yao, Y. Poly kernel inception network for remote sensing detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Seattle, WA, USA, 16–22 June 2024; pp. 27706–27716. [Google Scholar]
  62. Wei, H.; Zhang, Y.; Chang, Z.; Li, H.; Wang, H.; Sun, X. Oriented objects as pairs of middle lines. ISPRS J. Photogramm. Remote Sens. 2020, 169, 268–279. [Google Scholar] [CrossRef]
  63. Ming, Q.; Miao, L.; Zhou, Z.; Dong, Y. CFC-Net: A critical feature capturing network for arbitrary-oriented object detection in remote-sensing images. IEEE Trans. Geosci. Remote Sens. 2021, 60, 5605814. [Google Scholar] [CrossRef]
  64. Liu, S.; Zhang, L.; Lu, H.; He, Y. Center-boundary dual attention for oriented object detection in remote sensing images. IEEE Trans. Geosci. Remote Sens. 2021, 60, 5603914. [Google Scholar] [CrossRef]
  65. Zhang, C.; Lam, K.M.; Wang, Q. CoF-Net: A progressive coarse-to-fine framework for object detection in remote-sensing imagery. IEEE Trans. Geosci. Remote Sens. 2023, 61, 5600617. [Google Scholar] [CrossRef]
  66. Yang, X.; Yan, J. Arbitrary-oriented object detection with circular smooth label. In Proceedings of the European Conference on Computer Vision; Springer: Berlin/Heidelberg, Germany, 2020; pp. 677–694. [Google Scholar]
  67. Guo, Z.; Liu, C.; Zhang, X.; Jiao, J.; Ji, X.; Ye, Q. Beyond Bounding-Box: Convex-hull Feature Adaptation for Oriented and Densely Packed Object Detection. In Proceedings of the 2021 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Nashville, TN, USA, 19–25 June 2021; pp. 8788–8797. [Google Scholar] [CrossRef]
  68. Achinek, D.N.; Shehu, I.S.; Athuman, A.M.; Fu, X. DAF-Net: Dense attention feature pyramid network for multiscale object detection. Int. J. Multimed. Inf. Retr. 2024, 13, 18. [Google Scholar] [CrossRef]
  69. Cheng, G.; Yao, Y.; Li, S.; Li, K.; Xie, X.; Wang, J.; Yao, X.; Han, J. Dual-aligned oriented detector. IEEE Trans. Geosci. Remote Sens. 2022, 60, 5618111. [Google Scholar] [CrossRef]
  70. Cheng, G.; Wang, J.; Li, K.; Xie, X.; Lang, C.; Yao, Y.; Han, J. Anchor-free oriented proposal generator for object detection. IEEE Trans. Geosci. Remote Sens. 2022, 60, 5625411. [Google Scholar] [CrossRef]
  71. Lyu, C.; Zhang, W.; Huang, H.; Zhou, Y.; Wang, Y.; Liu, Y.; Zhang, S.; Chen, K. Rtmdet: An empirical study of designing real-time object detectors. arXiv 2022, arXiv:2212.07784. [Google Scholar] [CrossRef]
  72. Wang, D.; Zhang, Q.; Xu, Y.; Zhang, J.; Du, B.; Tao, D.; Zhang, L. Advancing plain vision transformer toward remote sensing foundation model. IEEE Trans. Geosci. Remote Sens. 2022, 61, 5607315. [Google Scholar] [CrossRef]
  73. Xia, G.S.; Bai, X.; Ding, J.; Zhu, Z.; Belongie, S.; Luo, J.; Datcu, M.; Pelillo, M.; Zhang, L. DOTA: A large-scale dataset for object detection in aerial images. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Salt Lake City, UT, USA, 18–22 June 2018; pp. 3974–3983. [Google Scholar]
  74. Zhang, G.; Lu, S.; Zhang, W. CAD-Net: A context-aware detection network for objects in remote sensing imagery. IEEE Trans. Geosci. Remote Sens. 2019, 57, 10015–10024. [Google Scholar] [CrossRef]
  75. Ansari, M.Z.; Ahmad, F.; Taheri, E.N.; Reddy, R.G.J.; Mabood, F. Animal identity recognition using object detection techniques. Procedia Comput. Sci. 2024, 233, 651–659. [Google Scholar] [CrossRef]
  76. Pan, X.; Ren, Y.; Sheng, K.; Dong, W.; Yuan, H.; Guo, X.; Ma, C.; Xu, C. Dynamic refinement network for oriented and densely packed object detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Online, 14–19 June 2020; pp. 11207–11216. [Google Scholar]
  77. Ming, Q.; Zhou, Z.; Miao, L.; Zhang, H.; Li, L. Dynamic anchor learning for arbitrary-oriented object detection. In Proceedings of the AAAI Conference on Artificial Intelligence, Virtual, 2–9 February 2021; Volume 35, pp. 2355–2363. [Google Scholar]
  78. Lin, T.Y.; Goyal, P.; Girshick, R.; He, K.; Dollár, P. Focal loss for dense object detection. In Proceedings of the IEEE International Conference on Computer Vision, Venice, Italy, 22–29 October 2017; pp. 2980–2988. [Google Scholar]
  79. Ren, S.; He, K.; Girshick, R.; Sun, J. Faster r-cnn: Towards real-time object detection with region proposal networks. Adv. Neural Inf. Process. Syst. 2015, 28, 91–99. [Google Scholar] [CrossRef] [PubMed]
  80. Ming, Q.; Miao, L.; Zhou, Z.; Song, J.; Dong, Y.; Yang, X. Task interleaving and orientation estimation for high-precision oriented object detection in aerial images. ISPRS J. Photogramm. Remote Sens. 2023, 196, 241–255. [Google Scholar] [CrossRef]
  81. Zeng, Y.; Chen, Y.; Yang, X.; Li, Q.; Yan, J. ARS-DETR: Aspect ratio-sensitive detection transformer for aerial oriented object detection. IEEE Trans. Geosci. Remote Sens. 2024, 62, 5610315. [Google Scholar] [CrossRef]
  82. Li, W.; Chen, Y.; Hu, K.; Zhu, J. Oriented reppoints for aerial object detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, New Orleans, LA, USA, 19–24 June 2022; pp. 1829–1838. [Google Scholar]
  83. Xu, C.; Ding, J.; Wang, J.; Yang, W.; Yu, H.; Yu, L.; Xia, G.S. Dynamic coarse-to-fine learning for oriented tiny object detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Vancouver, BC, Canada, 18–22 June 2023; pp. 7318–7328. [Google Scholar]
Figure 1. Accuracy–efficiency landscape for state-of-the-art oriented object detectors.
Figure 1. Accuracy–efficiency landscape for state-of-the-art oriented object detectors.
Remotesensing 18 01719 g001
Figure 2. The architecture diagram of CONERSLite.
Figure 2. The architecture diagram of CONERSLite.
Remotesensing 18 01719 g002
Figure 3. Detailed structural diagram of the Functional Connectome Router (FCR). The router evaluates the utility of multiple parallel neural assemblies via a gating network and dynamically activates a sparse coalition based on target complexity, effectively representing ontogenetic selection pressure.
Figure 3. Detailed structural diagram of the Functional Connectome Router (FCR). The router evaluates the utility of multiple parallel neural assemblies via a gating network and dynamically activates a sparse coalition based on target complexity, effectively representing ontogenetic selection pressure.
Remotesensing 18 01719 g003
Figure 4. Detailed structural diagram of the Compact Anatomical Backbone (CAB). The module implements a continuous metric projection through a low-rank manifold (via W d o w n and W u p ), where depthwise spatial filtering is performed within the strictly constrained bottleneck to enforce phylogenetic constraints.
Figure 4. Detailed structural diagram of the Compact Anatomical Backbone (CAB). The module implements a continuous metric projection through a low-rank manifold (via W d o w n and W u p ), where depthwise spatial filtering is performed within the strictly constrained bottleneck to enforce phylogenetic constraints.
Remotesensing 18 01719 g004
Figure 5. Per-category performance comparison on the DOTA-v1.0 dataset. This radar chart visualizes the AP scores for each of the 15 categories under Single-Scale (left) and Multi-Scale (right) settings. The red line denotes our CONERSLite, which consistently demonstrates a performance advantage over other state-of-the-art methods. The shaded area highlights the robustness of our approach, particularly in challenging categories with dense distributions and high orientation variability.
Figure 5. Per-category performance comparison on the DOTA-v1.0 dataset. This radar chart visualizes the AP scores for each of the 15 categories under Single-Scale (left) and Multi-Scale (right) settings. The red line denotes our CONERSLite, which consistently demonstrates a performance advantage over other state-of-the-art methods. The shaded area highlights the robustness of our approach, particularly in challenging categories with dense distributions and high orientation variability.
Remotesensing 18 01719 g005
Figure 6. Performance vs. parameter trade-off for different model variants. This scatter plot shows how CAB and FCR influence accuracy and complexity. While individual modules improve upon the traditional lightweight model, their synergistic integration in CONERSLite achieves a substantial mAP boost. This proves that combining structural plasticity with dynamic functional routing creates a more potent representation than either module alone.
Figure 6. Performance vs. parameter trade-off for different model variants. This scatter plot shows how CAB and FCR influence accuracy and complexity. While individual modules improve upon the traditional lightweight model, their synergistic integration in CONERSLite achieves a substantial mAP boost. This proves that combining structural plasticity with dynamic functional routing creates a more potent representation than either module alone.
Remotesensing 18 01719 g006
Figure 7. Ablation study of temperature parameter ( τ ) in FCR. This chart shows the influence of temperature on assembly activation and performance. A low τ of 0.1 causes excessive sparsity and a winner-take-all state that ignores feature coalitions. Conversely, a high τ of 1.0 leads to redundant uniform activations that hinder specialization. The peak at τ = 0.5 represents the optimal balance between competition and collaboration.
Figure 7. Ablation study of temperature parameter ( τ ) in FCR. This chart shows the influence of temperature on assembly activation and performance. A low τ of 0.1 causes excessive sparsity and a winner-take-all state that ignores feature coalitions. Conversely, a high τ of 1.0 leads to redundant uniform activations that hinder specialization. The peak at τ = 0.5 represents the optimal balance between competition and collaboration.
Remotesensing 18 01719 g007
Figure 8. Ablation study of structural compression factor ( ρ ) in CAB. This graph illustrates performance sensitivity to the CAB pruning ratio. Increasing ρ from 0.5 to 0.7 triggers sharp mAP gains which highlights the necessity of anatomical anchors for feature extraction. The subsequent plateau beyond ρ = 0.7 suggests diminishing returns for additional parameters and confirms 0.7 as the optimal balance between efficiency and representational capacity.
Figure 8. Ablation study of structural compression factor ( ρ ) in CAB. This graph illustrates performance sensitivity to the CAB pruning ratio. Increasing ρ from 0.5 to 0.7 triggers sharp mAP gains which highlights the necessity of anatomical anchors for feature extraction. The subsequent plateau beyond ρ = 0.7 suggests diminishing returns for additional parameters and confirms 0.7 as the optimal balance between efficiency and representational capacity.
Remotesensing 18 01719 g008
Figure 9. Visual analysis of CONERSLite in typical remote sensing scenarios. Our method produces concentrated activations and stable orientations even in complex backgrounds.
Figure 9. Visual analysis of CONERSLite in typical remote sensing scenarios. Our method produces concentrated activations and stable orientations even in complex backgrounds.
Remotesensing 18 01719 g009
Figure 10. Detailed local magnified comparison of detection results. The baseline results (left) frequently suffer from missed detections (Miss Detection) and classification errors (Wrong Detection) in high-density scenes. In contrast, CONERSLite (right) shows much higher reliability and precision, accurately capturing small-scale vehicles and complex harbor structures.
Figure 10. Detailed local magnified comparison of detection results. The baseline results (left) frequently suffer from missed detections (Miss Detection) and classification errors (Wrong Detection) in high-density scenes. In contrast, CONERSLite (right) shows much higher reliability and precision, accurately capturing small-scale vehicles and complex harbor structures.
Remotesensing 18 01719 g010
Table 1. Summary of related methods in lightweight and brain-inspired detection.
Table 1. Summary of related methods in lightweight and brain-inspired detection.
CategoryCore IdeaRepresentative ModelsAdvantagesLimitations
Lightweight Design
FactorizationFactorizing standard convolutions into cheaper operators.MobileNet; ShuffleNet; GhostNetSignificant reduction in parameters and FLOPs.Static computational graph lacks input-specific adaptability.
Feature AlignmentSpecialized geometric and semantic alignment for oriented objects.LO-Det; SEMA-YOLO; MSF-SNETHigh efficiency for remote sensing oriented targets.Constant computational schedule regardless of scene density.
Adaptive EvolutionIntroducing task-specific plasticity or bio-inspired modules.BRSTD; SCM-YOLO; ECDetEnhanced small object discriminability and awareness.Hardware-fixed attention weights limit dynamic resource allocation.
Brain-Inspired
Event-Based LogicSimulating energy-efficient communication through discrete spikes.EMS-YOLO; Spiking YOLO; MSDExtreme power efficiency via sparse pulse computation.Lower precision and training instability compared to ANNs.
Selective AttentionAllocating cognitive resources to salient spatial regions.OCRA; BRSTDFocuses computation on informative object regions.Primarily adjusts weights without structural reconfiguration.
Recursive FeedbackMimicking iterative decision making through feedback loops.CORnet-S; RNN-based DetectorsAccurate spatial refinement for complex boundaries.High baseline latency due to multiple computational steps.
Connectomics-InspiredEngineering structural connectivity patterns from biological brains.BioNIC; DCN; SINEfficient balance between local and long-range processing.Complexity in designing biologically realistic topologies.
Auto and Dynamic
Dynamic RoutingAdaptive computation paths via input dynamics.Dynamic DETR; Zoom-In NetsFilters background and saves computations.Complex controllers.
Architectural SearchAutomating macro/micro structural combinations.NAS-FCOS; SM-NASDominates manual architecture efficiency.High search cost.
Macroscopic DynamicsMapping systemic brain dynamics mapping.Zheng et al. [41]; Xia et al. [43]Robustness under extreme constraints.Hardware coupling.
Table 2. Mapping between biological connectomics principles and engineering implementations in CONERSLite.
Table 2. Mapping between biological connectomics principles and engineering implementations in CONERSLite.
Biological PrincipleModuleEngineering Implementation
Anatomical Connectome (stable wiring)CABLow-rank bottleneck with residual connections and DWConv
Axonal Volume ConstraintCAB ( ρ )Rank-constrained projection P K via 1 × 1 Conv with reduced channels
Functional Connectome (plastic wiring)FCRParallel neural assemblies with dynamic routing
Neuronal Group SelectionFCR (BSG)Boltzmann Selection Gate (temperature-controlled Softmax)
Somatic Selection/Firing DecisionFCR ( g i )Gumbel-Softmax differentiable binary gate
Metabolic Cost of Synaptic Transmission C i FLOPs-normalized cost + KL sparsity penalty
Fisher’s Fundamental TheoremTrainingReplicator dynamics ensuring non-decreasing mean fitness
Table 3. Pseudocode for the CONERSLite inference procedure.
Table 3. Pseudocode for the CONERSLite inference procedure.
CONERSLite Forward Pass
Input: Image I R 3 × H × W , temperature τ
Output: Detection results { b j , c j , θ j } j = 1 N d e t
// Stage 1: Compact Anatomical Backbone (CAB)
1: F m u l t i = { F 1 , F 2 , F 3 , F 4 } Multi-scale features
2: for each stage l = 1 , , 4  do
3:     h l o w W d o w n ( l ) · F l       // Down-project to rank r = ρ C
4:     h s p a t i a l DWConv ( SiLU ( BN ( h l o w ) ) )    // Spatial filtering
5:     F l F l + W u p ( l ) · h s p a t i a l    // Residual up-project
6: end for
// Stage 2: Functional Connectome Router (FCR)
7: z GAP ( F l )    // Global context vector
8: ϕ MLP ( z ) R N a s m    // Fitness logits
9: g * Softmax ( ϕ / τ )    // Boltzmann selection weights
10: for each assembly i = 1 , , N a s m  do
11:     y i A i ( F l )    // Expert feature extraction
12: end for
13: F o u t i = 1 N a s m g i * · y i    // Weighted aggregation
// Stage 3: Detection Head
14: { b j , c j , θ j } DetectionHead ( F o u t )
Table 4. Complete performance and efficiency comparison with existing SOTA models on DOTA-v1.0 dataset. Our method achieves superior performance especially in oriented and small objects.
Table 4. Complete performance and efficiency comparison with existing SOTA models on DOTA-v1.0 dataset. Our method achieves superior performance especially in oriented and small objects.
MethodPre.mAP#PGFLOPsPLBDBRGTFSVLVSHTCBCSTSBFRAHASPHC
Single-Scale
EMO2-DETR [45]IN70.9174.3 M304 G87.9979.4645.7466.6478.9073.9073.3090.4080.5585.8955.1963.6251.8370.1560.04
CenterMap [46]IN71.5941.1 M198 G89.0280.5649.4161.9877.9974.1983.7489.4478.0183.5247.6465.9363.6867.0761.59
AO2-DETR [47]IN72.1574.3 M304 G86.0175.9246.0266.6579.7079.9389.1790.4481.1976.0056.9162.4564.2265.8058.96
SCRDet [48]IN72.6141.9 M89.9880.6552.0968.3668.3660.3272.4190.8587.9486.8665.0266.6866.2568.2465.21
R3Det [49]IN73.7041.9 M336 G89.5081.2050.5066.1070.9078.7078.2090.8085.3084.2061.8063.8068.2069.8067.20
RoI Trans. [50]IN74.0555.1 M200 G89.0177.4851.6472.0774.4377.5587.7690.8179.7185.2758.3664.1176.5071.9954.06
S2ANet [51]IN74.1238.5 M89.1182.8448.3771.1178.1178.3987.2590.8384.9085.6460.3662.6065.2669.1357.94
SASM [52]IN74.9236.6 M86.4278.9752.4769.8477.3075.9986.7290.8982.6385.6660.1368.2573.9872.2262.37
G.V. [53]IN75.0241.1 M198 G89.6485.0052.2677.3473.0173.1486.8290.7479.0286.8159.5570.9172.9470.8657.32
O-RCNN [54]IN75.8741.1 M199 G89.4682.1254.7870.8678.9383.0088.2090.9087.5084.6863.9767.6974.6484.9352.28
ReDet [55]IN76.2531.6 M88.7982.6453.9774.0078.1384.0688.0490.8987.7885.7561.7660.3975.9668.0763.59
R3Det-GWD [56]IN76.3441.9 M336 G88.8282.9455.6372.7578.5283.1087.4690.2186.3685.4464.7061.4173.4676.9457.38
COBB [57]IN76.5241.9 M
R3Det-KLD [58]IN77.3641.9 M336 G88.9084.1755.8069.3578.7284.0887.0089.7584.3285.7364.7461.8076.6278.4970.89
ARC [59]IN77.3574.4 M217 G89.4082.4855.3373.8879.3784.0588.0690.9086.4484.8363.6370.3274.2971.9165.43
LSKNet-S [60]IN77.4931.0 M161 G89.6685.5257.7275.7074.9578.6988.2490.8886.7986.3866.9263.7777.7774.4764.82
PKINet-S [61]IN78.3930.8 M190 G89.7284.2055.8177.6380.2584.4588.1290.8887.5786.0766.8670.2377.4773.6262.94
O2DNet [62]71.0189.3682.1847.3161.2471.3374.0278.6490.8182.2381.4260.9060.2258.2167.0261.04
CFC-Net [63]73.5289.1380.4452.4170.0476.3178.1487.2390.9284.5485.6160.5161.5367.8268.0150.15
CBDA-Net [64]75.7489.2485.9450.3265.0177.7182.3387.9390.5286.5185.9066.9266.5167.4371.3262.91
CoF-Net [65]77.2189.683.1248.3173.6478.2383.0486.7290.2482.3286.6167.6164.6374.7071.3278.42
Strip R-CNN-S [12]IN80.0630 M88.9186.3857.4476.3779.7384.3888.2590.8686.7187.4569.8966.8279.2582.9175.58
MTP (base detector) [44]IN79.03110.8 M543 G89.8785.0958.2771.7081.7087.1088.9891.4485.4186.4557.4468.4778.4282.9771.71
CONERSLite (Ours)IN79.5728.3 M195 G89.5585.1261.2072.4581.8886.9588.7690.9285.4486.3560.5069.4579.1283.1572.68
Multi-Scale
CSL [66]IN76.1737.4 M236 G90.2585.5354.6475.3170.4473.5177.6290.8486.1586.6969.6068.0473.8371.1068.93
CFA [67]IN76.6789.0883.2054.3766.8781.2380.9687.1790.2184.3286.0952.3469.9475.5280.7667.96
DAFNeT [68]IN76.9589.4086.2753.7060.5182.0481.1788.6690.3783.8187.2753.9369.3875.6181.2670.86
DODet [69]IN80.6289.9685.5258.0181.2278.7185.4688.5990.8987.1287.8070.5071.5482.0677.4374.47
AOPG [70]IN80.6689.8885.5760.9081.5178.7085.2988.8590.8987.6087.6571.6668.6982.3177.3273.10
KFIoU [59]IN80.9358.8 M206 G89.4484.4162.2282.5180.1086.0788.6890.9087.3288.3872.8071.9578.9674.9575.27
RTMDet-R [71]CO81.3352.3 M205 G88.0186.1758.5482.4481.3084.8288.7190.8988.7787.3771.9671.1881.2381.4077.13
RVSA [72]MA81.24114.4 M414 G88.9785.7661.4681.2779.9885.3188.3090.8485.0687.5066.7773.1184.7581.8877.58
LSKNet-S [60]IN81.6431.0 M161 G89.5786.3463.1383.6782.2086.1088.6690.8988.4187.4271.7269.5878.8881.7776.52
FR-O [73]54.1179.4277.1317.7264.1435.3238.0137.2689.4369.6259.3450.3052.9347.9147.4346.31
CAD-Net [74]69.9687.8282.4149.4373.5171.1363.5276.6290.9179.2373.3348.4460.9262.0367.0162.24
APE [75]75.8190.0183.6553.4376.0274.0177.2779.5390.8287.2784.5167.7260.3174.6071.8465.62
SCRDet [48]72.6390.0180.7152.1468.4368.4260.3272.4490.9287.9486.9665.0266.7366.3168.2365.21
Strip R-CNN-S [12]IN82.2830 M89.1785.5762.4083.7181.9386.5888.8490.8687.9787.9172.0771.8879.2582.4582.82
CONERSLite (Ours)IN82.3528.3 M195 G90.1586.2061.5083.1582.5586.4088.8590.9288.1086.8572.4574.2082.1583.8577.95
Table 5. Direct comparison with lightweight detectors and the base detector on DOTA-v1.0. EfficientDet-D0 is a horizontal detector with no native OBB support. † Results under multi-scale evaluation. All oriented models are evaluated under single-scale unless noted.
Table 5. Direct comparison with lightweight detectors and the base detector on DOTA-v1.0. EfficientDet-D0 is a horizontal detector with no native OBB support. † Results under multi-scale evaluation. All oriented models are evaluated under single-scale unless noted.
Method#PGFLOPsmAP@0.5 mAP@0.5:0.95
EfficientDet-D0 [15]3.9 M2.5 GN/A (HBB)
YOLOv8n-obb3.11 M23.3 G78.0
RTMDet-R-tiny [71]4.88 M20.45 G75.36
RTMDet-R-tiny † [71]4.88 M20.45 G79.82
MTP (base detector) [44]110.8 M543 G79.0347.42
CONERSLite (Ours)28.3 M195 G79.5746.71
Table 6. Comparison with SOTA methods on HRSC2016 datasets. CONERSLite achieves the best accuracy with the lowest parameters and FLOPs.
Table 6. Comparison with SOTA methods on HRSC2016 datasets. CONERSLite achieves the best accuracy with the lowest parameters and FLOPs.
MethodPre.mAP (07) mAP (12) #PGFLOPs
DRN [76]IN92.70
CenterMap [46]IN92.8041.1 M198 G
RoI Trans. [50]IN86.2055.1 M200 G
G.V. [53]IN88.2041.1 M198 G
R3Det [49]IN89.2696.0141.9 M336 G
DAL [77]IN89.7736.4 M216 G
GWD [56]IN89.8597.3747.4 M456 G
S2ANet [51]IN90.1795.0138.6 M198 G
AOPG [70]IN90.3496.22
ReDet [55]IN90.4697.6331.6 M
O-RCNN [54]IN90.5097.6041.1 M199 G
RTMDet [71]CO90.6097.1052.3 M205 G
MTP [44]IN110.8 M543 G
CONERSLite (Ours)IN90.6598.6228.3 M195 G
Table 7. Comparison with SOTA methods on DIOR-R datasets. CONERSLite outperforms all competitors.
Table 7. Comparison with SOTA methods on DIOR-R datasets. CONERSLite outperforms all competitors.
MethodPre.#PGFLOPsmAP (%)
RetinaNet-O [78]IN57.55
Faster RCNN-O [79]IN41.1 M198 G59.54
TIOE-Det [80]IN41.1 M198 G61.98
O-RCNN [54]IN41.1 M199 G64.30
ARS-DETR [81]IN41.1 M198 G66.12
O-RepPoints [82]IN36.6 M66.71
DCFL [83]IN66.80
LSKNet-S [60]IN31.0 M161 G65.90
PKINet-S [61]IN30.8 M190 G67.03
CONERSLite (Ours)IN28.3 M195 G69.68
Note: LSKNet S and PKINet S are general purpose backbones. The results reported on DIOR R represent their full detector performance when combined with mainstream heads (e.g., Oriented RCNN) to ensure end-to-end fairness with CONERSLite. Specific implementation details are available in their original papers and source code.
Table 8. Ablation study of core components (CAB and FCR) with inference speed. All variants are evaluated on a single RTX 4090 under identical settings. Removing key components leads to consistent performance drops, confirming their individual contributions.
Table 8. Ablation study of core components (CAB and FCR) with inference speed. All variants are evaluated on a single RTX 4090 under identical settings. Removing key components leads to consistent performance drops, confirming their individual contributions.
VariantmAP#PGFLOPsFPS
CONERSLite (Full Model)79.5728.3195.0103
Only CAB (w/o FCR)75.1225.7168.0125
Only FCR (MobileNetV3 Backbone)74.8629.1212.088
Static Variant (w/o CAB and FCR)71.3927.5183.0118
Table 9. Ablation study of core components under multi-scale training. Both CAB and FCR contribute significantly to performance improvements, especially for small target detection.
Table 9. Ablation study of core components under multi-scale training. Both CAB and FCR contribute significantly to performance improvements, especially for small target detection.
VariantOverall mAPSmall Target AP
CONERSLite (Full Model)82.3575.32
w/o FCR (Only CAB)77.8968.45
w/o CAB (MobileNetV3 + FCR)77.5667.91
Table 10. Ablation study of key design details in FCR with inference speed. Replacing core design elements leads to performance degradation, confirming the effectiveness of our architectural choices.
Table 10. Ablation study of key design details in FCR with inference speed. Replacing core design elements leads to performance degradation, confirming the effectiveness of our architectural choices.
VariantmAP#PGFLOPsFPS
Full FCR (Ours)79.5728.3195.0103
FCR w/ LAP instead of GAP77.1328.3192.0105
FCR w/ Single Neural Assembly75.6826.5165.0132
FCR w/ Standard Softmax ( τ = 1.0 )78.0528.3195.0103
Table 11. Ablation study of the number of neural assemblies ( N a s m ) in FCR. The number of assemblies significantly affects both performance and computational efficiency, with 6 assemblies providing the best trade-off.
Table 11. Ablation study of the number of neural assemblies ( N a s m ) in FCR. The number of assemblies significantly affects both performance and computational efficiency, with 6 assemblies providing the best trade-off.
VariantmAP#PGFLOPsFPS
N a s m = 2 76.2326.8172.0128
N a s m = 4 78.4527.6185.0115
N a s m = 6 (Ours)79.5728.3195.0103
N a s m = 8 79.6329.5210.092
N a s m = 10 79.5130.8228.081
Table 12. Ablation study of temperature parameter ( τ ) in FCR. The temperature parameter controls assembly activation sparsity, with τ = 0.5 providing optimal performance.
Table 12. Ablation study of temperature parameter ( τ ) in FCR. The temperature parameter controls assembly activation sparsity, with τ = 0.5 providing optimal performance.
VariantmAP S ( G ) GFLOPs
τ = 0.1 75.891.2195.0
τ = 0.3 78.922.1195.0
τ = 0.5 (Ours)79.572.8195.0
τ = 0.7 79.213.5195.0
τ = 1.0 78.654.3195.0
Table 13. Ablation study of structural compression factor ( ρ ) in CAB. The compression factor controls the pruning ratio, with ρ = 0.7 providing the best accuracy–efficiency trade-off.
Table 13. Ablation study of structural compression factor ( ρ ) in CAB. The compression factor controls the pruning ratio, with ρ = 0.7 providing the best accuracy–efficiency trade-off.
Variant R prune mAP#PGFLOPs
ρ = 0.5 50%74.3622.1142.0
ρ = 0.6 40%76.8924.5163.0
ρ = 0.7 (Ours)30%79.5728.3195.0
ρ = 0.8 20%79.6233.7238.0
ρ = 0.9 10%79.7039.2281.0
Table 14. Ablation study of CAB internal sub-components. Each row isolates one structural element to quantify its independent contribution to accuracy and efficiency. The upper group ablates architectural design choices, while the lower group (below the mid-rule) ablates fundamental operators ( σ ( · ) and normalization).
Table 14. Ablation study of CAB internal sub-components. Each row isolates one structural element to quantify its independent contribution to accuracy and efficiency. The upper group ablates architectural design choices, while the lower group (below the mid-rule) ablates fundamental operators ( σ ( · ) and normalization).
VariantmAP#PGFLOPsFPS
Full CAB (Ours)79.5728.3195.0103
Standard  3 × 3  Conv (no bottleneck)78.9135.6252.076
w/o Residual Connection77.2328.3195.0102
w/o Low-rank Projection ( r = C )79.1433.1231.084
Standard Conv (no DWConv)79.7135.2267.091
ReLU activation (replace SiLU)78.7428.3195.0105
GELU activation (replace SiLU)79.3228.3195.0102
w/o BatchNorm76.6628.2194.8106
GroupNorm ( G = 32 , replace BN)79.2128.3195.097
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Tang, L.; Zhong, S.; Gao, W.; Liu, J.; Xie, Y.; Hu, Y.; Ma, W.; Wei, Y.; Guo, Y. Darwinian Wiring: A Connectome-Constrained Structural Plasticity Framework for Extreme Model Compression. Remote Sens. 2026, 18, 1719. https://doi.org/10.3390/rs18111719

AMA Style

Tang L, Zhong S, Gao W, Liu J, Xie Y, Hu Y, Ma W, Wei Y, Guo Y. Darwinian Wiring: A Connectome-Constrained Structural Plasticity Framework for Extreme Model Compression. Remote Sensing. 2026; 18(11):1719. https://doi.org/10.3390/rs18111719

Chicago/Turabian Style

Tang, Lixing, Shaohong Zhong, Wentao Gao, Jialang Liu, Yuhang Xie, Yaowen Hu, Wanqi Ma, Yingmei Wei, and Yanming Guo. 2026. "Darwinian Wiring: A Connectome-Constrained Structural Plasticity Framework for Extreme Model Compression" Remote Sensing 18, no. 11: 1719. https://doi.org/10.3390/rs18111719

APA Style

Tang, L., Zhong, S., Gao, W., Liu, J., Xie, Y., Hu, Y., Ma, W., Wei, Y., & Guo, Y. (2026). Darwinian Wiring: A Connectome-Constrained Structural Plasticity Framework for Extreme Model Compression. Remote Sensing, 18(11), 1719. https://doi.org/10.3390/rs18111719

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop