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

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

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

4 مستودعات

Awesome GitHub RepositoriesTraining Data Iterators

Specialized iterators that decouple training loops from data sources and manage dataset restarts.

Distinct from Range-Based Loop Iteration: Focuses on the lifecycle and restart logic of ML dataset iterators rather than generic language loop constructs

Explore 4 awesome GitHub repositories matching software engineering & architecture · Training Data Iterators. Refine with filters or upvote what's useful.

Awesome Training Data Iterators GitHub Repositories

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

    pytorch/ignite

    4,770عرض على GitHub↗

    Ignite is a high-level training framework for PyTorch neural networks that serves as a training engine and deep learning lifecycle manager. It provides a structured system for organizing and automating training and evaluation loops, managing data iterators and triggering event handlers at specific milestones during the model training process. The project distinguishes itself through a comprehensive suite of tools for distributed training and model evaluation. It includes utilities for synchronizing gradients and coordinating collective communication across multiple GPUs or nodes, as well as a

    Decouples the training loop from data sources by managing the lifecycle and restarting of dataset iterators.

    Python
    عرض على GitHub↗4,770
  • google-deepmind/learning-to-learnالصورة الرمزية لـ google-deepmind

    google-deepmind/learning-to-learn

    4,068عرض على GitHub↗

    This project is a TensorFlow meta-learning framework and research toolkit designed to implement and train learned optimizers. It provides a library of tools for developing neural networks that learn how to optimize other models, replacing traditional gradient-based optimization algorithms. The framework includes a problem ensemble manager that allows multiple distinct optimization tasks to be combined into a single weighted loss function for simultaneous training. It uses a factory pattern for network instantiation and supports the definition of custom objective functions and loss graphs as t

    Executes training iterations over specified sequence lengths to optimize the learning algorithm's performance.

    Pythonartificial-intelligencedeep-learningmachine-learning
    عرض على GitHub↗4,068
  • rasbt/deep-learning-bookالصورة الرمزية لـ rasbt

    rasbt/deep-learning-book

    2,819عرض على GitHub↗

    This project is an educational resource and tutorial series designed to teach the principles of deep learning through interactive notebooks. It provides a structured curriculum that guides users through the implementation of artificial neural networks, focusing on both the practical construction of models and the underlying mechanics of machine learning workflows. The material emphasizes a hands-on approach, allowing users to build and train neural network architectures from scratch using standard programming patterns. By working through these examples, learners gain experience with the core

    Implements cyclic training loops for forward passes and weight updates to minimize loss functions.

    Jupyter Notebookartificial-intelligencedata-sciencedeep-learning
    عرض على GitHub↗2,819
  • assemblyai-community/machine-learning-from-scratchالصورة الرمزية لـ AssemblyAI-Community

    AssemblyAI-Community/Machine-Learning-From-Scratch

    971عرض على GitHub↗

    Machine-Learning-From-Scratch is an educational repository that provides implementations of fundamental machine learning models built using standard Python programming logic. It serves as a resource for understanding the internal mechanics of common statistical and predictive algorithms by constructing them from the ground up rather than relying on high-level machine learning frameworks. The project distinguishes itself by prioritizing transparency in algorithmic design, utilizing mathematical primitives and vectorized array computations to expose the underlying calculus and statistical logic

    Executes sequential passes over datasets to refine internal weights and biases through repeated exposure to input features.

    Python
    عرض على GitHub↗971
  1. Home
  2. Software Engineering & Architecture
  3. Compile-Time Code Generation
  4. Iterative Code Generation
  5. Iterative Loop Constructs
  6. Range-Based Loop Iteration
  7. Training Data Iterators

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

  • Training Loops1 وسم فرعيSequential execution patterns for iterating over datasets to refine model weights and biases. **Distinct from Training Data Iterators:** Distinct from Training Data Iterators: focuses on the training loop logic itself rather than the data source management.