Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/874#discussion_r33658585
--- Diff: docs/libs/ml/svm.md ---
@@ -144,30 +145,42 @@ The SVM implementation can be controlled by the
following parameters:
<td><strong>Stepsize</strong></td>
<td>
<p>
- Defines the initial step size for the updates of the weight
vector.
- The larger the step size is, the larger will be the
contribution of the weight vector updates to the next weight vector value.
+ Defines the initial step size for the updates of the weight
vector.
+ The larger the step size is, the larger will be the
contribution of the weight vector updates to the next weight vector value.
The effective scaling of the updates is
$\frac{stepsize}{blocks}$.
- This value has to be tuned in case that the algorithm becomes
unstable.
+ This value has to be tuned in case that the algorithm becomes
unstable.
(Default value: <strong>1.0</strong>)
</p>
</td>
</tr>
<tr>
- <td><strong>Seed</strong></td>
+ <td><strong>Threshold</strong></td>
<td>
<p>
- Defines the seed to initialize the random number generator.
- The seed directly controls which data points are chosen for
the SDCA method.
- (Default value: <strong>0</strong>)
+ Defines the limiting value for the decision function above
which examples are labeled as
+ positive (+1.0). Examples with a decision function value below
this value are classified
+ as negative (-1.0). In order to get the raw decision function
value you need to
+ unset this parameter using the [[clearThreshold()]] function.
(Default value: <strong>0.0</strong>)
--- End diff --
Do we want to have this turned on by default?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---