All Projects → Skylark0924 → Machine Learning Is All You Need

Skylark0924 / Machine Learning Is All You Need

🔥🌟《Machine Learning 格物志》: ML + DL + RL basic codes and notes by sklearn, PyTorch, TensorFlow, Keras & the most important, from scratch!💪 This repository is ALL You Need!

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Machine Learning Is All You Need

Deep Reinforcement Learning With Pytorch
PyTorch implementation of DQN, AC, ACER, A2C, A3C, PG, DDPG, TRPO, PPO, SAC, TD3 and ....
Stars: ✭ 1,345 (+677.46%)
Mutual labels:  deep-reinforcement-learning, resnet, dqn, ppo, actor-critic, trpo
Reinforcement Learning Algorithms
This repository contains most of pytorch implementation based classic deep reinforcement learning algorithms, including - DQN, DDQN, Dueling Network, DDPG, SAC, A2C, PPO, TRPO. (More algorithms are still in progress)
Stars: ✭ 426 (+146.24%)
Mutual labels:  deep-reinforcement-learning, dqn, ppo, actor-critic, ddpg, trpo
Deep-Reinforcement-Learning-With-Python
Master classic RL, deep RL, distributional RL, inverse RL, and more using OpenAI Gym and TensorFlow with extensive Math
Stars: ✭ 222 (+28.32%)
Mutual labels:  deep-reinforcement-learning, dqn, ddpg, actor-critic, trpo, ppo
Deeprl Tensorflow2
🐋 Simple implementations of various popular Deep Reinforcement Learning algorithms using TensorFlow2
Stars: ✭ 319 (+84.39%)
Mutual labels:  deep-reinforcement-learning, dqn, ppo, ddpg, trpo
rl implementations
No description or website provided.
Stars: ✭ 40 (-76.88%)
Mutual labels:  deep-reinforcement-learning, lstm, dqn, ddpg, actor-critic
Pytorch Drl
PyTorch implementations of various Deep Reinforcement Learning (DRL) algorithms for both single agent and multi-agent.
Stars: ✭ 233 (+34.68%)
Mutual labels:  deep-reinforcement-learning, dqn, ppo, actor-critic, ddpg
Deeprl algorithms
DeepRL algorithms implementation easy for understanding and reading with Pytorch and Tensorflow 2(DQN, REINFORCE, VPG, A2C, TRPO, PPO, DDPG, TD3, SAC)
Stars: ✭ 97 (-43.93%)
Mutual labels:  deep-reinforcement-learning, dqn, ppo, trpo
Deep Reinforcement Learning
Repo for the Deep Reinforcement Learning Nanodegree program
Stars: ✭ 4,012 (+2219.08%)
Mutual labels:  deep-reinforcement-learning, dqn, ppo, ddpg
Deep Reinforcement Learning Algorithms
31 projects in the framework of Deep Reinforcement Learning algorithms: Q-learning, DQN, PPO, DDPG, TD3, SAC, A2C and others. Each project is provided with a detailed training log.
Stars: ✭ 167 (-3.47%)
Mutual labels:  deep-reinforcement-learning, dqn, ppo, ddpg
Reinforcement Learning With Tensorflow
Simple Reinforcement learning tutorials, 莫烦Python 中文AI教学
Stars: ✭ 6,948 (+3916.18%)
Mutual labels:  dqn, ppo, actor-critic, ddpg
Explorer
Explorer is a PyTorch reinforcement learning framework for exploring new ideas.
Stars: ✭ 54 (-68.79%)
Mutual labels:  deep-reinforcement-learning, dqn, actor-critic, ppo
Pytorch Rl
This repository contains model-free deep reinforcement learning algorithms implemented in Pytorch
Stars: ✭ 394 (+127.75%)
Mutual labels:  gan, deep-reinforcement-learning, dqn, ddpg
Text classification
Text Classification Algorithms: A Survey
Stars: ✭ 1,276 (+637.57%)
Mutual labels:  convolutional-neural-networks, logistic-regression, random-forest, decision-trees
Minimalrl
Implementations of basic RL algorithms with minimal lines of codes! (pytorch based)
Stars: ✭ 2,051 (+1085.55%)
Mutual labels:  deep-reinforcement-learning, dqn, ppo, ddpg
Run Skeleton Run
Reason8.ai PyTorch solution for NIPS RL 2017 challenge
Stars: ✭ 83 (-52.02%)
Mutual labels:  ppo, actor-critic, ddpg, trpo
Easy Rl
强化学习中文教程,在线阅读地址:https://datawhalechina.github.io/easy-rl/
Stars: ✭ 3,004 (+1636.42%)
Mutual labels:  deep-reinforcement-learning, dqn, ppo, ddpg
Mushroom Rl
Python library for Reinforcement Learning.
Stars: ✭ 442 (+155.49%)
Mutual labels:  deep-reinforcement-learning, dqn, ddpg, trpo
Elegantrl
Lightweight, efficient and stable implementations of deep reinforcement learning algorithms using PyTorch.
Stars: ✭ 575 (+232.37%)
Mutual labels:  deep-reinforcement-learning, dqn, ppo, ddpg
Rainy
☔ Deep RL agents with PyTorch☔
Stars: ✭ 39 (-77.46%)
Mutual labels:  deep-reinforcement-learning, dqn, ddpg, ppo
Autonomous Learning Library
A PyTorch library for building deep reinforcement learning agents.
Stars: ✭ 425 (+145.66%)
Mutual labels:  deep-reinforcement-learning, dqn, ppo, ddpg

