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

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

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

4 مستودعات

Awesome GitHub RepositoriesImbalanced Data Sampling

Sampling strategies specifically designed to address class imbalances in datasets.

Distinct from Statistical Sampling: Focuses on handling class distribution imbalance rather than general statistical representative sampling.

Explore 4 awesome GitHub repositories matching data & databases · Imbalanced Data Sampling. Refine with filters or upvote what's useful.

Awesome Imbalanced Data Sampling GitHub Repositories

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

    TingsongYu/PyTorch_Tutorial

    8,018عرض على GitHub↗

    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

    Defines the order and frequency of sample selection to manage class imbalances during training.

    Python
    عرض على GitHub↗8,018
  • scikit-learn-contrib/imbalanced-learnالصورة الرمزية لـ scikit-learn-contrib

    scikit-learn-contrib/imbalanced-learn

    7,104عرض على GitHub↗

    imbalanced-learn is a dataset balancing framework and Python machine learning extension designed to resample training data and reduce the impact of class imbalance. It provides a toolkit of algorithms for adjusting class distributions to improve model performance on minority class prediction. As a scikit-learn resampling library, it extends the ecosystem with specialized tools for balancing datasets through over-sampling and under-sampling techniques. This allows for the correction of skewed class proportions to reduce model bias toward the majority class. The library implements the scikit-l

    Applies sampling techniques to datasets with significant class differences to increase model accuracy.

    Python
    عرض على GitHub↗7,104
  • kevinmusgrave/pytorch-metric-learningالصورة الرمزية لـ KevinMusgrave

    KevinMusgrave/pytorch-metric-learning

    6,328عرض على GitHub↗

    PyTorch Metric Learning is an open-source library for training neural networks to produce similarity-preserving embedding spaces. It provides a modular framework where interchangeable loss functions, mining strategies, and evaluation tools can be composed to learn representations that map similar items to nearby points and dissimilar items to distant points in the embedding space. The library distinguishes itself through a highly configurable architecture that separates concerns across several interchangeable components. Users can assemble custom loss functions from pluggable distance metrics

    Implements hierarchical sampling strategies that respect nested label structures during batch construction for metric learning.

    Pythoncomputer-visioncontrastive-learningdeep-learning
    عرض على GitHub↗6,328
  • tingsongyu/pytorch-tutorial-2ndالصورة الرمزية لـ TingsongYu

    TingsongYu/PyTorch-Tutorial-2nd

    4,555عرض على GitHub↗

    هذا المشروع عبارة عن مورد تعليمي شامل ودورة تدريبية لبناء الشبكات العصبية باستخدام PyTorch. يغطي اللبنات الأساسية للتعلم العميق، بما في ذلك معالجة الموترات (tensors)، والتمايز التلقائي، وبناء مكونات الشبكة العصبية المعيارية. يعمل المستودع كدليل تقني للعديد من المجالات المتخصصة. يوفر تفاصيل تنفيذ لمهام رؤية الكمبيوتر مثل تصنيف الصور، واكتشاف الكائنات، والتجزئة الدلالية، بالإضافة إلى سير عمل معالجة اللغات الطبيعية التي تتضمن المحولات (transformers)، والشبكات المتكررة، والنماذج التوليدية. بالإضافة إلى ذلك، يتضمن مرجعاً للذكاء الاصطناعي التوليدي، مع التركيز بشكل خاص على تركيب الصور عبر نماذج الانتشار (diffusion models) والشبكات التنافسية. تمتد المادة إلى تحسين النماذج وخطوط أنابيب النشر. تغطي تقنيات لتقليل حجم النموذج وزيادة سرعة الاستنتاج من خلال التكميم (quantization) وتصدير النماذج إلى تنسيقات مثل ONNX وTensorRT. تشمل مجالات القدرة الأخرى هندسة البيانات للتحميل المتوازي، وتقييم النموذج باستخدام مقاييس مخصصة، ونشر نماذج اللغات الكبيرة مفتوحة المصدر. يتم تقديم المشروع بشكل أساسي كسلسلة من دفاتر Jupyter.

    Implements sampling strategies that use assigned probabilities to handle class imbalances and ensure balanced representation.

    Jupyter Notebookcomputer-visiondeepsortdiffusion-models
    عرض على GitHub↗4,555
  1. Home
  2. Data & Databases
  3. Data Management
  4. Sample Data Loaders
  5. Statistical Sampling
  6. Imbalanced Data Sampling

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

  • Hierarchical Label SamplersSelects samples from super classes and sub-classes in a structured manner to respect label hierarchies during batch construction. **Distinct from Imbalanced Data Sampling:** Distinct from Imbalanced Data Sampling: specifically respects hierarchical label structures (super-class/sub-class) during batch construction, not general class imbalance handling.