Highlight

Arbitrary Style Transfer in Real-Time with Adaptive Instance Normalization

Introduces adaptive instance normalization (AdaIN), enabling arbitrary neural style transfer in real time with a single feed-forward network.

Gatys et al.'s neural style transfer renders a content image in another's style but relies on slow iterative optimization. Fast feed-forward methods speed this up but are tied to fixed styles. The paper presents a simple approach that for the first time enables arbitrary style transfer in real time. Its core is an adaptive instance normalization (AdaIN) layer that aligns content feature mean and variance to style features. It matches the fastest method's speed without predefined styles, and allows content-style trade-off, interpolation, and spatial control from one network.

Based on: Arbitrary Style Transfer in Real-Time with Adaptive Instance Normalization · IEEE International Conference on Computer Vision

Curated by Aramai Editorial

Read summary →
Highlight

Cascade R-CNN: Delving Into High Quality Object Detection

Introduces Cascade R-CNN, a multi-stage detector trained with increasing IoU thresholds for high-quality object detection with fewer false positives.

An IoU threshold defines positives and negatives, but training at a low threshold (0.5) yields noisy detections while raising it degrades performance, due to overfitting from vanishing positives and inference IoU mismatch. Cascade R-CNN chains detectors trained at increasing IoU thresholds, each more selective against false positives. Each stage's output is a good training set for the next, and resampling keeps positive sets equal-sized to curb overfitting; the cascade also runs at inference. It beats single-model detectors on COCO and generalizes across architectures.

Based on: Cascade R-CNN: Delving Into High Quality Object Detection · 2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition

Curated by Aramai Editorial

Read summary →
Highlight

LightGCN: Simplifying and Powering Graph Convolution Network for Recommendation

Proposes LightGCN, simplifying graph convolution for recommendation to neighborhood aggregation only, dropping feature transformation and nonlinearity.

Graph Convolution Networks (GCN) are state-of-the-art for collaborative filtering, but why they work is not well understood. The authors empirically find GCN's two common designs—feature transformation and nonlinear activation—add little and even hurt training. They propose LightGCN, keeping only neighborhood aggregation: embeddings are learned by linearly propagating on the interaction graph, with the final embedding a weighted sum across layers. This simple linear model is easier to train and gives ~16% average relative improvement over NGCF under identical settings.

Based on: LightGCN: Simplifying and Powering Graph Convolution Network for Recommendation · Annual International ACM SIGIR Conference on Research and Development in Information Retrieval

Curated by Aramai Editorial

Read summary →
Highlight

A Review of Recurrent Neural Networks: LSTM Cells and Network Architectures

A review of LSTM cells and their variants, categorizing LSTM network architectures and surveying applications and future research directions.

Recurrent neural networks are widely used for sequential data such as text, audio, and video, but RNNs built from sigma or tanh cells cannot learn relevant information when the input gap is large. By introducing gate functions into the cell, the long short-term memory (LSTM) handles long-term dependencies well, and most notable RNN results have since relied on it. This review examines the LSTM cell and its variants, divides LSTM networks into LSTM-dominated and integrated categories, discusses applications, and outlines future research directions.

Based on: A Review of Recurrent Neural Networks: LSTM Cells and Network Architectures · Neural Computation

Curated by Aramai Editorial

Read summary →
Highlight

LSTM: A Search Space Odyssey

Presents the first large-scale analysis of eight LSTM variants on three tasks, finding the forget gate and output activation most critical.

Since the LSTM's 1995 inception, many variants have become state-of-the-art, raising interest in which components matter. This paper reports the first large-scale comparison of eight LSTM variants on speech recognition, handwriting recognition, and polyphonic music modeling. Hyperparameters were tuned per task by random search and ranked by functional ANOVA, over 5400 runs (~15 years of CPU time). No variant significantly beats the standard LSTM; the forget gate and output activation are its most critical components, and its hyperparameters are largely independent.

Based on: LSTM: A Search Space Odyssey · IEEE Transactions on Neural Networks and Learning Systems

Curated by Aramai Editorial

Read summary →
Highlight

ImageJ2: ImageJ for the next generation of scientific image data

Describes ImageJ2, a rewrite of ImageJ with a redesigned plugin framework that decouples data from UI and supports large N-dimensional datasets.

ImageJ is a widely used image analysis program in biology, valued for its ease of use, macro language, and extensible plugins. A growing user base and technical limits revealed a need for a concerted software engineering effort. The authors rewrote the entire codebase into ImageJ2, with a redesigned plugin mechanism enabling extensibility at every level. It decouples the data model from the user interface, emphasizes interoperability, and supports arbitrarily large N-dimensional data. Backwards compatibility with the classic interface lets users migrate at their own pace.

Based on: ImageJ2: ImageJ for the next generation of scientific image data · BMC Bioinformatics

Curated by Aramai Editorial

Read summary →
Highlight

Distance-IoU Loss: Faster and Better Learning for Bounding Box Regression

