awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 repositorios

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • lucidrains/vit-pytorchAvatar de lucidrains

    lucidrains/vit-pytorch

    25,363Ver en 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
    Ver en GitHub↗25,363
  • google-research/vision_transformerAvatar de google-research

    google-research/vision_transformer

    12,584Ver en 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
    Ver en GitHub↗12,584
  • facebookresearch/convnextAvatar de facebookresearch

    facebookresearch/ConvNeXt

    6,388Ver en GitHub↗

    Code release for ConvNeXt model

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

    Python
    Ver en GitHub↗6,388
  • ai-dawang/plugnplay-modulesAvatar de ai-dawang

    ai-dawang/PlugNPlay-Modules

    4,968Ver en 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
    Ver en GitHub↗4,968
  • facebookresearch/deitAvatar de facebookresearch

    facebookresearch/deit

    4,348Ver en GitHub↗

    DeiT es un framework de vision transformer para PyTorch diseñado para la clasificación de imágenes. Implementa una arquitectura basada en transformers que procesa imágenes como secuencias de parches aplanados utilizando capas de auto-atención (self-attention) y modelado de secuencias consciente de la posición en lugar de filtros convolucionales. El proyecto se centra en el entrenamiento eficiente en datos a través de un framework de destilación de conocimiento. Este sistema permite que un modelo estudiante imite las etiquetas blandas (soft labels) de un modelo profesor de alto rendimiento para mejorar la precisión y la generalización, particularmente cuando se entrena con conjuntos de datos más pequeños. La librería cubre el ciclo de vida completo de desarrollo, incluyendo el entrenamiento de clasificación de imágenes, la optimización de la pérdida de entropía cruzada y el despliegue de pesos preentrenados para inferencia. También incluye una herramienta de benchmarking para evaluar el rendimiento y la precisión del modelo frente a conjuntos de datos estándar.

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

    Python
    Ver en GitHub↗4,348
  • nvlabs/segformerAvatar de NVlabs

    NVlabs/SegFormer

    3,347Ver en 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
    Ver en GitHub↗3,347
  1. Home
  2. Artificial Intelligence & ML
  3. Image Convolution Operations
  4. Image Patch Embedders
  5. Patch Embedding Modules

Explorar subetiquetas

  • 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.