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

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

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

instillai/machine-learning-course

0
View on GitHub↗
7,043 स्टार्स·1,233 फोर्क्स·Python·12 व्यूज़machine-learning-course.readthedocs.io/en/latest↗

Machine Learning Course

यह Python प्रोग्रामिंग भाषा का उपयोग करके मशीन लर्निंग के मूल सिद्धांतों को सिखाने के लिए डिज़ाइन किया गया एक व्यापक शैक्षिक पाठ्यक्रम है। यह सुपरवाइज्ड लर्निंग, अनसुपरवाइज्ड लर्निंग और डीप लर्निंग के कार्यान्वयन और सिद्धांत को कवर करने वाला एक संरचित पाठ्यक्रम प्रदान करता है।

पाठ्यक्रम इंटरैक्टिव नोटबुक के माध्यम से प्रदान किया जाता है जो निष्पादन योग्य कोड को तकनीकी ट्यूटोरियल के साथ जोड़ते हैं। इसमें न्यूरल नेटवर्क आर्किटेक्चर बनाने, वर्गीकरण और रिग्रेशन मॉडल लागू करने, और अनलेबल डेटा में पैटर्न खोज के लिए क्लस्टरिंग तकनीकों का उपयोग करने के लिए समर्पित गाइड शामिल हैं।

सामग्री पूरे मशीन लर्निंग वर्कफ़्लो को कवर करती है, जिसमें डेटा प्रीप्रोसेसिंग और कैटेगोरिकल एन्कोडिंग, मॉडल ट्रेनिंग और हाइपरपैरामीटर ट्यूनिंग, और प्रदर्शन मूल्यांकन शामिल है। इसमें मॉडल व्यवहार की कल्पना करने के लिए उपकरण भी शामिल हैं, जैसे डिसीजन बाउंड्री प्लॉटिंग और डिसीजन ट्री आरेख।