Proposes Distance-IoU and Complete-IoU losses for bounding box regression, speeding convergence and improving accuracy in object detectors.

Bounding box regression is crucial in object detection, yet the common ln-norm loss is not tailored to the IoU metric, and prior IoU and generalized IoU (GIoU) losses converge slowly and regress inaccurately. This paper proposes a Distance-IoU (DIoU) loss adding the normalized distance between predicted and target boxes, converging faster than IoU and GIoU. Summarizing three geometric factors, overlap area, central point distance, and aspect ratio, it further proposes a Complete-IoU (CIoU) loss. Integrated into YOLO v3, SSD, Faster R-CNN, and NMS, they yield notable gains.

Based on: Distance-IoU Loss: Faster and Better Learning for Bounding Box Regression · AAAI Conference on Artificial Intelligence

Curated by Aramai Editorial

Read summary →
Highlight

Qwen3 Technical Report

Presents Qwen3, a family of dense and MoE LLMs (0.6-235B) unifying thinking and non-thinking modes with an adaptive thinking-budget mechanism.

Qwen3 is the latest Qwen family of LLMs, spanning dense and Mixture-of-Expert architectures from 0.6 to 235 billion parameters. Its key innovation unifies a 'thinking' mode for multi-step reasoning and a 'non-thinking' mode for fast responses in one framework, with a thinking-budget mechanism that adaptively allocates inference compute. Knowledge from flagship models cuts the cost of building smaller ones. Qwen3 reaches state-of-the-art results on code, math, and agent benchmarks, expands multilingual support from 29 to 119 languages, and is released under Apache 2.0.

Based on: Qwen3 Technical Report · arXiv

Curated by Aramai Editorial

Read summary →
Highlight

LAION-5B: An open large-scale dataset for training next generation image-text models

Introduces LAION-5B, an openly available dataset of 5.85 billion CLIP-filtered image-text pairs for training large-scale language-vision models.

Language-vision models like CLIP and DALL-E showed the value of training on large noisy image-text data without expensive labels, enabling text-guided generation, zero-shot classification, and robustness. Studying such models needs datasets with billions of pairs, but none this large were openly available. The authors present LAION-5B, 5.85 billion CLIP-filtered image-text pairs, 2.32B English. They show replication and fine-tuning of CLIP, GLIDE, and Stable Diffusion, and provide nearest-neighbor indices, a web interface, and watermark, NSFW, and toxicity detection scores.

Based on: LAION-5B: An open large-scale dataset for training next generation image-text models · Neural Information Processing Systems

Curated by Aramai Editorial

Read summary →
Highlight

Spectral Normalization for Generative Adversarial Networks

Proposes spectral normalization, a lightweight weight-normalization technique that stabilizes GAN discriminator training and improves image quality.

Training instability is a key challenge for generative adversarial networks. This paper proposes spectral normalization, a novel weight normalization technique that stabilizes training of the discriminator. The method is computationally light and easy to add to existing implementations. Tested on CIFAR-10, STL-10, and ILSVRC2012, spectrally normalized GANs (SN-GANs) generate images of better or equal quality compared to previous training stabilization techniques.

Based on: Spectral Normalization for Generative Adversarial Networks · International Conference on Learning Representations

Curated by Aramai Editorial

Read summary →
Highlight

NCBI prokaryotic genome annotation pipeline

Describes NCBI's Prokaryotic Genome Annotation Pipeline (PGAP), combining homology-based evidence with ab initio gene prediction across prokaryotes.

Large-scale sequencing of pathogen populations and prokaryotic diversity studies demand comprehensive automatic genome annotation. NCBI, with Georgia Tech, built a pipeline combining alignment-based methods with prediction of protein-coding and RNA genes directly from sequence. Its gene finder, GeneMarkS+, uses combined protein and RNA homology placement as an initial map to refine ab initio predictions genome-wide. PGAP leans on sequence similarity when confident comparative data exist and on statistical predictions otherwise, across the breadth of prokaryotic taxonomy.

Based on: NCBI prokaryotic genome annotation pipeline · Nucleic Acids Research

Curated by Aramai Editorial

Read summary →
Highlight

Image Super-Resolution Using Very Deep Residual Channel Attention Networks

Proposes RCAN, a very deep residual channel attention network for image super-resolution using residual-in-residual structure and channel attention.

CNN depth is crucial for image super-resolution, but deeper networks are harder to train, and treating low-frequency information equally across channels limits representation. The authors propose very deep residual channel attention networks (RCAN). A residual-in-residual (RIR) structure stacks residual groups with long skip connections, letting low-frequency information bypass so the network focuses on high-frequency detail. A channel attention mechanism rescales channel-wise features. Experiments show RCAN beats state-of-the-art methods in accuracy and visual quality.

Based on: Image Super-Resolution Using Very Deep Residual Channel Attention Networks · European Conference on Computer Vision

Curated by Aramai Editorial

Read summary →