Skip to content

Commit 414e8c9

Browse files
Fix code block linter error.
PiperOrigin-RevId: 508109264
1 parent 81dd2cc commit 414e8c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/en/r1/guide/checkpoints.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Suppose you call the Estimator's `train` method. For example:
5656

5757
```python
5858
classifier.train(
59-
input_fn=lambda:train_input_fn(train_x, train_y, batch_size=100),
60-
steps=200)
59+
input_fn=lambda: train_input_fn(train_x, train_y, batch_size=100),
60+
steps=200)
6161
```
6262

6363
As suggested by the following diagrams, the first call to `train`

0 commit comments

Comments
 (0)