# pytorch-rdpg **Repository Path**: wangxiaopeng2/pytorch-rdpg ## Basic Information - **Project Name**: pytorch-rdpg - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ====== Recurrent Deterministic Policy Gradient (RDPG) ====== Overview ====== `PyTorch `_ implementation of Recurrent Deterministic Policy Gradient from the paper `Memory-based control with recurrent neural networks `_ 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: ====== * Memory-based control with recurrent neural networks * Continuous control with deep reinforcement learning * DDPG implementation using PyTorch * PyTorch-RL