awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
wepe avatar

wepe/MachineLearning

0
View on GitHub↗
5,714 stars·3,209 forks·Python·25 views

MachineLearning

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 algorithms that group unlabeled data through iterative partitioning.

The project covers a broad range of predictive modeling capabilities, including classification and regression tasks using decision trees, k-nearest neighbors, Bayes classifiers, support vector machines, and ridge regression. It also includes tools for image classification workflows and the analysis of unlabeled data.

Features

  • General Deep Learning Frameworks - Serves as a deep learning framework for building multi-layer perceptrons and convolutional networks.
  • Supervised Learning - Provides a comprehensive collection of supervised learning algorithms for classification and regression tasks.
  • Bayesian Inference - Predicts class membership using probabilistic Bayesian inference and conditional probability theorems.
  • Centroid-Based Clustering - Groups unlabeled data by iteratively calculating and updating cluster centers.
  • Clustering Suites - Offers a collection of centroid and density-based clustering implementations for unlabeled data.
  • Convolutional Neural Networks - Implements convolutional processing to extract spatial features from images for pattern recognition.
  • Decision Trees - Builds classification trees using iterative feature splitting to make data predictions.
  • Deep Learning Architectures - Provides frameworks for constructing multi-layered neural networks to identify complex patterns.
  • Deep Learning Development - Provides tools for the design, construction, and training of multi-layered artificial neural networks.
  • Clustering Algorithms - Provides clustering algorithms including KMeans and Gaussian Mixture Models for grouping unlabeled data.
  • K-Nearest Neighbor Classifiers - Provides k-nearest neighbor classifiers that assign classes based on proximity to training samples.
  • Logistic Regression Models - Implements logistic regression models to predict binary outcomes using the sigmoid function.
  • Machine Learning Libraries - Provides a comprehensive collection of supervised and unsupervised machine learning algorithmic implementations.
  • Multi-Layer Architectures - Constructs deep learning models using multiple hidden layers to extract hierarchical patterns.
  • Multilayer Perceptrons - Implements multi-layer perceptrons with fully connected layers for learning non-linear mappings.
  • Naive Bayes Classifiers - Implements naive bayes classifiers based on statistical feature distributions and conditional probability.
  • Statistical Classifier Collections - Implements a diverse set of statistical classifiers including Bayes, support vector machines, and k-nearest neighbors.
  • Dimensionality Reduction - Provides techniques for projecting high-dimensional data into lower-dimensional spaces to improve model efficiency.
  • Support Vector Machines - Implements support vector machines to find optimal decision boundaries through boundary-based vector optimization.
  • Unsupervised Learning - Provides algorithms for discovering patterns and structures in unlabeled datasets through clustering.
  • Principal Component Analysis - Implements principal component analysis to isolate primary patterns by reducing dataset dimensionality.
  • Image Classification - Implements convolutional neural networks to categorize images based on visual content.
  • Manifold Visualizations - Projects high-dimensional data into low-dimensional space via manifold learning for visual analysis.
  • Manifold Learning - Implements manifold learning to visualize complex, high-dimensional datasets in lower dimensions.
  • Dimensionality Reduction - Implements principal component analysis and other dimensionality reduction techniques to simplify complex datasets.
  • Ridge Regression - Implements ridge regression with L2 regularization to prevent overfitting in linear models.

Star history

Star history chart for wepe/machinelearningStar history chart for wepe/machinelearning

How this analysis was created: This summary and feature list were written by an AI model that read the project's README and public documentation pages. Each feature links to the documentation it came from; stars, license and language come straight from the GitHub API. The model does not read the source code, and the analysis is refreshed when the project is re-analysed. Learn more on our About page.

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Start searching with AI

Frequently asked questions

What does wepe/machinelearning do?

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.

What are the main features of wepe/machinelearning?

The main features of wepe/machinelearning are: General Deep Learning Frameworks, Supervised Learning, Bayesian Inference, Centroid-Based Clustering, Clustering Suites, Convolutional Neural Networks, Decision Trees, Deep Learning Architectures.

What are some open-source alternatives to wepe/machinelearning?

Open-source alternatives to wepe/machinelearning include: instillai/machine-learning-course — This is a comprehensive educational curriculum designed to teach machine learning fundamentals using the Python… jack-cherish/machine-learning — This project is a collection of supervised and unsupervised machine learning algorithms implemented from scratch using… 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… eriklindernoren/ml-from-scratch — This project is an educational toolkit that provides implementations of fundamental machine learning algorithms built… ljpzzz/machinelearning — This project is a machine learning implementation library featuring a collection of code examples that implement…

Open-source alternatives to MachineLearning

Similar open-source projects, ranked by how many features they share with MachineLearning.
  • instillai/machine-learning-courseinstillai avatar

    instillai/machine-learning-course

    7,043View on GitHub↗

    This is a comprehensive educational curriculum designed to teach machine learning fundamentals using the Python programming language. It provides a structured course covering the implementation and theory of supervised learning, unsupervised learning, and deep learning. The curriculum is delivered through interactive notebooks that combine executable code with technical tutorials. It includes dedicated guides for building neural network architectures, implementing classification and regression models, and utilizing clustering techniques for pattern discovery in unlabeled data. The materials

    Python
    View on GitHub↗7,043
  • jack-cherish/machine-learningJack-Cherish avatar

    Jack-Cherish/Machine-Learning

    10,333View on GitHub↗

    This project is a collection of supervised and unsupervised machine learning algorithms implemented from scratch using Python. It serves as an educational resource for studying model training, parameter optimization, and the implementation of core predictive models. The library provides a variety of supervised learning tools, including linear and logistic regression, decision trees, and support vector machines. It also features unsupervised learning capabilities for discovering patterns in unlabeled datasets through clustering algorithms. Broad capability areas include ensemble learning thro

    Pythonadaboostadaboost-algorithmdecision-tree
    View on GitHub↗10,333
  • rasbt/python-machine-learning-bookrasbt avatar

    rasbt/python-machine-learning-book

    12,614View on GitHub↗

    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
    View on GitHub↗12,614
  • nyandwi/machine_learning_completeNyandwi avatar

    Nyandwi/machine_learning_complete

    4,983View on GitHub↗

    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
    View on GitHub↗4,983
See all 30 alternatives to MachineLearning→