-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from rte-france/bd-dev
version 0.6.0
- Loading branch information
Showing
125 changed files
with
6,968 additions
and
573 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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
## System information | ||
- Grid2op version: `1.x.x` | ||
- l2rpn-baselines version: `1.x.x` | ||
- System: `windows, osx, ubuntu16.04, ...` | ||
- Baseline concerned: *eg* `PPO_SB3` or `ExpertAgent` | ||
- *Additional system information* | ||
|
||
## Bug description | ||
<!--A clear and concise description of what the bug is.--> | ||
|
||
## How to reproduce | ||
<!--Explain in detail how to reproduce your issue. The easier it will be for us to | ||
reproduce it, the faster we will be able to work on this.--> | ||
|
||
### Command line (if any) | ||
<!--Ideally, if we execute the following command, the bug will directly be reproduced. | ||
Here put the command line we have to execute--> | ||
```bash | ||
# command line used if any | ||
``` | ||
|
||
### Code snippet (if any) | ||
<!--Expose the python code you want us to test--> | ||
```python | ||
import grid2op | ||
|
||
... # Some code | ||
``` | ||
|
||
## Current output | ||
<!--Describe the output you have--> | ||
``` | ||
The output of the code snippet above | ||
``` | ||
|
||
## Expected output | ||
<!--Describe the output you desire--> | ||
``` | ||
The expected output and/or expected behavior description | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Documentation | ||
about: Anything related to the documentation | ||
title: '' | ||
labels: documentation | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Documentation issue description | ||
<!--A description of what the problem/suggestion is.--> | ||
|
||
## Suggested modifications | ||
<!--Be as concise and clear as possible. | ||
Ideally we could directly copy paste this code in grid2op documentation / notebook etc. | ||
--> | ||
|
||
``` | ||
Please note: | ||
Documentation issues are low priority. | ||
Please provide your suggested modifications to increase processing speed. | ||
Thanks for your understanding. | ||
``` | ||
|
||
## Additional context | ||
<!--Add any other context here.--> |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
name: External contribution | ||
about: Add an external contribution that many people will be able to use | ||
title: '' | ||
labels: external_contrib | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Algorithm implementation | ||
<!--Provide us with the code where your model is implemented--> | ||
|
||
Ex: https://github.com/blablabla/myawesomemodel.git | ||
|
||
Check your model follows the template code for l2rpn-baselines: | ||
|
||
- [ ] it is freely available on github / gitlab | ||
- [ ] it exports a function call exactly `evaluate` | ||
- [ ] it exports a class named like your github / gitlab (for example, if it is | ||
hosted at https://github.com/YourName/MyAwesomeModel) then you need to be able to do something like `from MyAwesomeModel import MyAwesomeModel`). Once | ||
included into l2rpn-baselines, it will be imported with `from l2rpn_baselines.MyAwesomeModel import MyAwesomeModel` | ||
|
||
## License | ||
<!-- Detail here the license that is applicable to your code. It will also be written in the documentation. --> | ||
|
||
ex. I adopted for the MPL v2.0 license | ||
|
||
## Short description | ||
<!--This description will appear on the documentation--> | ||
|
||
|
||
## Required packages (optional) | ||
<!-- Write here the required packages need for your baselines. | ||
If provided, it will be used to allow the use of your baseline easily by installing with | ||
`pip install l2rpn-baselines[MyAwesomeModel]` | ||
(eg. `pip install l2rpn-baselines[PPO_SB3]`) | ||
--> | ||
|
||
- grid2op version xx.yy.zz | ||
- numpy version xx.yy.zz | ||
- etc. | ||
|
||
## Extra references (optional) | ||
<!--You can link acamemic papers, experiment results with your contribution --> | ||
<!--You can also say on which environment your model has been tested and / or | ||
on which it does not work. --> |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Is your feature request related to a problem? Please describe. | ||
<!--A clear and concise description of what the problem is.--> | ||
<!--Ex. I'm always frustrated when [...]--> | ||
<!-- Do not forget to include code you are currently running that is frustrating--> | ||
|
||
Ex. This is what i do: | ||
|
||
```python | ||
import l2rpn_baselines | ||
... | ||
|
||
``` | ||
|
||
## Is your feature request related to a new RL agorithm? Please describe. | ||
<!--If you would like to see a new algorithm in this repository let us know and | ||
describe it as best you can. | ||
Do not hesistate to put links and anything else related that can help | ||
us implement it | ||
--> | ||
|
||
- [ ] yes | ||
- [ ] no | ||
|
||
## Describe the solution you'd like | ||
<!--A clear and concise description of what you want to happen.--> | ||
<!--Don't forget to include the "code of your dream" --> | ||
|
||
Ex. This is how i would like it to be done: | ||
```python | ||
import l2rpn_baselines | ||
... | ||
|
||
# give an example on how your awesome new feature would behave | ||
``` | ||
|
||
## Describe alternatives you've considered | ||
<!--A clear and concise description of any | ||
alternative solutions or features you've considered.--> | ||
|
||
## Additional context | ||
<!--Add any other context about the feature request here.--> |
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
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,7 +1,7 @@ | ||
version: 2 | ||
|
||
python: | ||
version: 3.6 | ||
version: 3.8 | ||
install: | ||
- method: pip | ||
path: . | ||
|
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
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
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
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
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
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
Oops, something went wrong.