Repository: incubator-samoa Updated Branches: refs/heads/master 243e78217 -> 5f1e1a122
SAMOA-34: Fix javadoc of Learner Project: http://git-wip-us.apache.org/repos/asf/incubator-samoa/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-samoa/commit/31f82ec1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-samoa/tree/31f82ec1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-samoa/diff/31f82ec1 Branch: refs/heads/master Commit: 31f82ec1be74b9df3ff2d7848b296477bf3710bc Parents: 243e782 Author: Gianmarco De Francisci Morales <[email protected]> Authored: Thu Jun 18 14:38:53 2015 +0300 Committer: abifet <[email protected]> Committed: Wed Jul 1 18:07:03 2015 +0800 ---------------------------------------------------------------------- samoa-api/src/main/java/org/apache/samoa/learners/Learner.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-samoa/blob/31f82ec1/samoa-api/src/main/java/org/apache/samoa/learners/Learner.java ---------------------------------------------------------------------- diff --git a/samoa-api/src/main/java/org/apache/samoa/learners/Learner.java b/samoa-api/src/main/java/org/apache/samoa/learners/Learner.java index 730f4d9..a19943e 100644 --- a/samoa-api/src/main/java/org/apache/samoa/learners/Learner.java +++ b/samoa-api/src/main/java/org/apache/samoa/learners/Learner.java @@ -29,8 +29,9 @@ import org.apache.samoa.topology.Stream; import org.apache.samoa.topology.TopologyBuilder; /** - * The Interface Classifier. Initializing Classifier should initalize PI to connect the Classifier with the input stream - * and initialize result stream so that other PI can connect to the classification result of this classifier + * A Learner instance learns a model, and it can be either a classifier or a regressor. Initializing a Learner should + * initialize a {@link Processor}, connect the Learner with the input stream, and initialize the result stream so that other processors + * can subscribe to the results of this learner. */ public interface Learner extends Serializable {
