KO
|
EN
gitlite — search
Search
#python
#nextjs
#typescript
#docker
#library
#automation
#react
#game-development
#tailwindcss
#llm
#javascript
#minecraft
ACER
★ 257
Open GitHub ↗
Actor-critic with experience replay
Download README (.md)
Explore Similar Repositories
process
:
An async process dispatcher for Amp.
startbootstrap-blog-post
:
A Bootstrap HTML template for blog posts - created by Start Bootstrap
vue3-table-lite
:
A simple and lightweight data table component for Vue.js 3. Features sorting, paging, row check, dynamic data rendering, supported TypeScript, and more.
MusicRecommend
:
:star: 本科毕业设计:基于内容的音乐推荐系统设计与开发。使用了Pytorch框架构建训练模型代码,使用Django构建了前后端。
pytorch_sac_ae
:
PyTorch implementation of Soft Actor-Critic + Autoencoder(SAC+AE)
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ACER
?
Download (.md)
ACER ==== [](https://raw.githubusercontent.com/Kaixhin/ACER/master/LICENSE.md) Actor-critic with experience replay (ACER) [[1]](#references). Uses batch off-policy updates to improve stability. Trust region updates can be enabled with `--trust-region`. Currently uses full trust region instead of "efficient" trust region (see [issue #1](https://github.com/Kaixhin/ACER/issues/1)). Run with `python main.py <options>`. To run asynchronous advantage actor-critic (A3C) [[2]](#references) (but with a Q-value head), use the `--on-policy` option. Requirements ------------ - [OpenAI Gym](https://gym.openai.com/) - [Plotly](https://plot.ly/python/) - [PyTorch](http://pytorch.org/) To install all dependencies with Anaconda run `conda env create -f environment.yml` and use `source activate acer` to activate the environment. Results -------  Acknowledgements ---------------- - [@ikostrikov](https://github.com/ikostrikov) for [pytorch-a3c](https://github.com/ikostrikov/pytorch-a3c) - [@apaszke](https://github.com/apaszke) for [Reinforcement Learning (DQN) tutorial](http://pytorch.org/tutorials/intermediate/reinforcement_q_learning.html) - [@pfnet](https://github.com/pfnet) for [ChainerRL](https://github.com/pfnet/chainerrl) References ---------- [1] [Sample Efficient Actor-Critic with Experience Replay](https://arxiv.org/abs/1611.01224) [2] [Asynchronous Methods for Deep Reinforcement Learning](https://arxiv.org/abs/1602.01783)