An RL OpenAI Gym Environment for Wildfire Evacuation
Project description
Wildfire Evacuation RL Gym Environment
A new reinforcement learning OpenAI Gym environment built for the simulation of wildfire evacuation. Check out the docs and the demo.
How To Use
First, install our package:
pip install wildfire-evac
To use our wildfire evacuation environment, define the dimensions of your grid, where the populated areas are, the paths, and which populated areas can use which path. See an example below.
# Create environment
kwargs = {
'num_rows': num_rows,
'num_cols': num_cols,
'populated_areas': populated_areas,
'paths': paths,
'paths_to_pops': paths_to_pops
}
env = gymnasium.make('wildfire_evac/WildfireEvacuation-v0', **kwargs)
# Run a simple loop of the environment
env.reset()
for _ in range(10):
# Take action and observation
action = env.action_space.sample()
observation, reward, terminated, truncated, info = env.step(action)
# Render environment and print reward
env.render()
print("Reward: " + str(reward))
For more examples, check out examples/.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyrorl-0.0.1.tar.gz
(8.3 kB
view details)
File details
Details for the file pyrorl-0.0.1.tar.gz.
File metadata
- Download URL: pyrorl-0.0.1.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a9ada8a769cad6d0b60e51e36f3ace74cf830ef3d8f14052b76dd1957b87b87
|
|
| MD5 |
8e5d169499d98c558cb80d6435763401
|
|
| BLAKE2b-256 |
7d7bceaad2d07ec22c3dc9489bb640c6bf59e41d6a63f0c0400060075e1b02b7
|