reaver icon indicating copy to clipboard operation
reaver copied to clipboard

Reaver: Modular Deep Reinforcement Learning Framework. Focused on StarCraft II. Supports Gym, Atari, and MuJoCo.

Results 12 reaver issues
Sort by recently updated
recently updated
newest added

- AlphaStar uses LSTM right? Why there is no RNN in your `rvr.models.build_fully_conv` ?

When I run the demo code shown on the readme page, there is a error occured as below. RuntimeError: v1.summary.FileWriter is not compatible with eager execution. Use `tf.summary.create_file_writer`,or a `with...

Hi, thank you for great reaver, I test the run.py with --env MoveToBeacon --agent ppo --n_envs 1 in macOS without GPU, but get follow error > Traceback (most recent call...

Hi inoryy, I am having an issue with the final step where the agents train in the reaver colab. Everything loads fine until the pygames part. It just shows that...

Hi just wanted to reproduce the results reported by downloading the zip files from [releases](https://github.com/inoryy/reaver/releases) I ran into two issues: 1. In the unzipped folders, there seems to be missing...

bug

Just changed some parameters to utilize the record function of Pysc2. I also changed the ReadMe to show how the new flags works.

import reaver as rvr env = rvr.envs.SC2Env(map_name='MoveToBeacon') agent = rvr.agents.A2C(env.obs_spec(), env.act_spec(), rvr.models.build_fully_conv,rvr.models.SC2MultiPolicy, n_envs=1) agent.run(env) 1st error :..pysc2/lib/features.py:737: FutureWarning: arrays to stack must be passed as a "sequence" type such as...

bug

Hello, thank you for sharing good code. I am trying to solve a DefeatRoaches minigame by using a Relational Network. I found a example code of Transformer for MNIST classification...

enhancement

After carefully inspecting the code, I don't see a way to specify the replay directory or flag. However in previous versions, it seems that this functionality was included.

enhancement