You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/blog/2020-09-10-pytorch-ignite.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ The above code is pure PyTorch and is typically user-defined and is required for
148
148
149
149
### Trainer and evaluator's setup
150
150
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.
152
152
153
153
```py
154
154
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
197
197
198
198
### Events and Handers
199
199
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:
201
201
202
202
```py
203
203
fire_event(Events.STARTED)
@@ -998,7 +998,7 @@ A detailed tutorial with distributed helpers is published [here](https://pytorch
998
998
999
999
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).
1000
1000
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/).
1002
1002
1003
1003
In addition, PyTorch-Ignite also provides several tutorials:
0 commit comments