Skip to content

Commit 9d8b6ac

Browse files
authored
Fix bad links
1 parent 3315b00 commit 9d8b6ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/blog/2020-09-10-pytorch-ignite.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ The above code is pure PyTorch and is typically user-defined and is required for
148148

149149
### Trainer and evaluator's setup
150150

151-
`model`'s trainer is an engine that loops multiple times over the training dataset and updates model parameters. Let's see how we define such a trainer using PyTorch-Ignite. To do this, PyTorch-Ignite introduces the generic class [`Engine`](https://pytorch.org/ignite/concepts.html#engine) that is an abstraction that loops over the provided data, executes a processing function and returns a result. The only argument needed to construct the trainer is a `train_step` function.
151+
`model`'s trainer is an engine that loops multiple times over the training dataset and updates model parameters. Let's see how we define such a trainer using PyTorch-Ignite. To do this, PyTorch-Ignite introduces the generic class [`Engine`](https://pytorch-ignite.ai/concepts/01-engine/) that is an abstraction that loops over the provided data, executes a processing function and returns a result. The only argument needed to construct the trainer is a `train_step` function.
152152

153153
```py
154154
from ignite.engine import Engine
@@ -197,7 +197,7 @@ The type of output of the process functions (i.e. `loss` or `y_pred, y` in the a
197197

198198
### Events and Handers
199199

200-
To improve the engine’s flexibility, a configurable event system is introduced to facilitate the interaction on each step of the run. Namely, `Engine` allows to add handlers on various [`Events`](https://pytorch.org/ignite/concepts.html#events-and-handlers) that are triggered during the run. When an event is triggered, attached handlers (named functions, lambdas, class functions) are executed. Here is a schema for when built-in events are triggered by default:
200+
To improve the engine’s flexibility, a configurable event system is introduced to facilitate the interaction on each step of the run. Namely, `Engine` allows to add handlers on various [`Events`](https://pytorch-ignite.ai/concepts/02-events-and-handlers/) that are triggered during the run. When an event is triggered, attached handlers (named functions, lambdas, class functions) are executed. Here is a schema for when built-in events are triggered by default:
201201

202202
```py
203203
fire_event(Events.STARTED)
@@ -998,7 +998,7 @@ A detailed tutorial with distributed helpers is published [here](https://pytorch
998998

999999
There is a list of research papers with code, blog articles, tutorials, toolkits and other projects that are using PyTorch-Ignite. A detailed overview can be found [here](https://github.com/pytorch/ignite#projects-using-ignite).
10001000

1001-
To start your project using PyTorch-Ignite is simple and can require only to pass through this quick-start example and [library "Concepts"](https://pytorch.org/ignite/concepts.html).
1001+
To start your project using PyTorch-Ignite is simple and can require only to pass through this quick-start example and [library "Concepts"](https://pytorch-ignite.ai/concepts/).
10021002

10031003
In addition, PyTorch-Ignite also provides several tutorials:
10041004

0 commit comments

Comments
 (0)