All Projects → fshamshirdar → Pytorch Rdpg

fshamshirdar / Pytorch Rdpg

PyTorch Implementation of the RDPG (Recurrent Deterministic Policy Gradient)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pytorch Rdpg

Top Deep Learning
Top 200 deep learning Github repositories sorted by the number of stars.
Stars: ✭ 1,365 (+5360%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
Tensorflow Tutorial
TensorFlow and Deep Learning Tutorials
Stars: ✭ 748 (+2892%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
Torch Ac
Recurrent and multi-process PyTorch implementation of deep reinforcement Actor-Critic algorithms A2C and PPO
Stars: ✭ 70 (+180%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
Ml In Tf
Get started with Machine Learning in TensorFlow with a selection of good reads and implemented examples!
Stars: ✭ 45 (+80%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
mmn
Moore Machine Networks (MMN): Learning Finite-State Representations of Recurrent Policy Networks
Stars: ✭ 39 (+56%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
SharkStock
Automate swing trading using deep reinforcement learning. The deep deterministic policy gradient-based neural network model trains to choose an action to sell, buy, or hold the stocks to maximize the gain in asset value. The paper also acknowledges the need for a system that predicts the trend in stock value to work along with the reinforcement …
Stars: ✭ 63 (+152%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
Learning To Communicate Pytorch
Learning to Communicate with Deep Multi-Agent Reinforcement Learning in PyTorch
Stars: ✭ 236 (+844%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
Trending Deep Learning
Top 100 trending deep learning repositories sorted by the number of stars gained on a specific day.
Stars: ✭ 543 (+2072%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
pomdp-baselines
Simple (but often Strong) Baselines for POMDPs in PyTorch - ICML 2022
Stars: ✭ 162 (+548%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
deep-blueberry
If you've always wanted to learn about deep-learning but don't know where to start, then you might have stumbled upon the right place!
Stars: ✭ 17 (-32%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
RCNN MDP
Code base for solving Markov Decision Processes and Reinforcement Learning problems using Recurrent Convolutional Neural Networks.
Stars: ✭ 65 (+160%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
Deep Trading Agent
Deep Reinforcement Learning based Trading Agent for Bitcoin
Stars: ✭ 573 (+2192%)
Mutual labels:  deep-reinforcement-learning, recurrent-neural-networks
Softlearning
Softlearning is a reinforcement learning framework for training maximum entropy policies in continuous domains. Includes the official implementation of the Soft Actor-Critic algorithm.
Stars: ✭ 713 (+2752%)
Mutual labels:  deep-reinforcement-learning
Osim Rl
Reinforcement learning environments with musculoskeletal models
Stars: ✭ 763 (+2952%)
Mutual labels:  deep-reinforcement-learning
Keras Attention
Visualizing RNNs using the attention mechanism
Stars: ✭ 697 (+2688%)
Mutual labels:  recurrent-neural-networks
Carla
Open-source simulator for autonomous driving research.
Stars: ✭ 7,012 (+27948%)
Mutual labels:  deep-reinforcement-learning
Slm Lab
Modular Deep Reinforcement Learning framework in PyTorch. Companion library of the book "Foundations of Deep Reinforcement Learning".
Stars: ✭ 904 (+3516%)
Mutual labels:  deep-reinforcement-learning
Machine Learning Curriculum
💻 Make machines learn so that you don't have to struggle to program them; The ultimate list
Stars: ✭ 761 (+2944%)
Mutual labels:  recurrent-neural-networks
Gibsonenv
Gibson Environments: Real-World Perception for Embodied Agents
Stars: ✭ 666 (+2564%)
Mutual labels:  deep-reinforcement-learning
Pytorch Rl
PyTorch implementation of Deep Reinforcement Learning: Policy Gradient methods (TRPO, PPO, A2C) and Generative Adversarial Imitation Learning (GAIL). Fast Fisher vector product TRPO.
Stars: ✭ 658 (+2532%)
Mutual labels:  deep-reinforcement-learning

====== Recurrent Deterministic Policy Gradient (RDPG)

Overview

PyTorch <https://github.com/pytorch/pytorch>_ implementation of Recurrent Deterministic Policy Gradient from the paper Memory-based control with recurrent neural networks <https://arxiv.org/abs/1512.04455>_

Requirements .. code-block:: console

$ python -m pip install --upgrade pip
$ pip install -r requirements.txt

Run

  • Training:

    • Pendulum-v0

    .. code-block:: console

    $ python main.py --env Pendulum-v0 --max_episode_length 1000 --trajectory_length 10 --debug
    
  • Testing (TODO)

References:

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