Author: tommaso
Date: Mon May 21 21:24:06 2012
New Revision: 1341209

URL: http://svn.apache.org/viewvc?rev=1341209&view=rev
Log:
add descriptions to NNF#create javadoc

Modified:
    labs/yay/trunk/core/src/main/java/org/apache/yay/NeuralNetworkFactory.java

Modified: 
labs/yay/trunk/core/src/main/java/org/apache/yay/NeuralNetworkFactory.java
URL: 
http://svn.apache.org/viewvc/labs/yay/trunk/core/src/main/java/org/apache/yay/NeuralNetworkFactory.java?rev=1341209&r1=1341208&r2=1341209&view=diff
==============================================================================
--- labs/yay/trunk/core/src/main/java/org/apache/yay/NeuralNetworkFactory.java 
(original)
+++ labs/yay/trunk/core/src/main/java/org/apache/yay/NeuralNetworkFactory.java 
Mon May 21 21:24:06 2012
@@ -31,11 +31,11 @@ public class NeuralNetworkFactory {
    * creates a neural network via a supervised learning method, given a 
training set, the initial set of layers defined
    * by a set of matrices, the learning and prediction strategies to be used.
    *
-   * @param trainingExamples
-   * @param weightsMatrixSet
-   * @param learningStrategy
-   * @param predictionStrategy
-   * @return
+   * @param trainingExamples   the training set
+   * @param weightsMatrixSet   the initial settings for weights matrixes
+   * @param learningStrategy   a learning strategy
+   * @param predictionStrategy a prediction strategy
+   * @return a NeuralNetwork instance
    * @throws CreationException
    */
   public static NeuralNetwork<Double, Double> create(final 
Collection<TrainingExample<Double, Double>> trainingExamples,



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to