类 NeuralNetwork

所有已实现的接口:
Serializable, Cloneable, CapabilitiesHandler, OptionHandler, PMMLModel, RevisionHandler

public class NeuralNetwork extends PMMLClassifier
Class implementing import of PMML Neural Network model. Can be used as a Weka classifier for prediction (buildClassifier() raises an Exception).
版本:
$Revision 1.0 $
作者:
Mark Hall (mhall{[at]}pentaho{[dot]}com)
另请参阅:
  • 构造器详细资料

  • 方法详细资料

    • getRevision

      public String getRevision()
      从类复制的说明: Classifier
      Returns the revision string.
      指定者:
      getRevision 在接口中 RevisionHandler
      覆盖:
      getRevision 在类中 Classifier
      返回:
      the revision
    • distributionForInstance

      public double[] distributionForInstance(Instance inst) throws Exception
      Classifies the given test instance. The instance has to belong to a dataset when it's being classified.
      覆盖:
      distributionForInstance 在类中 Classifier
      参数:
      inst - the instance to be classified
      返回:
      the predicted most likely class for the instance or Instance.missingValue() if no prediction is made
      抛出:
      Exception - if an error occurred during the prediction
    • toString

      public String toString()
      覆盖:
      toString 在类中 Object