From 8ad59d36df26dabdce3ddf04034a5ab6983cb24c Mon Sep 17 00:00:00 2001 From: Theofilos Papapanagiotou Date: Thu, 11 Jun 2020 16:43:44 +0200 Subject: [PATCH] documentation: fix typo in MXNet documentation --- doc/frameworks/mxnet/using_mxnet.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/frameworks/mxnet/using_mxnet.rst b/doc/frameworks/mxnet/using_mxnet.rst index c91522a219..abf87094f5 100644 --- a/doc/frameworks/mxnet/using_mxnet.rst +++ b/doc/frameworks/mxnet/using_mxnet.rst @@ -176,7 +176,7 @@ The default serialization system generates three files: - ``model-symbol.json``: The MXNet ``Module`` ``Symbol`` serialization, produced by invoking ``save`` on the ``symbol`` property of the ``Module`` being saved. -- ``modle.params``: The MXNet ``Module`` parameters, produced by +- ``model.params``: The MXNet ``Module`` parameters, produced by invoking ``save_params`` on the ``Module`` being saved. You can provide your own save function. This is useful if you are not working with the ``Module`` API or you need special processing.