Skip to content

Commit 8a8ef43

Browse files
Junyoung Kimfchollet
authored andcommitted
Add a link to the metrics document (keras-team#13334)
Link to the metrics document(/metrics) was missing in 'Compilation' section. Added one just as other explained arguments.
1 parent a0335a3 commit 8a8ef43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎docs/templates/getting-started/sequential-model-guide.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Before training a model, you need to configure the learning process, which is do
5252

5353
- An optimizer. This could be the string identifier of an existing optimizer (such as `rmsprop` or `adagrad`), or an instance of the `Optimizer` class. See: [optimizers](/optimizers).
5454
- A loss function. This is the objective that the model will try to minimize. It can be the string identifier of an existing loss function (such as `categorical_crossentropy` or `mse`), or it can be an objective function. See: [losses](/losses).
55-
- A list of metrics. For any classification problem you will want to set this to `metrics=['accuracy']`. A metric could be the string identifier of an existing metric or a custom metric function.
55+
- A list of metrics. For any classification problem you will want to set this to `metrics=['accuracy']`. A metric could be the string identifier of an existing metric or a custom metric function. See: [metrics](/metrics).
5656

5757
```python
5858
# For a multi-class classification problem

0 commit comments

Comments
 (0)