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

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 dépôts

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

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • lucidrains/vit-pytorchAvatar de lucidrains

    lucidrains/vit-pytorch

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

    google-research/vision_transformer

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

    facebookresearch/ConvNeXt

    6,388Voir sur GitHub↗

    Code release for ConvNeXt model

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

    Python
    Voir sur GitHub↗6,388
  • ai-dawang/plugnplay-modulesAvatar de ai-dawang

    ai-dawang/PlugNPlay-Modules

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

    facebookresearch/deit

    4,348Voir sur GitHub↗

    DeiT est un framework de vision transformer PyTorch conçu pour la classification d'images. Il implémente une architecture basée sur des transformers qui traite les images comme des séquences de patchs aplatis en utilisant des couches d'auto-attention et une modélisation de séquence sensible à la position au lieu de filtres convolutifs. Le projet se concentre sur l'entraînement efficace en données grâce à un framework de distillation de connaissances. Ce système permet à un modèle étudiant d'imiter les soft labels d'un modèle enseignant haute performance pour améliorer la précision et la généralisation, particulièrement lors de l'entraînement sur des jeux de données plus petits. La bibliothèque couvre le cycle de vie complet du développement, incluant l'entraînement à la classification d'images, l'optimisation de la perte d'entropie croisée et le déploiement de poids pré-entraînés pour l'inférence. Elle inclut également un outil de benchmarking pour évaluer les performances et la précision du modèle par rapport aux jeux de données standard.

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

    Python
    Voir sur GitHub↗4,348
  • nvlabs/segformerAvatar de NVlabs

    NVlabs/SegFormer

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

Explorer les sous-tags

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