Ignore:
Timestamp:
07/18/16 13:44:58 (8 years ago)
Author:
sherbold
Message:
  • more code documentation
Location:
trunk/CrossPare/src/de/ugoe/cs/cpdp/training
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/training/GPTraining.java

    r135 r136  
    249249         * </p> 
    250250         * 
    251          * @return 
     251         * @return the instance values 
    252252         */ 
    253253        public double[][] getX() { 
     
    260260         * </p> 
    261261         * 
    262          * @return 
     262         * @return the instance labels 
    263263         */ 
    264264        public boolean[] getY() { 
     
    450450             * @param populationSize 
    451451             *            the population size 
    452              * @param initMinDepth 
     452             * @param minInitDept 
    453453             *            the initial minimal depth of the S-expression tree 
    454              * @param initMaxDepth 
     454             * @param maxInitDepth 
    455455             *            the initial maximal depth of the S-expression tree 
    456456             * @param tournamentSize 
     
    12651265         * @param evalData 
    12661266         *            the validation data 
    1267          * @return 
     1267         * @return the type I and type II error rates 
    12681268         */ 
    12691269        public double[] evaluate(GPRun classifier, Instances evalData) { 
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/training/QuadTree.java

    r135 r136  
    525525     * </ol> 
    526526     *  
    527      * @param q 
     527     * @param list 
    528528     *            List of QuadTree (children only) 
    529529     */ 
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/training/WekaLocalFQTraining.java

    r135 r136  
    574574     *  
    575575     * @author Alexander Trautsch 
     576     * @param <T> type of the instance 
    576577     */ 
    577578    public class QuadTreePayload<T> { 
     
    615616         * </p> 
    616617         * 
    617          * @return 
     618         * @return the instance 
    618619         */ 
    619620        public T getInst() { 
Note: See TracChangeset for help on using the changeset viewer.