Skip to content

Commit fa1eeff

Browse files
chore: update submodules (#170)
Co-authored-by: vfdev-5 <vfdev-5@users.noreply.github.com>
1 parent cce5f2f commit fa1eeff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/how-to-guides/06-data-iterator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ trainer.run(infinite_iterator(4))
146146

147147
Same code can be used for validating models.
148148

149-
### Finite iterator with unknown length
149+
## Finite iterator with unknown length
150150

151151
Let's use a finite data iterator but with unknown length (for user). In
152152
case of training, we would like to perform several passes over the
@@ -312,7 +312,7 @@ evaluator.run(data_iter)
312312

313313

314314

315-
### Finite iterator with known length
315+
## Finite iterator with known length
316316

317317
Let's use a finite data iterator with known size for training or validation. If we need to restart the data iterator, we can do this either as in case of unknown size by attaching the restart handler on `@trainer.on(Events.DATALOADER_STOP_ITERATION)`, but here we will do this explicitly on iteration:
318318

0 commit comments

Comments
 (0)