Datasets:
text
stringlengths 2
11.9k
|
---|
7.712786885245902 |
3.004426229508197 |
0.4216393442622951 |
1.4672131147540983 |
2.970983606557377 |
28.256393442622947 |
592.7859154929578 |
1979.0281690140846 |
1301.619718309859 |
304.04647887323944 |
63.12239436619718 |
28.43633802816902 |
7.712786885245902 |
3.004426229508197 |
0.4216393442622951 |
1.4672131147540983 |
2.970983606557377 |
28.256393442622947 |
592.7859154929578 |
1979.0281690140846 |
1301.619718309859 |
304.04647887323944 |
63.12239436619718 |
28.43633802816902 |
7.712786885245902 |
3.004426229508197 |
0.4216393442622951 |
1.4672131147540983 |
2.970983606557377 |
28.256393442622947 |
592.7859154929578 |
1979.0281690140846 |
1301.619718309859 |
304.04647887323944 |
63.12239436619718 |
28.43633802816902 |
7.712786885245902 |
3.004426229508197 |
0.4216393442622951 |
1.4672131147540983 |
2.970983606557377 |
28.256393442622947 |
592.7859154929578 |
1979.0281690140846 |
1301.619718309859 |
304.04647887323944 |
63.12239436619718 |
28.43633802816902 |
7.712786885245902 |
3.004426229508197 |
0.4216393442622951 |
1.4672131147540983 |
2.970983606557377 |
28.256393442622947 |
592.7859154929578 |
1979.0281690140846 |
1301.619718309859 |
304.04647887323944 |
63.12239436619718 |
28.43633802816902 |
7.712786885245902 |
3.004426229508197 |
0.4216393442622951 |
1.4672131147540983 |
2.970983606557377 |
28.256393442622947 |
592.7859154929578 |
1979.0281690140846 |
1301.619718309859 |
304.04647887323944 |
63.12239436619718 |
28.43633802816902 |
7.712786885245902 |
3.004426229508197 |
0.4216393442622951 |
1.4672131147540983 |
2.970983606557377 |
28.256393442622947 |
592.7859154929578 |
1979.0281690140846 |
1301.619718309859 |
304.04647887323944 |
63.12239436619718 |
28.43633802816902 |
7.712786885245902 |
3.004426229508197 |
0.4216393442622951 |
1.4672131147540983 |
2.970983606557377 |
28.256393442622947 |
592.7859154929578 |
1979.0281690140846 |
1301.619718309859 |
304.04647887323944 |
63.12239436619718 |
28.43633802816902 |
7.712786885245902 |
3.004426229508197 |
0.4216393442622951 |
1.4672131147540983 |
MORL4Water
π₯ Dataset Metadata
This repository includes a Croissant metadata file croissant.json
, making MORL4Water compatible with Hugging Face standards for dataset discoverability and interoperability.
Learn more about Croissant metadata.
Welcome to MORL4Water, a flexible Gym environment designed for simulating water management in river systems.
With MORL4Water, you can build detailed water simulations and train or test multi-objective reinforcement learning (MORL) agents.
Currently, we have three river basins implemented as Gym environments:
- Nile River Basin
- Susquehanna River Basin
- Omo River Basin
The toolkit is modular, allowing users to extend or build their own water systems.
For an overview of available system components, please refer to the System Elements.
π Installation and Running
Installation
Ensure you are using Python β₯ 3.11. Install via pip:
pip install morl4water
Running an Example Simulation
import mo_gymnasium
import morl4water.examples
# Create the environment
water_management_system = mo_gymnasium.make('nile-v0')
def run_nile():
obs, info = water_management_system.reset()
print(f'Initial Obs: {obs}')
final_truncated = False
final_terminated = False
for t in range(10):
if not final_terminated and not final_truncated:
action = water_management_system.action_space.sample()
print(f'Action for month {t}: {action}')
(
final_observation,
final_reward,
final_terminated,
final_truncated,
final_info
) = water_management_system.step(action)
print(f'Observation: {final_observation}')
print(f'Reward: {final_reward}')
else:
break
return final_observation
run_nile()
π Documentation
For detailed documentation, visit the MORL4Water Website. Source code is also avaiable at Github.
π License
This project is licensed under the MIT License.
β¨ Citation
If you use MORL4Water in your work, please consider citing it (BibTeX coming soon).
π οΈ Contributing
Contributions are welcome! Feel free to open an issue or pull request.
π‘οΈ About
Developed by Zuzanna Osika, 2025.
- Downloads last month
- 156