forked from apache/mxnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Module tutorial improvements and metric API doc linked (apache#6532)
* Module tutorial improvements * prerequisite section added * Metric API md file created and linked from index page * link to fit function added * section rearranged * fixes after review * fixes after review
- Loading branch information
Showing
3 changed files
with
122 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,4 +33,5 @@ imported by running: | |
io | ||
optimization | ||
callback | ||
metric | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Evaluation Metric API | ||
|
||
```eval_rst | ||
.. currentmodule:: mxnet.metric | ||
``` | ||
|
||
## Overview | ||
|
||
This document lists all the evaluation metrics available to evaluate | ||
the performance of a learned model. | ||
|
||
```eval_rst | ||
.. autosummary:: | ||
:nosignatures: | ||
mxnet.metric | ||
``` | ||
|
||
## API Reference | ||
|
||
<script type="text/javascript" src='../../_static/js/auto_module_index.js'></script> | ||
|
||
```eval_rst | ||
.. automodule:: mxnet.metric | ||
:members: | ||
``` | ||
|
||
<script>auto_index("api-reference");</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters