awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
AssemblyAI-Community avatar

AssemblyAI-Community/Machine-Learning-From-Scratch

0
View on GitHub↗
971 stars·273 forks·Python·MIT·3 vues

Machine Learning From Scratch

Machine-Learning-From-Scratch est un dépôt pédagogique qui propose des implémentations de modèles d'apprentissage automatique fondamentaux construits en utilisant la logique de programmation Python standard. Il sert de ressource pour comprendre les mécanismes internes des algorithmes statistiques et prédictifs courants en les construisant de zéro, plutôt que de s'appuyer sur des frameworks de machine learning de haut niveau.

Le projet se distingue en privilégiant la transparence dans la conception algorithmique, en utilisant des primitives mathématiques et des calculs vectorisés pour exposer le calcul sous-jacent et la logique statistique. En structurant les techniques d'apprentissage comme des composants modulaires et indépendants, le dépôt permet d'examiner les boucles d'entraînement itératives et les processus d'optimisation basés sur le gradient de manière isolée.

Cette collection couvre un large éventail de techniques de science des données, en se concentrant sur l'implémentation manuelle des étapes de traitement de base et des procédures d'entraînement des modèles. Le dépôt est conçu pour soutenir le développement des compétences en science des données en démontrant comment les modèles prédictifs fonctionnent grâce à des pratiques de programmation et d'analyse fondamentales.

Features

  • Machine Learning Implementations - Provides a collection of fundamental machine learning models built from scratch to demonstrate underlying mathematical mechanics.
  • From-Scratch ML Model Implementations - Provides implementations of fundamental machine learning models built from first principles for educational study.
  • Machine Learning Education - Teaches machine learning mechanics by building fundamental models from scratch using basic programming logic.
  • Gradient-Based Learning - Implements gradient-based learning algorithms by manually calculating partial derivatives to update model parameters.
  • Numerical Computing Libraries - Performs batch mathematical operations on arrays using low-level numerical logic without relying on high-level frameworks.
  • Educational Implementations - Ships educational implementations of popular algorithms using standard Python logic to explain internal model behavior.
  • Data Science Learning Materials - Serves as an educational resource providing code examples that explain the core logic of statistical and predictive models.
  • Skill Development Paths - Supports data science skill development by requiring manual coding of standard machine learning techniques.
  • Mathematical Function Implementations - Provides standalone function implementations of core statistical and calculus-based logic for model training.
  • Training Loops - Executes sequential passes over datasets to refine internal weights and biases through repeated exposure to input features.

Historique des stars

Graphique de l'historique des stars pour assemblyai-community/machine-learning-from-scratchGraphique de l'historique des stars pour assemblyai-community/machine-learning-from-scratch

Recherche par IA

Explorez plus de dépôts awesome

Décrivez vos besoins en langage naturel — l'IA classe des milliers de projets open source sélectionnés par pertinence.

Start searching with AI

Collections incluant Machine Learning From Scratch

Sélections manuelles où Machine Learning From Scratch apparaît.
  • Projets d'implémentation de réseaux de neurones

Questions fréquentes

Que fait assemblyai-community/machine-learning-from-scratch ?

Machine-Learning-From-Scratch est un dépôt pédagogique qui propose des implémentations de modèles d'apprentissage automatique fondamentaux construits en utilisant la logique de programmation Python standard. Il sert de ressource pour comprendre les mécanismes internes des algorithmes statistiques et prédictifs courants en les construisant de zéro, plutôt que de s'appuyer sur des frameworks de machine learning de haut niveau.

Quelles sont les fonctionnalités principales de assemblyai-community/machine-learning-from-scratch ?

Les fonctionnalités principales de assemblyai-community/machine-learning-from-scratch sont : Machine Learning Implementations, From-Scratch ML Model Implementations, Machine Learning Education, Gradient-Based Learning, Numerical Computing Libraries, Educational Implementations, Data Science Learning Materials, Skill Development Paths.

Quelles sont les alternatives open-source à assemblyai-community/machine-learning-from-scratch ?

Les alternatives open-source à assemblyai-community/machine-learning-from-scratch incluent : zotroneneis/machine_learning_basics — This project is a collection of foundational machine learning algorithms and tools implemented from scratch in Python.… rasbt/python-machine-learning-book-3rd-edition — This is the companion code repository for the third edition of the book *Python Machine Learning*. It delivers the… tdpetrou/machine-learning-books-with-python — This repository serves as an educational resource for mastering machine learning concepts through structured exercises… kaieye/2022-machine-learning-specialization — This repository is a collection of machine learning course materials, providing study notes and Python implementation… dibgerge/ml-coursera-python-assignments — This project is a machine learning coursework repository containing a collection of Python exercises and notebooks. It… chiphuyen/tf-stanford-tutorials — This project is a deep learning educational resource providing a collection of TensorFlow tutorials and programming…

Alternatives open source à Machine Learning From Scratch

Projets open source similaires, classés selon le nombre de fonctionnalités partagées avec Machine Learning From Scratch.
  • zotroneneis/machine_learning_basicsAvatar de zotroneneis

    zotroneneis/machine_learning_basics

    4,418Voir sur GitHub↗

    This project is a collection of foundational machine learning algorithms and tools implemented from scratch in Python. It serves as a library of core implementations for regression, classification, and clustering models, designed to demonstrate the underlying mathematical structures of these algorithms without relying on high-level machine learning frameworks. The project focuses on the manual implementation of algorithmic logic, including neural networks with forward propagation and weight updates, as well as various supervised and unsupervised learning models. It utilizes NumPy for vectoriz

    Jupyter Notebookalgorithmipynbk-nearest-neighbor
    Voir sur GitHub↗4,418
  • rasbt/python-machine-learning-book-3rd-editionAvatar de rasbt

    rasbt/python-machine-learning-book-3rd-edition

    4,988Voir sur GitHub↗

    This is the companion code repository for the third edition of the book Python Machine Learning. It delivers the entire learning path as a structured collection of Jupyter notebooks that progress from classical machine learning algorithms to advanced deep learning models, with every concept demonstrated through executable code and narrative text. What distinguishes this resource is its pedagogical design. Each notebook cell encapsulates a single conceptual step, letting readers run, inspect, and modify discrete units of learning. The code provides interchangeable implementations of deep lea

    Jupyter Notebookdeep-learningmachine-learningscikit-learn
    Voir sur GitHub↗4,988
  • tdpetrou/machine-learning-books-with-pythonAvatar de tdpetrou

    tdpetrou/Machine-Learning-Books-With-Python

    943Voir sur GitHub↗

    This repository serves as an educational resource for mastering machine learning concepts through structured exercises and practical programming examples. It functions as a library of implementations for core algorithms and models, designed to accompany standard academic textbooks and technical literature. The project utilizes a literate programming pattern within interactive documents, allowing users to interleave narrative explanations with executable code. By combining text and logic, the repository facilitates step-by-step experimentation and the translation of theoretical concepts into f

    Jupyter Notebook
    Voir sur GitHub↗943
  • chiphuyen/tf-stanford-tutorialsAvatar de chiphuyen

    chiphuyen/tf-stanford-tutorials

    10,377Voir sur GitHub↗

    This project is a deep learning educational resource providing a collection of TensorFlow tutorials and programming exercises. It serves as a set of machine learning code samples designed for university-level courses on machine learning research. The repository focuses on machine learning education and deep learning research, providing practical examples for implementing neural networks from scratch. It supports neural network prototyping and the development of TensorFlow models to help users apply deep learning theory to software implementations.

    Python
    Voir sur GitHub↗10,377
  • Voir les 30 alternatives à Machine Learning From Scratch→