Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/optim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMaxReimann <max.reimann@student.hpi.uni-potsdam.de>2015-12-30 14:19:53 +0300
committerMaxReimann <max.reimann@student.hpi.uni-potsdam.de>2015-12-30 14:19:53 +0300
commit7cee02fffc5de7eac014f22b7562dcd2fcd5a440 (patch)
treea4aa66506797be58bdfd5e7f9443a501e6bb41dd /doc
parent5ce8b93f9f9f89a8c029b7cc2adc420ed4267a67 (diff)
fix indentation, remove uneeded opfunc arguments and iterations variable
Diffstat (limited to 'doc')
-rw-r--r--doc/index.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/index.md b/doc/index.md
index e8229be..a399206 100644
--- a/doc/index.md
+++ b/doc/index.md
@@ -400,8 +400,7 @@ Arguments:
* `state.ftarget` : float, target function value
* `state.popsize` : population size. If this is left empty, 4 + int(3 * log(|x|)) will be used
* `state.ftarget` : stop if fitness < ftarget
-* `state.verd_disp` : display info on console every verb_disp iteration, 0 for never
-* `state.args` : optional arguments to `opfunc`
+* `state.verb_disp` : display info on console every verb_disp iteration, 0 for never
Returns:
* `x*` : the new `x` vector, at the optimal point