Features

  • Machine Learning Fundamentals - Delivers foundational educational content covering machine learning workflows, data preprocessing, and model training using Python.
  • Hierarchical Clustering - Implements hierarchical clustering to organize data into nested, tree-like cluster structures.
  • Convolutional Neural Networks - Implements convolutional neural network architectures that extract spatial features from multi-dimensional inputs.
  • Data Preprocessing - Provides a comprehensive workflow for cleaning, transforming, and encoding data to prepare it for machine learning models.
  • Classification Trees - Implements decision trees for predicting discrete categories based on binary decision splits.
  • Regression Trees - Implements decision trees specifically designed to predict continuous numerical values.
  • Deep Learning Development - Provides comprehensive guides for designing and training multi-layered artificial neural networks, including convolutional and recurrent architectures.
  • Dimensionality Reduction Techniques - Provides unsupervised dimensionality reduction to summarize large datasets into principal components.
  • K-Means Clustering - Implements centroid-based partitioning to group unlabeled data into a specified number of clusters.
  • K-Nearest Neighbor Classifiers - Implements k-nearest neighbor classifiers that assign classes based on the majority vote of nearby samples.
  • Linear Regression - Implements predictive models that estimate relationships between variables using linear equations.
  • Multilayer Perceptrons - Implements multilayer perceptrons with multiple fully connected layers to transform input data into predictions.
  • Naive Bayes Classifiers - Implements probabilistic classification models based on statistical feature distributions.
  • Recurrent Neural Networks - Implements recurrent neural network architectures to process sequential image or temporal data.
  • Scikit-Learn Implementations - Utilizes the Scikit-Learn API to implement, train, and evaluate a wide range of classical machine learning algorithms.
  • Supervised Learning - Implements and explains predictive models for classification and regression tasks using labeled training data.
  • Support Vector Machines - Implements support vector machines to identify optimal hyperplanes for class separation.
  • Unsupervised Learning - Provides workflows for discovering hidden patterns in unlabeled data using clustering and dimensionality reduction.
  • Machine Learning Courses - Provides a comprehensive structured training program teaching the theory and practical application of machine learning using Python.
  • Interactive Notebook Tutorials - Delivers interactive Python tutorials via Jupyter notebooks that combine executable code cells with markdown documentation.
  • Decision Boundary Visualizations - Generates visual representations of the surfaces that separate different classes in a classifier using Matplotlib.
  • Tree Pruning - Provides functionality to remove low-information splits to reduce overfitting and model complexity.
  • Feature Extraction - Implements the process of applying filters and kernels across images to create feature maps for pattern identification.
  • Generalization Analyses - A process within the library that evaluates performance on unseen data by comparing training accuracy against testing accuracy to detect overfitting.
  • Lasso Regression - Implements L1 regularization to perform feature selection by forcing unimportant weights to zero.
  • Hyperparameter Tuning - Provides techniques for optimizing model hyperparameters to minimize generalization error.
  • Model Performance Optimization - Teaches methods to enhance model accuracy and generalization through regularization and cross-validation techniques.
  • Model Performance Evaluators - Includes instructional material for quantifying model accuracy and reliability by comparing predictions against ground truth labels.
  • Autoencoders - Implements autoencoder architectures that compress input data into hidden representations to learn feature encodings.
  • Keras Model Implementations - Builds deep learning models including feedforward and convolutional structures specifically using the Keras API.
  • Gradient Descent Algorithms - Implements iterative optimization algorithms that minimize prediction error by calculating the derivative of a cost function.
  • Spatial Downsampling - Provides utilities for downsampling feature maps using max pooling to reduce computational overhead and noise.
  • Categorical Encodings - Implements transformations to convert non-numeric categorical labels into binary matrices for algorithmic compatibility.
  • Training and Testing Splits - Provides mechanisms for splitting datasets into independent training and testing sets to evaluate model generalization.
  • Backpropagation Training - Implements the backpropagation algorithm to optimize neural network weights by propagating output errors backward through hidden layers.
  • Model Validation - Teaches techniques for validating model performance using holdout and cross-validation strategies.
  • Dimensionality Reduction - Provides techniques for simplifying high-dimensional datasets using principal component analysis to reduce complexity.
  • Deep Learning Curriculum - Offers a structured learning path for building various neural network architectures, from MLPs to CNNs and RNNs.
  • Unsupervised Learning - Provides educational content focused on algorithms that identify patterns in unlabeled data.
  • Binary Classification Models - Provides the capability to predict whether a data point belongs to one of two categories using a sigmoid function.
  • Multinomial Classification Models - Implements the capability to categorize data into multiple distinct classes by comparing probabilities across model outputs.
  • Supervised Learning Tutorials - Ships a guide to implementing a variety of classification and regression models like decision trees and SVMs.
  • Kernel Transformations - Provides capabilities to transform data into higher dimensions to classify non-linearly separable datasets.
  • Ridge Regression - Implements L2-regularized regression to prevent overfitting by penalizing the square of coefficients.
  • Robotics Education - Foundational machine learning course for developers.

स्टार हिस्ट्री

instillai/machine-learning-course के लिए स्टार हिस्ट्री चार्टinstillai/machine-learning-course के लिए स्टार हिस्ट्री चार्ट

AI सर्च

और अधिक बेहतरीन रिपॉजिटरी खोजें

अपनी ज़रूरत को सरल भाषा में बताएं — AI हजारों क्यूरेटेड ओपन-सोर्स प्रोजेक्ट्स को प्रासंगिकता के आधार पर रैंक करता है।

Start searching with AI

अक्सर पूछे जाने वाले प्रश्न

instillai/machine-learning-course क्या करता है?

यह Python प्रोग्रामिंग भाषा का उपयोग करके मशीन लर्निंग के मूल सिद्धांतों को सिखाने के लिए डिज़ाइन किया गया एक व्यापक शैक्षिक पाठ्यक्रम है। यह सुपरवाइज्ड लर्निंग, अनसुपरवाइज्ड लर्निंग और डीप लर्निंग के कार्यान्वयन और सिद्धांत को कवर करने वाला एक संरचित पाठ्यक्रम प्रदान करता है।

instillai/machine-learning-course की मुख्य विशेषताएं क्या हैं?

