awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 个仓库

Awesome GitHub RepositoriesPatch Embedding Modules

Components that convert two-dimensional image data into flattened sequences for transformer processing.

Distinct from Image Patch Embedders: Distinct from Image Patch Embedders: focuses on the specific module implementation for sequence conversion.

Explore 6 awesome GitHub repositories matching artificial intelligence & ml · Patch Embedding Modules. Refine with filters or upvote what's useful.

Awesome Patch Embedding Modules GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • lucidrains/vit-pytorchlucidrains 的头像

    lucidrains/vit-pytorch

    25,363在 GitHub 上查看↗

    This library provides a comprehensive collection of modular building blocks and research-backed architectures for implementing vision transformers within the PyTorch framework. It serves as a centralized repository for constructing, training, and analyzing attention-based models, offering a wide array of specialized variants designed for image classification and visual representation learning. The project distinguishes itself through a focus on architectural efficiency and flexibility, supporting diverse input formats including non-square images and volumetric data like video. It incorporates

    Converts raw image pixels into linear token sequences by dividing input data into fixed-size patches for transformer processing.

    Python
    在 GitHub 上查看↗25,363
  • google-research/vision_transformergoogle-research 的头像

    google-research/vision_transformer

    12,584在 GitHub 上查看↗

    This project is a research library and toolkit for deep learning computer vision, focused on implementing transformer and mixer-based architectures for image classification. It processes visual data by converting images into sequences of patches, allowing standard attention mechanisms to capture global dependencies without relying on traditional convolutional operations. The framework distinguishes itself through its support for multimodal embedding analysis, which maps images and text into a shared latent vector space. This capability enables zero-shot classification and cross-modal retrieva

    Converts two-dimensional image data into a linear sequence of flattened patches for transformer attention mechanisms.

    Jupyter Notebook
    在 GitHub 上查看↗12,584
  • facebookresearch/convnextfacebookresearch 的头像

    facebookresearch/ConvNeXt

    6,388在 GitHub 上查看↗

    Code release for ConvNeXt model

    Replaces standard patch embedding with a convolutional layer processing overlapping image patches.

    Python
    在 GitHub 上查看↗6,388
  • ai-dawang/plugnplay-modulesai-dawang 的头像

    ai-dawang/PlugNPlay-Modules

    4,968在 GitHub 上查看↗

    PlugNPlay-Modules is a collection of reusable PyTorch computer vision modules and deep learning architectural components. It provides a library of standardized building blocks for constructing neural networks, focusing on attention mechanisms, signal processing layers, and feature fusion modules. The project is distinguished by its extensive variety of attention primitives, covering spatial, channel, and temporal weighting, as well as specialized variants like deformable, frequency-enhanced, and linear-complexity attention. It also implements advanced signal processing tools within the neural

    Provides patch embedding modules that convert 2D image data into flattened sequences for transformer architectures.

    Python
    在 GitHub 上查看↗4,968
  • facebookresearch/deitfacebookresearch 的头像

    facebookresearch/deit

    4,348在 GitHub 上查看↗

    DeiT 是一个专为图像分类设计的 PyTorch Vision Transformer 框架。它实现了一种基于 Transformer 的架构,使用自注意力层和位置感知序列建模而不是卷积滤波器,将图像处理为扁平化补丁序列。 该项目专注于通过知识蒸馏框架进行数据高效训练。该系统允许学生模型模仿高性能教师模型的软标签,以提高准确性和泛化能力,特别是在较小数据集上进行训练时。 该库涵盖了完整的开发生命周期,包括图像分类训练、交叉熵损失优化以及部署预训练权重进行推理。它还包括一个基准测试工具,用于评估模型在标准数据集上的性能和准确性。

    Provides modules to convert images into flattened patch sequences for transformer-based processing.

    Python
    在 GitHub 上查看↗4,348
  • nvlabs/segformerNVlabs 的头像

    NVlabs/SegFormer

    3,347在 GitHub 上查看↗

    SegFormer is a semantic segmentation framework and transformer-based model designed for pixel-level image classification. It provides a deep learning architecture that assigns class labels to pixels using a hierarchical transformer encoder and a multi-layer perceptron decoder. The framework utilizes a hierarchical transformer encoder to process multi-scale features through a pyramid of blocks and an all-MLP decoder to aggregate these features without complex attention mechanisms. It incorporates overlap patch embedding to preserve local continuity and sequential self-attention reduction to ma

    Incorporates overlap patch embedding to preserve local continuity and reduce boundary artifacts during tokenization.

    Pythonade20kcityscapessemantic-segmentation
    在 GitHub 上查看↗3,347
  1. Home
  2. Artificial Intelligence & ML
  3. Image Convolution Operations
  4. Image Patch Embedders
  5. Patch Embedding Modules

探索子标签

  • Overlap Patch EmbeddingsEmbedding modules that divide images into overlapping patches to preserve local continuity and reduce boundary artifacts. **Distinct from Patch Embedding Modules:** Specifically implements overlapping patches to avoid boundary artifacts, whereas general patch embedding may use non-overlapping grids.