All Projects → inoryy → Tensorflow2 Deep Reinforcement Learning

inoryy / Tensorflow2 Deep Reinforcement Learning

Code accompanying the blog post "Deep Reinforcement Learning with TensorFlow 2.1"

Projects that are alternatives of or similar to Tensorflow2 Deep Reinforcement Learning

Intro To Deep Learning
A collection of materials to help you learn about deep learning
Stars: ✭ 103 (-49.51%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Rl Quadcopter
Teach a Quadcopter How to Fly!
Stars: ✭ 124 (-39.22%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Reinforcementlearning Atarigame
Pytorch LSTM RNN for reinforcement learning to play Atari games from OpenAI Universe. We also use Google Deep Mind's Asynchronous Advantage Actor-Critic (A3C) Algorithm. This is much superior and efficient than DQN and obsoletes it. Can play on many games
Stars: ✭ 118 (-42.16%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Rl Course Experiments
Stars: ✭ 73 (-64.22%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
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 (-18.14%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Mit Deep Learning
Tutorials, assignments, and competitions for MIT Deep Learning related courses.
Stars: ✭ 8,912 (+4268.63%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Advanced Deep Learning And Reinforcement Learning Deepmind
🎮 Advanced Deep Learning and Reinforcement Learning at UCL & DeepMind | YouTube videos 👉
Stars: ✭ 121 (-40.69%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Deep Reinforcement Learning For Automated Stock Trading Ensemble Strategy Icaif 2020
Deep Reinforcement Learning for Automated Stock Trading: An Ensemble Strategy. ICAIF 2020. Please star.
Stars: ✭ 518 (+153.92%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Finrl Library
FinRL: Financial Reinforcement Learning Framework. Please star. 🔥
Stars: ✭ 3,037 (+1388.73%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Machine Learning And Data Science
This is a repository which contains all my work related Machine Learning, AI and Data Science. This includes my graduate projects, machine learning competition codes, algorithm implementations and reading material.
Stars: ✭ 137 (-32.84%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Minecraft Reinforcement Learning
Deep Recurrent Q-Learning vs Deep Q Learning on a simple Partially Observable Markov Decision Process with Minecraft
Stars: ✭ 33 (-83.82%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Pytorch sac
PyTorch implementation of Soft Actor-Critic (SAC)
Stars: ✭ 174 (-14.71%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Deeprl Tutorials
Contains high quality implementations of Deep Reinforcement Learning algorithms written in PyTorch
Stars: ✭ 748 (+266.67%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Learning Notes
💡 Repo of learning notes in DRL and DL, theory, codes, models and notes maybe.
Stars: ✭ 90 (-55.88%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Hands On Reinforcement Learning With Python
Master Reinforcement and Deep Reinforcement Learning using OpenAI Gym and TensorFlow
Stars: ✭ 640 (+213.73%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Drl Portfolio Management
CSCI 599 deep learning and its applications final project
Stars: ✭ 121 (-40.69%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Introtodeeplearning
Lab Materials for MIT 6.S191: Introduction to Deep Learning
Stars: ✭ 4,955 (+2328.92%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Practical rl
A course in reinforcement learning in the wild
Stars: ✭ 4,741 (+2224.02%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
Deep Qlearning Agent For Traffic Signal Control
A framework where a deep Q-Learning Reinforcement Learning agent tries to choose the correct traffic light phase at an intersection to maximize traffic efficiency.
Stars: ✭ 136 (-33.33%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning
2048 Deep Reinforcement Learning
Trained A Convolutional Neural Network To Play 2048 using Deep-Reinforcement Learning
Stars: ✭ 169 (-17.16%)
Mutual labels:  jupyter-notebook, deep-reinforcement-learning

Deep Reinforcement Learning with TensorFlow 2.1

Source code accompanying the blog post Deep Reinforcement Learning with TensorFlow 2.1.

In the blog post, I showcase the TensorFlow 2.1 features through the lens of deep reinforcement learning by implementing an advantage actor-critic agent, solving the classic CartPole-v0 environment. While the goal is to showcase TensorFlow 2.1, I also provide a brief overview of the DRL methods.

You can view the code either as a notebook, a self-contained script, or execute it online with Google Colab.

To run it locally, install the dependencies with pip install -r requirements.txt, and then execute python a2c.py.

To control various hyperparameters, specify them as flags, e.g. python a2c.py --batch_size=256.

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].