~ubuntu-branches/ubuntu/oneiric/weka/oneiric

« back to all changes in this revision

Viewing changes to weka/classifiers/bayes/net/EditableBayesNet.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner, Soeren Sonnenburg, Torsten Werner
  • Date: 2008-08-10 21:27:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080810212705-tr8etpnkdx2ziktp
Tags: 3.5.8-1
[ Soeren Sonnenburg ]
* Bump Standards Version to 3.8.0.
* Remove references to non-free Java in debian/copyright.

[ Torsten Werner ]
* new upstream release
* Switch to openjdk-6.
* Move package to main.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
import weka.core.Attribute;
38
38
import weka.core.FastVector;
39
39
import weka.core.Instances;
 
40
import weka.core.RevisionUtils;
40
41
import weka.core.SerializedObject;
41
42
import weka.estimators.Estimator;
42
43
import weka.filters.Filter;
45
46
 
46
47
/**
47
48
 <!-- globalinfo-start -->
48
 
 * Bayes Network that allows for editing operations on a Bayesian network
49
 
 * with undo/redo facilities.
50
 
 *
 
49
 * Bayes Network learning using various search algorithms and quality measures.<br/>
 
50
 * Base class for a Bayes Network classifier. Provides datastructures (network structure, conditional probability distributions, etc.) and facilities common to Bayes Network learning algorithms like K2 and B.<br/>
51
51
 * <br/>
52
52
 * For more information see:<br/>
53
53
 * <br/>
57
57
 *
58
58
 <!-- options-start -->
59
59
 * Valid options are: <p/>
60
 
 *
 
60
 * 
61
61
 * <pre> -D
62
62
 *  Do not use ADTree data structure
63
63
 * </pre>
64
 
 *
 
64
 * 
65
65
 * <pre> -B &lt;BIF file&gt;
66
66
 *  BIF file to compare with
67
67
 * </pre>
68
 
 *
 
68
 * 
69
69
 * <pre> -Q weka.classifiers.bayes.net.search.SearchAlgorithm
70
70
 *  Search algorithm
71
71
 * </pre>
72
 
 *
 
72
 * 
73
73
 * <pre> -E weka.classifiers.bayes.net.estimate.SimpleEstimator
74
74
 *  Estimator algorithm
75
75
 * </pre>
76
 
 *
 
76
 * 
77
77
 <!-- options-end -->
78
78
 *
79
79
 * @author Remco Bouckaert (rrb@xm.co.nz)
80
 
 * @version $Revision: 1.1 $
 
80
 * @version $Revision: 1.3 $
81
81
 */
82
82
 
83
83
public class EditableBayesNet extends BayesNet {
2651
2651
                        }
2652
2652
                } // redo
2653
2653
        } // class PasteAction
 
2654
          
 
2655
          /**
 
2656
           * Returns the revision string.
 
2657
           * 
 
2658
           * @return            the revision
 
2659
           */
 
2660
          public String getRevision() {
 
2661
            return RevisionUtils.extract("$Revision: 1.3 $");
 
2662
          }
2654
2663
 
2655
2664
        /**
2656
2665
         * @param args
2658
2667
        public static void main(String[] args) {
2659
2668
        } // main
2660
2669
} // class EditableBayesNet
 
2670