Skip to content

Commit

Permalink
updated references
Browse files Browse the repository at this point in the history
  • Loading branch information
harisankar95 committed Dec 29, 2023
1 parent 72c13a2 commit fd9ffc9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Pipeline](https://github.com/harisankar95/voxelgym2D/actions/workflows/test-main.yml/badge.svg?branch=main)](https://github.com/harisankar95/voxelgym2D/actions/workflows/test-main.yml)
[![codestyle](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

A gym environment for voxel/grid based reinforcement learning for path planning.
A gymnasium environment for voxel/grid based reinforcement learning for path planning.

<div id="solution-table">
<table>
Expand Down Expand Up @@ -109,7 +109,22 @@ The documentation can be found [here](https://harisankar95.github.io/voxelgym2D/

Contributions are welcome! Please open an issue or a pull request.

## Citation

If you use this project in your research, please cite it using the following BibTeX entry:

```bibtex
@misc{Babu_2023,
author={Babu, Harisankar},
title={Reinforcement Learning Based Path Planning for Autonomous Flight},
url={https://publica.fraunhofer.de/handle/publica/442672},
year={2023},
month={Jan},
}
```

## References

- [Gymnasium](https://gymnasium.farama.org/)
- [OpenAI Gym](https://arxiv.org/abs/1606.01540)
- [Stable Baselines 3](http://jmlr.org/papers/v22/20-1364.html)
2 changes: 1 addition & 1 deletion docs/INTRO.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Voxelgym2D

A gym environment for voxel/grid based reinforcement learning for path planning.
A gymnasium environment for voxel/grid based reinforcement learning for path planning.

<div id="solution-table">
<table>
Expand Down
2 changes: 1 addition & 1 deletion examples/train_ppo.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def func(progress_remaining: float) -> float:
normalize_images=True,
features_extractor_class=SimpleCNN,
features_extractor_kwargs=dict(features_dim=2048),
net_arch=[dict(vf=[512, 256], pi=[512, 256])],
net_arch=dict(vf=[512, 256], pi=[512, 256]),
)

model = PPO(
Expand Down

0 comments on commit fd9ffc9

Please sign in to comment.