awesome-repositories.com
Blog
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
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 dépôts

Awesome GitHub RepositoriesModel Depth Optimization

Techniques for dynamically adjusting or reducing the number of layers in a neural network to optimize performance and inference speed.

Distinct from Depth Estimation: The candidates are for image depth estimation or algorithmic search depth, not neural network layer depth.

Explore 3 awesome GitHub repositories matching artificial intelligence & ml · Model Depth Optimization. Refine with filters or upvote what's useful.

Awesome Model Depth Optimization 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.
  • facebookresearch/fairseqAvatar de facebookresearch

    facebookresearch/fairseq

    32,228Voir sur GitHub↗

    Fairseq is a PyTorch toolkit for sequence-to-sequence modeling, specializing in neural machine translation, automatic speech recognition, and large-scale language model training. It provides a framework for processing and aligning diverse data sources, including text, audio, and video, to support tasks such as speech-to-text conversion and multimodal sequence learning. The project is distinguished by its distributed training capabilities, which utilize parameter sharding, mixed-precision training, and CPU offloading to handle models that exceed single-device memory. It also includes specializ

    Implements structured dropout to allow on-demand reduction of encoder or decoder depth.

    Python
    Voir sur GitHub↗32,228
  • qubvel-org/segmentation_models.pytorchAvatar de qubvel-org

    qubvel-org/segmentation_models.pytorch

    11,622Voir sur GitHub↗

    This is a PyTorch semantic segmentation library designed for building image masking frameworks. It provides a collection of over 500 pretrained convolutional and transformer-based encoders and various decoder architectures to perform binary and multiclass pixel-level classification. The library features a modular backbone integration that decouples encoder choice from decoder logic. It supports custom input channel configurations and encoder depth tuning, allowing the modification of input layers to accept non-standard channel counts while preserving pretrained weights. Some configurations al

    Enables adjusting the number of downsampling operations in the encoder to balance model complexity and inference speed.

    Pythoncomputer-visiondeeplab-v3-plusdeeplabv3
    Voir sur GitHub↗11,622
  • lucidrains/x-transformersAvatar de lucidrains

    lucidrains/x-transformers

    5,912Voir sur GitHub↗

    x-transformers est une bibliothèque PyTorch et un toolkit de recherche pour construire des architectures transformer. Il fournit un framework modulaire pour implémenter la recherche transformer expérimentale, incluant une suite de mécanismes d'attention avancés, des outils de modélisation de séquences longues et un framework pour les vision transformers. Le projet se distingue par son accent sur les composants haute performance et économes en mémoire, tels que Flash Attention avec des noyaux tuilés et l'attention multi-requêtes. Il implémente également des méthodes spécialisées pour étendre les fenêtres de contexte, incluant la récurrence de séquence et les plongements positionnels rotatifs. La bibliothèque couvre un large éventail de capacités architecturales, incluant divers schémas de normalisation pour stabiliser l'entraînement, des réseaux feedforward à portes et des topologies de couches personnalisées comme les réseaux Macaron. Elle prend en charge les constructions d'encodeur et de décodeur, fournissant des outils pour la génération de séquence autorégressive et les tâches vision-langage comme la légende d'image.

    Adjusts the sequence of attention and feedforward blocks to optimize model depth and performance.

    Python
    Voir sur GitHub↗5,912
  1. Home
  2. Artificial Intelligence & ML
  3. Model Depth Optimization

Explorer les sous-tags

  • Sublayer ReorderingTechniques for adjusting the sequence of attention and feedforward blocks to optimize performance. **Distinct from Model Depth Optimization:** Focuses on the structural order of existing blocks, whereas Depth Optimization typically refers to changing the number of layers.