awesome-repositories.com
ब्लॉग
MCP
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टMCP सर्वरहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेस
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 रिपॉजिटरी

Awesome GitHub RepositoriesSequential Layer Containers

Modules that group multiple neural network layers into a single reusable unit.

Distinct from Normalization Layers: Focuses on the grouping of layers for modularity, distinct from normalization-specific layers.

Explore 6 awesome GitHub repositories matching artificial intelligence & ml · Sequential Layer Containers. Refine with filters or upvote what's useful.

Awesome Sequential Layer Containers GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • mrdbourke/pytorch-deep-learningmrdbourke का अवतार

    mrdbourke/pytorch-deep-learning

    17,195GitHub पर देखें↗

    This project is a structured educational resource and training platform designed for mastering deep learning development. It provides a comprehensive curriculum focused on building, evaluating, and refining predictive models through hands-on coding exercises and standard industry workflows. The curriculum emphasizes practical implementation, guiding users through the construction of neural network architectures and the application of transfer learning to adapt pretrained models for custom tasks. It includes methodologies for tracking and comparing model experiment results, allowing for the sy

    Uses sequential containers to compose neural network architectures through modular layer stacking.

    Jupyter Notebookdeep-learningmachine-learningpytorch
    GitHub पर देखें↗17,195
  • karpathy/convnetjskarpathy का अवतार

    karpathy/convnetjs

    11,171GitHub पर देखें↗

    ConvNetJS is a JavaScript deep learning library and neural network training engine designed for client-side machine learning. It functions as a framework for building, training, and running convolutional neural networks directly within a web browser without the need for a backend server. The library specializes in image recognition and pattern analysis using convolutional and pooling layers. It enables the creation of models for classification and regression tasks, as well as the development of reinforcement learning agents that optimize behavior through trial and error in simulated environme

    Organizes neural networks as a series of stacked modules where data flows linearly from one layer to the next.

    JavaScript
    GitHub पर देखें↗11,171
  • lyhue1991/eat_tensorflow2_in_30_dayslyhue1991 का अवतार

    lyhue1991/eat_tensorflow2_in_30_days

    9,933GitHub पर देखें↗

    This project is a structured learning curriculum and technical reference for mastering deep learning with TensorFlow. It provides a comprehensive guide for building, training, and deploying neural networks, combining theoretical fundamentals with practical implementation examples. The repository distinguishes itself by covering the end-to-end machine learning workflow, from low-level tensor mathematics and linear algebra to the creation of complex model architectures. It includes specific guidance on developing data pipelines for diverse data types, such as images, text, and time-series seque

    Provides a sequential API for building neural networks by stacking modular data transformation layers.

    Pythontensorflowtensorflow-examplestensorflow-tutorial
    GitHub पर देखें↗9,933
  • google-deepmind/sonnetgoogle-deepmind का अवतार

    google-deepmind/sonnet

    9,920GitHub पर देखें↗

    Sonnet is a modular machine learning framework and TensorFlow neural network library designed for building composable deep learning architectures. It functions as a model orchestrator that manages parameters, state serialization, and graph exports during the training process. The framework provides a distributed training system to synchronize gradients and spread workloads across multiple GPUs or hardware devices. It enables the design of reusable research components through high-level abstractions and subclassing. The library covers neural network architecture design through sequential laye

    Supports grouping and connecting multiple neural network layers into a single sequential unit.

    Pythonartificial-intelligencedeep-learningmachine-learning
    GitHub पर देखें↗9,920
  • tingsongyu/pytorch_tutorialTingsongYu का अवतार

    TingsongYu/PyTorch_Tutorial

    8,018GitHub पर देखें↗

    This project is a comprehensive collection of educational examples and reference implementations for building vision and language models using PyTorch. It serves as a deep learning tutorial covering the end-to-end process of developing neural networks, from initial architecture definition to final production deployment. The repository provides detailed guides on implementing a wide range of domain-specific models, including convolutional neural networks for object detection and segmentation, as well as transformer and recurrent architectures for natural language processing. It emphasizes gene

    Uses specialized containers like Sequential to group and sequence neural network modules for better organization.

    Python
    GitHub पर देखें↗8,018
  • fastai/course22fastai का अवतार

    fastai/course22

    3,398GitHub पर देखें↗

    This is a structured deep learning curriculum for programmers, delivered as a collection of Jupyter notebooks. It teaches the fundamentals of training neural networks for computer vision, natural language processing, tabular data analysis, and collaborative filtering using PyTorch and the fastai library. The course is designed to be hands-on, guiding learners from building a training loop from scratch to fine-tuning pretrained models for a variety of practical tasks. The curriculum distinguishes itself by covering the full lifecycle of a deep learning project, from data preparation and augmen

    Demonstrates chaining neural network layers sequentially using PyTorch's nn.Sequential container.

    Jupyter Notebookdeep-learningfastaijupyter-notebooks
    GitHub पर देखें↗3,398
  1. Home
  2. Artificial Intelligence & ML
  3. Machine Learning
  4. Frameworks
  5. Model Construction
  6. Neural Network Layers
  7. Normalization Layers
  8. Sequential Layer Containers

सब-टैग एक्सप्लोर करें

  • Lambda Layer WrappersUtilities for wrapping arbitrary functions as nn.Module layers for use in sequential models. **Distinct from Sequential Layer Containers:** Distinct from Sequential Layer Containers: focuses on wrapping single functions as layers, not general layer grouping.
  • Linear StacksNeural network architectures that arrange layers in a strictly linear sequence. **Distinct from Sequential Layer Containers:** Focuses on the linear arrangement of layers rather than the general container mechanism.
  • Programmatic Layer GenerationLogic for dynamically constructing neural network layers based on configuration dictionaries. **Distinct from Sequential Layer Containers:** Focuses on the programmatic generation of the architecture's depth and structure rather than static container grouping.