forked from vwxyzjn/cleanrl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce better contribution guide (vwxyzjn#154)
* Introduce better contribution guide * Fix typo * Remove internal memo * Update license
- Loading branch information
Showing
2 changed files
with
106 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,60 @@ | ||
## Contributing to CleanRL | ||
|
||
Thank you for being interested in contributing to our project. All kinds of contribution are welcome. | ||
👍🎉 Thank you for taking the time to contribute! 🎉👍 | ||
|
||
Below are some steps to help you get started: | ||
|
||
1. 👋 Join our discord channel at https://discord.gg/D6RCjA6sVT | ||
to say hi!! | ||
2. 🔨 Pick something you want to work at and let us know on slack. You could | ||
* Tackle issues with the [`help wanted`](https://github.com/vwxyzjn/cleanrl/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) flag | ||
* Bug fixes and various improvements on existing algorithms. | ||
* **Contribute to the Open RL Benchmark** | ||
* You could add new algorithms or new games to be featured in the Open RL Benchmark (http://benchmark.cleanrl.dev/) | ||
* In this case, please contact me (Costa) directly on slack. I will add you to the CleanRL's Team at Weight and Biases (https://wandb.ai/cleanrl). | ||
So if you would *like*, your experiments can be featured on the Open RL Benchmark (http://benchmark.cleanrl.dev/) | ||
3. 🎇 Submit an PR and get marged! | ||
Feel free to open an issue or a Pull Request if you have any questions or suggestions. You can also [join our Discord](https://discord.gg/D6RCjA6sVT) and ask questions there. If you plan to work on an issue, let us know in the issue thread to avoid duplicate work. | ||
|
||
Good luck and have fun! | ||
|
||
## Dev Setup | ||
|
||
```bash | ||
poetry install | ||
poetry install -E atari | ||
poetry install -E pybullet | ||
``` | ||
|
||
Then you can run the scripts under the poetry environment in two ways: `poetry run` or `poetry shell`. | ||
|
||
* `poetry run`: | ||
By prefixing `poetry run`, your command will run in poetry's virtual environment. For example, try running | ||
```bash | ||
poetry run python ppo.py | ||
``` | ||
* `poetry shell`: | ||
First, activate the poetry's virtual environment by executing `poetry shell`. Then, the name of the poetry's | ||
virtual environment (e.g. `(cleanrl-ghSZGHE3-py3.9)`) should appear in the left side of your shell. | ||
Afterwards, you can directly run | ||
```bash | ||
python ppo.py | ||
## Code Formatting | ||
We use [Pre-commit](https://pre-commit.com/) to sort dependencies, remove unused variables and imports, format code using black, and check word spelling. You can run the following command: | ||
```bash | ||
poetry run pre-commit run --all-files | ||
``` | ||
|
||
## Contributing new algorithms | ||
|
||
We welcome the contributions of new algorithms. | ||
|
||
**Before opening a pull request**, please open an issue first to discuss with us since this is likely a sizable effort. Once we agree on the plan, feel free to make a PR to include the new algorithm. | ||
|
||
To help ease the review process, here is a checklist template when contributing a new algorithm. See https://github.com/vwxyzjn/cleanrl/pull/137 as an example. | ||
|
||
- [ ] I've read the [CONTRIBUTION](https://github.com/vwxyzjn/cleanrl/blob/master/CONTRIBUTING.md) guide (**required**). | ||
- [ ] I have ensured `pre-commit run --all-files` passes (**required**). | ||
- [ ] I have contacted @vwxyzjn to obtain access to the [openrlbenchmark W&B team](https://wandb.ai/openrlbenchmark) (**required**). | ||
- [ ] I have tracked applicable experiments in [openrlbenchmark/cleanrl](https://wandb.ai/openrlbenchmark/cleanrl) with `--capture-video` flag toggled on (**required**). | ||
- [ ] I have updated the documentation and previewed the changes via `mkdocs serve`. | ||
- [ ] I have explained note-worthy implementation details. | ||
- [ ] I have explained the logged metrics. | ||
- [ ] I have added links to the original paper and related papers (if applicable). | ||
- [ ] I have added links to the PR related to the algorithm. | ||
- [ ] I have created a table comparing my results against those from reputable sources (i.e., the original paper or other reference implementation). | ||
- [ ] I have added the learning curves (in PNG format with `width=500` and `height=300`). | ||
- [ ] I have added links to the tracked experiments. | ||
- [ ] I have updated the tests accordingly (if applicable). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters