PyroRL
PyroRL is a new reinforcement learning environment built for the simulation of wildfire evacuation. Check out the docs and the demo.
How to Use
First, install our package:
pip install pyrorl
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('pyrorl/PyroRL-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))
A compiled visualization of numerous iterations is seen below. For more examples, check out the examples/ folder in the online repository.
How to Contribute
For information on how to contribute, check out our contribution guide.
Release files for pyrorl 1.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pyrorl-1.0.1.tar.gz | 14.5 kB | Details |
Release files / pyrorl-1.0.1.tar.gz
| Download URL | pyrorl-1.0.1.tar.gz |
|---|---|
| Size | 14.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
df2f87278377397ea3ab62db7a06e031d7fe2ac07f5ebadfb1245d24a04ba8b2
|
|
BLAKE2b-256 checksum How to use checksums |
f3cc5e42e5a708565c18f9c0a0958c0b3689589d3b2f12e76fec7d47fcc0778b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.18
|