Skip to content

Commit 17db258

Browse files
committed
fixing links on the notebooks [skip ci]
Signed-off-by: DONNOT Benjamin <[email protected]>
1 parent 341db43 commit 17db258

20 files changed

+28
-27
lines changed

examples/backend_integration/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The way these objects behave and the equations they follow are totally irrelevan
3636
Traditionnally, the "Backend" will rely on another tools that carries out the computation, implements the equaitons, solve it etc. In this setting, the "Backend" is some "glue code" that map the representation of your solver to grid2op expected functions. Some example of backend include:
3737

3838
- [PandapowerBackend](https://grid2op.readthedocs.io/en/latest/backend.html#grid2op.Backend.PandaPowerBackend): which is the default backend
39-
- [EducPandaPowerBackend](https://github.com/rte-france/Grid2Op/blob/master/grid2op/Backend/EducPandaPowerBackend.py): which is a "simplification" of the previous backend for education purpose. So we highly recommend you to check it out :-)
39+
- [EducPandaPowerBackend](https://github.com/Grid2Op/grid2op/blob/master/grid2op/Backend/EducPandaPowerBackend.py): which is a "simplification" of the previous backend for education purpose. So we highly recommend you to check it out :-)
4040
- [lightsim2grid](https://lightsim2grid.readthedocs.io/en/latest/lightsimbackend.html#lightsim2grid.lightSimBackend.LightSimBackend) which is a backend that uses a port of some function of pandapower in c++ for speed.
4141

4242
We are also aware that some powerflows such as [Hades2](https://github.com/rte-france/hades2-distribution) and other commercial solvers such as PowerFactory are already connected with grid2op, so not open source at the moment.

getting_started/00_Introduction.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"metadata": {},
66
"source": [
77
"# Introduction\n",
8-
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/rte-france/Grid2Op/master)"
8+
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/Grid2Op/grid2op/master)"
99
]
1010
},
1111
{

getting_started/00_SmallExample.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"metadata": {},
66
"source": [
77
"# Some experiments on a 5 substations test case\n",
8-
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/rte-france/Grid2Op/master)"
8+
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/Grid2Op/grid2op/master)"
99
]
1010
},
1111
{

getting_started/01_Grid2opFramework.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"metadata": {},
66
"source": [
77
"# This notebook present the most basic use of Grid2Op\n",
8-
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/rte-france/Grid2Op/master)"
8+
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/Grid2Op/grid2op/master)"
99
]
1010
},
1111
{

getting_started/02_Observation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"metadata": {},
66
"source": [
77
"# This Notebook will develop how to build an Agent and assess its performance.\n",
8-
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/rte-france/Grid2Op/master)"
8+
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/Grid2Op/grid2op/master)"
99
]
1010
},
1111
{

getting_started/03_Action.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# This Notebook focuses on the Action class\n",
88
"\n",
9-
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/rte-france/Grid2Op/master)"
9+
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/Grid2Op/grid2op/master)"
1010
]
1111
},
1212
{
@@ -978,7 +978,7 @@
978978
"1) the combination of actions can be **illegal** depending on the game rules in place. For example if at any given step you can only do an action on one single powerline, but you combine an action disconnecting two (or more) powerlines. In this case the resulting action will be illegal.\n",
979979
"2) the combination of actions might make the resulting action \"**ambiguous**\" (meaning that \"grid2op cannot make sense of what you are trying to do\"). This can happen for example if you mix action on topology and on powerline status. For example, if you decide to affect the \"origin\" side of powerline `i` to bus 1 in an action but you also say to disconnect powerline `i` in a second action. Grid2op currently will not \"chose for you\" what you want to do\\*.\n",
980980
"\n",
981-
"\\* Depending on the outcome of issue https://github.com/rte-france/Grid2Op/issues/201 we might chose in this case to have the last action added \"take the priority\" over the previous one. This might \"solve\" this specific problem but will also introduce a really important role in the order on which actions are summed. "
981+
"\\* Depending on the outcome of issue https://github.com/Grid2Op/grid2op/issues/201 we might chose in this case to have the last action added \"take the priority\" over the previous one. This might \"solve\" this specific problem but will also introduce a really important role in the order on which actions are summed. "
982982
]
983983
},
984984
{

getting_started/04_TrainingAnAgent.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"metadata": {},
66
"source": [
77
"# Training Agent, action converters and l2rpn_baselines\n",
8-
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/rte-france/Grid2Op/master)"
8+
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/Grid2Op/grid2op/master)"
99
]
1010
},
1111
{
@@ -434,7 +434,7 @@
434434
"from l2rpn_baselines.PP0_SB3 import train\n",
435435
"```\n",
436436
"\n",
437-
"You can have a look at the \"examples\" section of the l2rpn baselines repository (https://github.com/rte-france/l2rpn-baselines/tree/master/examples)\n",
437+
"You can have a look at the \"examples\" section of the l2rpn baselines repository (https://github.com/grid2op/l2rpn-baselines/tree/master/examples)\n",
438438
"\n",
439439
"\n",
440440
"\n"

getting_started/05_StudyYourAgent.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"metadata": {},
66
"source": [
77
"# Basic Agent Study\n",
8-
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/rte-france/Grid2Op/master)"
8+
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/Grid2Op/grid2op/master)"
99
]
1010
},
1111
{

getting_started/06_Redispatching_Curtailment.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"metadata": {},
66
"source": [
77
"# In this notebook you will learn about the redispatching and curtailment capabilities offered by grid2op.\n",
8-
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/rte-france/Grid2Op/master)"
8+
"Try me out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/Grid2Op/grid2op/master)"
99
]
1010
},
1111
{

getting_started/07_MultiEnv.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"metadata": {},
66
"source": [
77
"# Agent, RL and MultiEnvironment\n",
8-
"Try this notebook out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/rte-france/Grid2Op/master)"
8+
"Try this notebook out interactively with: [![Binder](./img/badge_logo.svg)](https://mybinder.org/v2/gh/Grid2Op/grid2op/master)"
99
]
1010
},
1111
{

0 commit comments

Comments
 (0)