awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 مستودعات

Awesome GitHub RepositoriesNormalization Layers

Components used to rescale and stabilize internal activations in neural networks.

Distinct from RMSNorm with SiLU Activation: The candidates focus on specific fused GPU kernels or tensor dimensioning, not the general architectural normalization layer logic.

Explore 5 awesome GitHub repositories matching artificial intelligence & ml · Normalization Layers. Refine with filters or upvote what's useful.

Awesome Normalization Layers GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • jzhang38/tinyllamaالصورة الرمزية لـ jzhang38

    jzhang38/TinyLlama

    8,994عرض على GitHub↗

    TinyLlama is a compact 1.1B parameter language model pretrained on a dataset of 3 trillion tokens. It is an edge AI model designed for high-performance text generation on memory-constrained devices. The project provides a distributed pretraining framework for training small language models across multiple GPUs and nodes. It also includes a finetuning toolkit for full-parameter weight adjustments to adapt the base model for chat and specific tasks. The system supports distributed large language model training and on-device text generation. Its architectural components include rotary positiona

    Implements root mean square layer normalization to stabilize neural network activations during training.

    Python
    عرض على GitHub↗8,994
  • morvanzhou/pytorch-tutorialالصورة الرمزية لـ MorvanZhou

    MorvanZhou/PyTorch-Tutorial

    8,458عرض على GitHub↗

    This project is a collection of PyTorch learning resources and educational guides designed to teach the construction and training of neural networks. It serves as a comprehensive deep learning tutorial covering various model architectures and practical implementation strategies. The resources provide specific guidance on implementing computer vision tasks, such as image classification and synthetic imagery generation, as well as reinforcement learning agents using value networks and experience replay. It also covers sequential data modeling through recurrent networks and generative modeling u

    Implements normalization layers to stabilize internal activations and improve training convergence.

    Jupyter Notebookautoencoderbatchbatch-normalization
    عرض على GitHub↗8,458
  • deepseek-ai/deepseek-llmالصورة الرمزية لـ deepseek-ai

    deepseek-ai/deepseek-LLM

    7,100عرض على GitHub↗

    DeepSeek-LLM is a large language model and causal language model designed for natural language generation. It functions as a multi-lingual system capable of predicting the next token in a sequence to perform text completion and conversational generation. The model is specialized for logical reasoning, specifically as a code and math LLM. This enables it to perform complex problem solving, which includes generating executable code and solving mathematical equations through step-by-step analysis. The system's broader capabilities cover conversational AI, including the generation of chat comple

    Uses root mean square layer normalization to stabilize training and accelerate convergence.

    Makefile
    عرض على GitHub↗7,100
  • lucidrains/x-transformersالصورة الرمزية لـ lucidrains

    lucidrains/x-transformers

    5,912عرض على GitHub↗

    x-transformers هي مكتبة PyTorch ومجموعة أدوات بحثية لبناء معماريات المحولات (transformers). توفر إطار عمل معيارياً لتنفيذ أبحاث المحولات التجريبية، بما في ذلك مجموعة من آليات الانتباه المتقدمة، وأدوات نمذجة التسلسلات الطويلة، وإطار عمل لمحولات الرؤية. يتميز المشروع بتركيزه على المكونات عالية الأداء والموفرة للذاكرة، مثل Flash Attention مع النوى المبلطة وانتباه الاستعلام المتعدد. كما ينفذ طرقاً متخصصة لتوسيع نوافذ السياق، بما في ذلك تكرار التسلسل وتضمينات الموضع الدورانية. تغطي المكتبة مجموعة واسعة من القدرات المعمارية، بما في ذلك مخططات تطبيع متنوعة لتحقيق استقرار التدريب، وشبكات التغذية الأمامية المبوّبة، وطوبولوجيا الطبقات المخصصة مثل شبكات Macaron. تدعم كلاً من إنشاءات المشفر وفك التشفير، وتوفر أدوات لتوليد التسلسل التلقائي ومهام الرؤية واللغة مثل وصف الصور.

    Combines multiple normalization types, including RMSNorm and Sandwich Norm, to prevent gradient collapse.

    Python
    عرض على GitHub↗5,912
  • transformerlensorg/transformerlensالصورة الرمزية لـ TransformerLensOrg

    TransformerLensOrg/TransformerLens

    3,098عرض على GitHub↗

    TransformerLens is a library for mechanistic interpretability research designed to reverse engineer the learned algorithms within large language models. It provides a standardized framework for wrapping diverse transformer architectures, allowing researchers to extract, manipulate, and analyze internal activations and weights through a consistent interface. The project distinguishes itself through a comprehensive system of activation hooks that can capture, patch, and ablate internal tensors during the forward pass. It includes specialized utilities for decomposing fused projections, material

    Combines normalization weights into projection weights to simplify the mathematical analysis of model circuits.

    Python
    عرض على GitHub↗3,098
  1. Home
  2. Artificial Intelligence & ML
  3. Normalization Layers

استكشف الوسوم الفرعية

  • Hybrid Normalization SchemesArchitectures that combine multiple normalization types, such as RMSNorm and Sandwich Norm, to stabilize training. **Distinct from Normalization Layers:** Focuses on the hybrid combination of different normalization schemes, whereas Normalization Layers is the general component category.
  • Normalization FoldingTechniques for mathematically merging normalization weights into projection weights to simplify network analysis. **Distinct from Normalization Layers:** Focuses on the structural fusion of layers for analysis rather than the runtime execution of normalization.
  • RMSNorm LayersNormalization layers that scale activations based on the root mean square of inputs. **Distinct from Normalization Layers:** Specifically implements RMSNorm rather than general normalization techniques like LayerNorm or BatchNorm