awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目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

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • rushter/mlalgorithmsrushter 的头像

    rushter/MLAlgorithms

    10,983在 GitHub 上查看↗

    MLAlgorithms 是一个教育性机器学习算法库,由从零开始用 Python 实现的核心预测模型组成。它作为开发者的参考资料,通过简洁、最小化的实现来学习这些模型的内部逻辑和数学原理。 代码库专注于算法实现的研究和机器学习教育,提供了一种在不依赖繁重外部库的情况下,通过构建组件来理解内部机制的方法。 该项目利用面向对象封装和基于 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-courseraKulbear 的头像

    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/swifttensorflow 的头像

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