crafter icon indicating copy to clipboard operation
crafter copied to clipboard

Benchmarking the Spectrum of Agent Capabilities

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

Hello, In the `gym.Env` class, the first argument is defined as the mode, which is either "human" or "rgb_array". In Crafter, the render function takes only one argument, `size`. This...

I followed the instructions but I got the error: "reset() missing 1 required positional argument: 'self'" When using: env = crafter.Recorder( env, './', save_stats=True, save_video=True, save_episode=True, ) env.reset() Any solution?...

The latest Gym API expects `terminated`, `truncated` rather than just `done` after a `env.step()`, and seeds the environment with `env.reset(seed=seed)` rather than `env.seed(seed=seed)`. It is possible to apply a compatibility...

The examples now work properly.

I'm trying to get DREAMER v3 working, but can't get all dependencies to install. I'm using **>> pip install crafter** or with specific version 1.8.2, and getting the following error...

See Appendix 1 in https://arxiv.org/html/2406.01361v1 |Model | DreamerV3 (2023 preprint) | IRIS |DART| |-|-|-|-| |Steps| 1M |1M | 1M| |Return|11.7±1.9 |9.23±0.56 |12.2±1.67|

For example,zombies can hit the player while skeletons can shoot. We can dig stones by wooden pickaxe; iron ores by stone pickaxe and diamond by iron pickaxe? Just like the...

The error: It looks like the custom env is not compatible with Gym env class so SB3 cannot take as input. How can we change the code and make it...

We encountered a problem while experimenting with Crafter and implementing a save system. The most straightforward approach was to save the seed and the sequence of player actions. However, this...