instillai/machine-learning-course की मुख्य विशेषताएं हैं: Machine Learning Fundamentals, Hierarchical Clustering, Convolutional Neural Networks, Data Preprocessing, Classification Trees, Regression Trees, Deep Learning Development, Dimensionality Reduction Techniques।

instillai/machine-learning-course के कुछ ओपन-सोर्स विकल्प क्या हैं?

instillai/machine-learning-course के ओपन-सोर्स विकल्पों में शामिल हैं: rasbt/python-machine-learning-book — This project is an educational resource providing practical code examples and implementations of machine learning… nyandwi/machine_learning_complete — This is an interactive notebook-based course that teaches machine learning from Python fundamentals through deep… rasbt/machine-learning-book — This project is a comprehensive machine learning educational resource and tutorial series delivered as a collection of… wepe/machinelearning — This project is a machine learning library providing a collection of implementations for supervised and unsupervised… jack-cherish/machine-learning — This project is a collection of supervised and unsupervised machine learning algorithms implemented from scratch using… biolab/orange3 — Orange3 is a visual data mining platform that provides an interactive canvas for building data analysis workflows…

Machine Learning Course के ओपन-सोर्स विकल्प

समान ओपन-सोर्स प्रोजेक्ट्स, जो Machine Learning Course के साथ साझा की गई सुविधाओं के आधार पर रैंक किए गए हैं।
  • rasbt/python-machine-learning-bookrasbt का अवतार

    rasbt/python-machine-learning-book

    12,614GitHub पर देखें↗

    This project is an educational resource providing practical code examples and implementations of machine learning algorithms using the Python language. It serves as a guide for constructing predictive pipelines, clustering models, and dimensionality reduction within the Scikit-Learn ecosystem. The repository includes comprehensive demonstrations for supervised and unsupervised learning, as well as detailed examples for implementing neural networks and deep architectures. It also provides practical guidance on exporting model parameters to JSON and wrapping trained models in web APIs for produ

    Jupyter Notebook
    GitHub पर देखें↗12,614
  • nyandwi/machine_learning_completeNyandwi का अवतार

    Nyandwi/machine_learning_complete

    4,983GitHub पर देखें↗

    This is an interactive notebook-based course that teaches machine learning from Python fundamentals through deep learning and natural language processing. It uses real datasets and multiple frameworks within a structured, hands-on curriculum that combines concise explanations with executable code cells, built-in datasets, and embedded exercise checkpoints. Learning progresses through data preparation and exploration, classical machine learning workflows, computer vision with convolutional neural networks, and natural language processing with deep learning, all delivered as a cohesive progressi

    Jupyter Notebookcomputer-visiondata-analysisdata-science
    GitHub पर देखें↗4,983
  • rasbt/machine-learning-bookrasbt का अवतार

    rasbt/machine-learning-book

    5,239GitHub पर देखें↗

    This project is a comprehensive machine learning educational resource and tutorial series delivered as a collection of interactive Jupyter Notebooks. It provides practical Python implementations for the end-to-end machine learning lifecycle, covering supervised and unsupervised learning, deep learning, and reinforcement learning. The resource distinguishes itself by providing detailed implementation guides for complex architectures, including transformers, generative adversarial networks, and convolutional neural networks. It also features specialized courseware for developing reinforcement l

    Jupyter Notebook
    GitHub पर देखें↗5,239
  • wepe/machinelearningwepe का अवतार

    wepe/MachineLearning

    5,714GitHub पर देखें↗

    This project is a machine learning library providing a collection of implementations for supervised and unsupervised learning algorithms. It serves as a deep learning framework, a statistical classifier collection, and a suite of tools for unsupervised learning and dimensionality reduction. The library enables the construction of neural networks, including multi-layer perceptrons and convolutional networks for pattern recognition. It also provides tools for performing principal component analysis and manifold learning to visualize high-dimensional datasets, alongside a suite of clustering alg

    Python
    GitHub पर देखें↗5,714
  • Machine Learning Course के सभी 30 विकल्प देखें→