Skip to content

Commit

Permalink
DOC boosting: fix description of mindelta
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbrodbeck committed Feb 9, 2017
1 parent 6d44b45 commit 20bc81e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions eelbrain/_trf/_boosting.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,9 @@ def boosting(y, x, tstart, tstop, scale_data=True, delta=0.005, mindelta=None,
delta : scalar
Step for changes in the kernel.
mindelta : scalar
If set, ``delta`` is divided in half after each unsuccessful iteration
until ``delta < mindelta``. The default is ``mindelta = delta``.
If the error for the training data can't be reduced, divide ``delta``
in half until ``delta < mindelta``. The default is ``mindelta = delta``,
i.e. ``delta`` is constant.
error : 'l2' | 'l1'
Error function to use (default is ``l2``).
Expand Down

0 comments on commit 20bc81e

Please sign in to comment.