paper-with-me

Papers

RepViT: Revisiting Mobile CNN From ViT Perspective

2023-07-18 · CVPR 2024 1 · Ao Wang, Hui Chen, Zijia Lin, Jungong Han, Guiguang Ding

Recently, lightweight Vision Transformers (ViTs) demonstrate superior performance and lower latency, compared with lightweight Convolutional Neural Networks (CNNs), on resource-constrained mobile devices. Researchers have discovered many structural connections between lightweight ViTs and lightweight CNNs. However, the notable architectural disparities in the block structure, macro, and micro designs between them have not been adequately examined. In this study, we revisit the efficient design of lightweight CNNs from ViT perspective and emphasize their promising prospect for mobile devices. Specifically, we incrementally enhance the mobile-friendliness of a standard lightweight CNN, \ie, MobileNetV3, by integrating the efficient architectural designs of lightweight ViTs. This ends up with a new family of pure lightweight CNNs, namely RepViT. Extensive experiments show that RepViT outperforms existing state-of-the-art lightweight ViTs and exhibits favorable latency in various vision tasks. Notably, on ImageNet, RepViT achieves over 80\% top-1 accuracy with 1.0 ms latency on an iPhone 12, which is the first time for a lightweight model, to the best of our knowledge. Besides, when RepViT meets SAM, our RepViT-SAM can achieve nearly 10$\times$ faster inference than the advanced MobileSAM. Codes and models are available at \url{https://github.com/THU-MIG/RepViT}.

📄 PDF Abstract BibTeX arXiv:2307.09283

Code (8)

2023-MindSpore-4/Code10/tree/main/VIT mindspore
2023-MindSpore-4/Code12/tree/main/MindFormers/vit mindspore
2023-MindSpore-4/Code9/tree/main/VIT mindspore
THU-MIG/RepViT pytorch
jameslahm/RepViT pytorch
leondgarse/keras_cv_attention_models/tree/main/keras_cv_attention_models/repvit tf
rwightman/pytorch-image-models pytorch
https://gitlab.com/birder/birder pytorch

Methods 이 논문이 사용한 방법론

SAM 설명 없음
Depthwise Convolution Depthwise Convolution is a type of convolution where we apply a single convolutional filter for each input channel. In the regular 2D…
Pointwise Convolution Pointwise Convolution is a type of convolution that uses a 1x1 kernel: a kernel that iterates through every single point. This…
Depthwise Separable Convolution While standard convolution performs the channelwise and spatial-wise computation in one step, Depthwise Separable Convolution
ReLU6 ReLU6 is a modification of the rectified linear unit where we limit the activation to a maximum size of $6$. This is due to increased…
Dense Connections Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output…
Sigmoid Activation 설명 없음
Batch Normalization 설명 없음

Similar Papers 제목 키워드 기반

RepViT-SAM: Towards Real-Time Segmenting Anything

2023-12-10 · Ao Wang, Hui Chen, Zijia Lin, Jungong Han 외

Segment Anything Model (SAM) has shown impressive zero-shot transfer performance for various computer vision tasks recently. However, its heavy computation costs remain daunting for practical applications. MobileSAM prop…

Multi-Teacher Contrastive Distillation for Edge-Efficient Pathology Foundation Models

2026-07-06 · Tim Lenz, Maurice Heide, Marco Gustav, Nic G. Reitsam 외 arxiv

Computational pathology foundation models (PFMs) have advanced whole-slide image analysis. However, their size and inference cost hinder local deployment in pathology departments. We propose MuCoDi, a pretraining framewo…

RepViT-CXR: A Channel Replication Strategy for Vision Transformers in Chest X-ray Tuberculosis and Pneumonia Classification

2025-09-10 · Faisal Ahmed arxiv

Chest X-ray (CXR) imaging remains one of the most widely used diagnostic tools for detecting pulmonary diseases such as tuberculosis (TB) and pneumonia. Recent advances in deep learning, particularly Vision Transformers …

Pneumonia Detection

Revisiting Lightweight Low-Light Image Enhancement: From a YUV Color Space Perspective

2026-01-24 · Hailong Yan, Shice Liu, Xiangtao Zhang, Lujian Yao 외 arxiv

In the current era of mobile internet, Lightweight Low-Light Image Enhancement (L3IE) is critical for mobile devices, which faces a persistent trade-off between visual quality and model compactness. While recent methods …

Low-Light Image Enhancement

RepNeXt: A Fast Multi-Scale CNN using Structural Reparameterization

2024-06-23 · Mingshu Zhao, Yi Luo, Yong Ouyang

In the realm of resource-constrained mobile vision tasks, the pursuit of efficiency and performance consistently drives innovation in lightweight Convolutional Neural Networks (CNNs) and Vision Transformers (ViTs). While…