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

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

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

4 مستودعات

Awesome GitHub RepositoriesLayer Parameter Optimization

Techniques to reduce computational overhead and parameters within neural network layers.

Distinct from Deep Learning Optimization: Focuses on reducing layer-level parameter count and overhead rather than general computational graph optimization

Explore 4 awesome GitHub repositories matching artificial intelligence & ml · Layer Parameter Optimization. Refine with filters or upvote what's useful.

Awesome Layer Parameter Optimization GitHub Repositories

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

    rushter/MLAlgorithms

    10,983عرض على GitHub↗

    MLAlgorithms هي مكتبة تعليمية لخوارزميات التعلم الآلي تتكون من نماذج تنبؤية أساسية تم تنفيذها من الصفر بلغة Python. تعمل كمرجع للمطورين لدراسة المنطق الداخلي والآليات الرياضية لهذه النماذج من خلال تنفيذات نظيفة وبسيطة. يركز الكود المصدري على دراسة تنفيذ الخوارزميات وتعليم التعلم الآلي، مما يوفر طريقة لفهم الآليات الداخلية من خلال بناء المكونات دون الاعتماد على مكتبات خارجية ثقيلة. يستخدم المشروع التغليف الموجه للكائنات (object-oriented) والمتجهات القائمة على NumPy لإدارة حالة النموذج وإجراء العمليات الرياضية. وتؤكد بنيته على الشفافية باستخدام منطق Python الصرف لتنفيذ أساسيات الجبر الخطي وتهيئة المعلمات النمطية.

    Provides modular weight initialization strategies separated from the training loop to allow for various randomization techniques.

    Python
    عرض على GitHub↗10,983
  • kulbear/deep-learning-courseraالصورة الرمزية لـ Kulbear

    Kulbear/deep-learning-coursera

    7,729عرض على GitHub↗

    This repository contains programming assignments and lecture notes from Andrew Ng's foundational deep learning course specialization on Coursera. The materials cover core neural network training techniques including optimization algorithms, normalization methods, regularization approaches, parameter initialization strategies, and learning rate scheduling to improve model convergence and generalization. The coursework explores design principles where successive neural network layers learn progressively more abstract feature representations from input data. It provides guidance on selecting ope

    Randomly initialize weight matrices and bias vectors for each layer based on layer dimensions.

    Jupyter Notebookcourseradeep-learning
    عرض على GitHub↗7,729
  • tensorflow/swiftالصورة الرمزية لـ tensorflow

    tensorflow/swift

    6,131عرض على GitHub↗

    Swift for TensorFlow is a custom toolchain that extends the Swift language with first-class automatic differentiation and differentiable types, enabling gradient-based computation directly within the compiler. It integrates the Swift compiler with TensorFlow runtime and XLA backends, allowing tensor operations to be compiled and executed on hardware-accelerated hardware for high-performance machine learning. The project distinguishes itself through compiler-integrated automatic differentiation that computes gradients of user-defined functions and types during compilation, eliminating the need

    Traverses nested parameter structures to apply optimizers for complex model architectures.

    Jupyter Notebook
    عرض على GitHub↗6,131
  • ai-dawang/plugnplay-modulesالصورة الرمزية لـ ai-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

    Implements computational efficiency improvements through separable and partial convolutions and stochastic depth.

    Python
    عرض على GitHub↗4,968
  1. Home
  2. Artificial Intelligence & ML
  3. Machine Learning
  4. Infrastructure
  5. Optimization & Inference
  6. Training Algorithms
  7. Deep Learning Optimization
  8. Layer Parameter Optimization

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

  • Hierarchical Parameter OptimizationsTraversing nested parameter structures to apply optimizers that support complex model architectures. **Distinct from Layer Parameter Optimization:** Distinct from Layer Parameter Optimization: focuses on traversing nested structures for optimization, not reducing layer-level parameter count.
  • Weight Initialization MethodsTechniques for randomly initializing weight matrices and bias vectors in neural network layers based on layer dimensions. **Distinct from Layer Parameter Optimization:** Distinct from Layer Parameter Optimization: focuses on initialization strategies rather than reducing parameter count or computational overhead.