Machine-Learning-Basic-Codes🏆

朱子云:

所谓致知在格物者,言欲致吾之知,在即物而穷其理也。盖人心之灵,莫不有知,而天下之物,莫不有理。惟于理有未穷,故其知有不尽也。是以大学始教,必使学者即凡天下之物,莫不因其已知之理而益穷之,以求至乎其极。至于用力之久,而一时豁然贯通焉,则众物之表里精粗无不到,而吾心之全体大用无不明矣。

📐📏

格物 (Ko Wu) which means 'investigate the essence of things' in English is a key method for study and better understanding of the knowledge. It is proposed by ancient Chinese philosophers about 2000 years ago and has a profound impact on later generations. The spirit of Ko Wu asks us to not only learn how to use knowledge, but also clearly understand the intrinsic theory. Therefore, it is necessary to re-implement ML algorithms by ourselves to figure out what exactly they did and why they succeed.

This repository aims to implement popular Machine Learning and Deep Learning algorithms by both pure python and use open-source frameworks.

  • Common Machine Learning Part: switch by use_sklearn flag in the main function;
  • Deep Learning Part: four implement methods for each algorithm (use_sklearn, use_keras, use_torch and self_implement);
  • Applications Part: RL + NLP + CV
  • New trend: GNNs

Welcome everyone to help me finish this Ko Wu project by pulling requests or giving me some suggestions and issues!!!

关联知乎专栏 Associated Zhihu Blog

RL in Robotics

Machine Learning 格物志

代码目录 Code Catalog

Regression

  1. Single Linear Regression
  2. Multiple Linear Regression

Classification

  1. Logistic Regression
  2. KNN
  3. Support Vector Machine
  4. Naive Bayes

Regression & Classification

  1. Decision Tree
  2. Random Forest

Neural Network

  1. Feedforward Neural Network
  2. Convolutional Neural Network
  3. LSTM

Unsupervised Learning

  1. PCA
  2. K-Means

Ensemble Model

  1. Boosting

Reinforcement Learning

  1. Value Based Methods: Q-learning(Tabular), DQN
  2. Policy Based Methods: Vanilla Policy Gradient, TRPO, PPO
  3. Actor-Critic Structure: AC, A2C, A3C
  4. Deep Deterministic Policy Gradient: DDPG, DDPG C++ (Undone), TD3
  5. Soft Actor-Critic

Computer Vision

  1. GAN
  2. Resnet: Pytorch version, libtorch C++ version

Natural Language Processing

  1. Attention mechanism
  2. Transformer
  3. BERT

Graph Neural Networks

  1. Graph Neural Network (GNN)
  2. Graph Convolutional Neural Network (GCN)
  3. Graph Attention Networks (GAT)
  4. GraphSAGE
  5. GraphRNN
  6. Variational Graph Auto-Encoders (GAE)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].