File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
mllib/src/main/scala/org/apache/spark/mllib/regression Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,14 +39,14 @@ import org.apache.spark.streaming.dstream.DStream
39
39
*
40
40
* For example usage, see `StreamingLinearRegressionWithSGD`.
41
41
*
42
- * NOTE(Freeman) : In some use cases, the order in which trainOn and predictOn
42
+ * NOTE: In some use cases, the order in which trainOn and predictOn
43
43
* are called in an application will affect the results. When called on
44
44
* the same DStream, if trainOn is called before predictOn, when new data
45
45
* arrive the model will update and the prediction will be based on the new
46
46
* model. Whereas if predictOn is called first, the prediction will use the model
47
47
* from the previous update.
48
48
*
49
- * NOTE(Freeman) : It is ok to call predictOn repeatedly on multiple streams; this
49
+ * NOTE: It is ok to call predictOn repeatedly on multiple streams; this
50
50
* will generate predictions for each one all using the current model.
51
51
* It is also ok to call trainOn on different streams; this will update
52
52
* the model using each of the different sources, in sequence.
You can’t perform that action at this time.
0 commit comments