Uses of Interface
org.knime.core.node.ModelContentRO

Packages that use ModelContentRO
org.knime.base.data.neural This package contains all the necessary classes to build your own neural network. 
org.knime.base.data.normalize This package contains the utility classes for normalization of DataRows. 
org.knime.base.node.mine.bayes.naivebayes.port   
org.knime.base.node.mine.bfn Contains abstract and util classes to train and perform prediction to rule models, also called BasisFunction models. 
org.knime.base.node.mine.bfn.fuzzy Contains the learner and predictor to train fuzzy rules and apply them to unknown data. 
org.knime.base.node.mine.bfn.fuzzy.membership Membership function package which are used during training of BasisFunction models. 
org.knime.base.node.mine.bfn.radial Contains the PNN learner and predictor. 
org.knime.base.node.mine.cluster.assign This package contains the classes for the Cluster Assigner Node. 
org.knime.base.node.mine.decisiontree2.model This package contains code for a decision tree model. 
org.knime.base.node.mine.pca This package contains all classes for the PCA (principal component analysis) Node. 
org.knime.base.node.mine.regression.linear Contains classes for linear regression. 
org.knime.base.node.mine.sota Contains the Sota node, which can be used for clustering hirarchically numerical and fuzzy data and visualize the resulting cluster tree. 
org.knime.base.node.mine.sota.logic Contains the logic classes of SOTA. 
org.knime.base.node.mine.subgroupminer.freqitemset This package contains the necessary data structures for the subgroup mining. 
org.knime.base.node.mine.svm The scm package contains all classes necessary for Support Vector Machine learning (package learner) and prediction (predict). 
org.knime.base.node.mine.svm.util This subpackage contains some utility classes for the SVM node. 
org.knime.base.node.preproc.discretization.caim2 Contains two nodes for class supervised binning and applying such a learned binning model to new data. 
org.knime.core.node Contains all classes needed to implement a new node in the workflow. 
org.knime.core.node.port   
org.knime.core.node.port.database   
org.knime.core.node.port.viewproperty   
org.knime.core.node.workflow Contains wrapper classes which control the communication between Node and GUI Workflow. 
 

Uses of ModelContentRO in org.knime.base.data.neural
 

Methods in org.knime.base.data.neural with parameters of type ModelContentRO
static MultiLayerPerceptron MultiLayerPerceptron.loadPredictorParams(ModelContentRO predParams)
           
 

Uses of ModelContentRO in org.knime.base.data.normalize
 

Methods in org.knime.base.data.normalize with parameters of type ModelContentRO
static DataTableSpec AffineTransTable.createSpec(DataTableSpec spec, ModelContentRO settings)
          Reads the meta information from the settings object and constructs the DataTableSpec, which would be the outcome when a table complying with spec were fet to the load method.
static AffineTransTable AffineTransTable.load(DataTable table, ModelContentRO sets)
          Reads the meta information from the settings object and constructs a AffineTransTable based on this information and the given DataTable.
static AffineTransConfiguration AffineTransConfiguration.load(ModelContentRO settings)
          Restores content.
protected  void NormalizerPortObject.load(ModelContentRO model, PortObjectSpec spec, ExecutionMonitor exec)
          Loads the content into the freshly instantiated object.
 

Uses of ModelContentRO in org.knime.base.node.mine.bayes.naivebayes.port
 

Methods in org.knime.base.node.mine.bayes.naivebayes.port with parameters of type ModelContentRO
protected  void NaiveBayesPortObjectSpec.load(ModelContentRO model)
          Loads the content into the freshly instantiated object.
protected  void NaiveBayesPortObject.load(ModelContentRO model, PortObjectSpec spec, ExecutionMonitor exec)
          Loads the content into the freshly instantiated object.
 

Uses of ModelContentRO in org.knime.base.node.mine.bfn
 

Methods in org.knime.base.node.mine.bfn that return ModelContentRO
 ModelContentRO BasisFunctionLearnerNodeModel.getModelInfo()
           
 

Methods in org.knime.base.node.mine.bfn with parameters of type ModelContentRO
 BasisFunctionPredictorRow BasisFunctionPortObject.Creator.createPredictorRow(ModelContentRO pp)
          Return specific predictor row for the given ModelContent.
protected  void BasisFunctionPortObject.load(ModelContentRO model, PortObjectSpec spec, ExecutionMonitor exec)
          Loads the content into the freshly instantiated object.
 

Constructors in org.knime.base.node.mine.bfn with parameters of type ModelContentRO
BasisFunctionModelContent(ModelContentRO modelCont, BasisFunctionPortObject.Creator cr)
          Loads a this basisfunction content from the given file directory.
BasisFunctionPredictorRow(ModelContentRO pp)
          Creates new predictor row on model content.
 

Uses of ModelContentRO in org.knime.base.node.mine.bfn.fuzzy
 

Methods in org.knime.base.node.mine.bfn.fuzzy with parameters of type ModelContentRO
 BasisFunctionPredictorRow FuzzyBasisFunctionPortObject.FuzzyCreator.createPredictorRow(ModelContentRO pp)
          Return specific predictor row for the given ModelContent.
 

Constructors in org.knime.base.node.mine.bfn.fuzzy with parameters of type ModelContentRO
FuzzyBasisFunctionPredictorRow(ModelContentRO pp)
          Creates a new predictor as fuzzy rule.
 

Uses of ModelContentRO in org.knime.base.node.mine.bfn.fuzzy.membership
 

Constructors in org.knime.base.node.mine.bfn.fuzzy.membership with parameters of type ModelContentRO
MembershipFunction(ModelContentRO pp)
          Creates a new membership function based on the given model content.
 

Uses of ModelContentRO in org.knime.base.node.mine.bfn.radial
 

Methods in org.knime.base.node.mine.bfn.radial with parameters of type ModelContentRO
 BasisFunctionPredictorRow RadialBasisFunctionPortObject.RadialCreator.createPredictorRow(ModelContentRO pp)
          Return specific predictor row for the given ModelContent.
 

Constructors in org.knime.base.node.mine.bfn.radial with parameters of type ModelContentRO
RadialBasisFunctionPredictorRow(ModelContentRO pp)
          Creates a new predictor row based on the given model content.
 

Uses of ModelContentRO in org.knime.base.node.mine.cluster.assign
 

Methods in org.knime.base.node.mine.cluster.assign with parameters of type ModelContentRO
static Prototype Prototype.loadFrom(ModelContentRO model)
           
 

Uses of ModelContentRO in org.knime.base.node.mine.decisiontree2.model
 

Methods in org.knime.base.node.mine.decisiontree2.model with parameters of type ModelContentRO
static DecisionTreeNode DecisionTreeNode.createNodeFromPredictorParams(ModelContentRO predParams, DecisionTreeNode parent)
          Creates a new DecisionTreeNode (and all it's children!) based on an model content object.
 void DecisionTreeNode.loadFromPredictorParams(ModelContentRO predParams)
          Load node from a model content object.
 void DecisionTree.loadFromPredictorParams(ModelContentRO pConf)
          Load Decision Tree from a ModelContent object.
 void DecisionTreeNodeSplit.loadNodeInternalsFromPredParams(ModelContentRO pConf)
          Load internal node settings from a model content object.
abstract  void DecisionTreeNode.loadNodeInternalsFromPredParams(ModelContentRO pConf)
          Load internal node settings from a model content object.
 void DecisionTreeNodeLeaf.loadNodeInternalsFromPredParams(ModelContentRO pConf)
          Load internal node settings from a model content object.
abstract  void DecisionTreeNodeSplit.loadNodeSplitInternalsFromPredParams(ModelContentRO pConf)
          Load internal SplitNode settings from a ModelContent object.
 void DecisionTreeNodeSplitNominalBinary.loadNodeSplitInternalsFromPredParams(ModelContentRO pConf)
          Deprecated. Load internal SplitNode settings from a ModelContent object.
 void DecisionTreeNodeSplitPMML.loadNodeSplitInternalsFromPredParams(ModelContentRO pConf)
          Load internal SplitNode settings from a ModelContent object.
 void DecisionTreeNodeSplitContinuous.loadNodeSplitInternalsFromPredParams(ModelContentRO pConf)
          Deprecated. Load internal SplitNode settings from a ModelContent object.
 void DecisionTreeNodeSplitNominal.loadNodeSplitInternalsFromPredParams(ModelContentRO pConf)
          Deprecated. Load internal SplitNode settings from a ModelContent object.
 

Constructors in org.knime.base.node.mine.decisiontree2.model with parameters of type ModelContentRO
DecisionTree(ModelContentRO pConf)
          Create Decision Tree based on an ModelContent object.
 

Uses of ModelContentRO in org.knime.base.node.mine.pca
 

Methods in org.knime.base.node.mine.pca with parameters of type ModelContentRO
protected  void PCAModelPortObject.load(ModelContentRO model, PortObjectSpec spec, ExecutionMonitor exec)
          Loads the content into the freshly instantiated object.
 

Uses of ModelContentRO in org.knime.base.node.mine.regression.linear
 

Methods in org.knime.base.node.mine.regression.linear with parameters of type ModelContentRO
static LinearRegressionContent LinearRegressionContent.instantiateAndLoad(ModelContentRO par, PortObjectSpec spec)
          Creates a new linear regression model that is read from the given model content object.
protected  void LinearRegressionContent.load(ModelContentRO par, PortObjectSpec spec)
          Loads a linear regression model from the given model content object.
 

Uses of ModelContentRO in org.knime.base.node.mine.sota
 

Methods in org.knime.base.node.mine.sota with parameters of type ModelContentRO
protected  void SotaPortObjectSpec.load(ModelContentRO model)
          Loads the content into the freshly instantiated object.
protected  void SotaPortObject.load(ModelContentRO model, PortObjectSpec spec, ExecutionMonitor exec)
          Loads the content into the freshly instantiated object.
 

Uses of ModelContentRO in org.knime.base.node.mine.sota.logic
 

Methods in org.knime.base.node.mine.sota.logic with parameters of type ModelContentRO
 void SotaDoubleCell.loadFrom(ModelContentRO modelContent)
          Loads the values from the given ModelContentWO.
 void SotaCell.loadFrom(ModelContentRO modelContent)
          Loads the values from the given ModelContentWO.
 void SotaFuzzyCell.loadFrom(ModelContentRO modelContent)
          Loads the values from the given ModelContentWO.
 void SotaTreeCell.loadFrom(ModelContentRO modelContent, int index, SotaTreeCell anchestor, boolean isLeft)
          Loads the values from the given ModelContentWO.
 

Uses of ModelContentRO in org.knime.base.node.mine.subgroupminer.freqitemset
 

Methods in org.knime.base.node.mine.subgroupminer.freqitemset with parameters of type ModelContentRO
 void AssociationRuleModel.loadFromModelContent(ModelContentRO model)
           
 void FrequentItemSetModel.loadFromModelContent(ModelContentRO model)
           
 

Uses of ModelContentRO in org.knime.base.node.mine.svm
 

Constructors in org.knime.base.node.mine.svm with parameters of type ModelContentRO
Svm(ModelContentRO predParams, String id)
          Loads a binary SVM from a ModelContent object.
 

Uses of ModelContentRO in org.knime.base.node.mine.svm.util
 

Constructors in org.knime.base.node.mine.svm.util with parameters of type ModelContentRO
DoubleVector(ModelContentRO predParams, String id)
          Loads a vector from a predParams object.
 

Uses of ModelContentRO in org.knime.base.node.preproc.discretization.caim2
 

Methods in org.knime.base.node.preproc.discretization.caim2 with parameters of type ModelContentRO
protected  void DiscretizationModel.load(ModelContentRO model, PortObjectSpec spec, ExecutionMonitor exec)
          Loads the content into the freshly instantiated object.
 

Constructors in org.knime.base.node.preproc.discretization.caim2 with parameters of type ModelContentRO
DiscretizationModel(ModelContentRO content, DataTableSpec includedCols)
          Creates a DiscretizationModel from a ModelContentRO object.
 

Uses of ModelContentRO in org.knime.core.node
 

Classes in org.knime.core.node that implement ModelContentRO
 class ModelContent
          This ModelContent is used to store XML-like model settings.
 

Methods in org.knime.core.node that return ModelContentRO
 ModelContentRO ModelContentRO.getModelContent(String key)
          Returns a read-only ModelContentRO object from this config.
static ModelContentRO ModelContent.loadFromXML(InputStream in)
          Reads ModelContent settings from the given XML stream and returns a new ModelContent object.
 

Uses of ModelContentRO in org.knime.core.node.port
 

Methods in org.knime.core.node.port with parameters of type ModelContentRO
protected abstract  void AbstractSimplePortObjectSpec.load(ModelContentRO model)
          Loads the content into the freshly instantiated object.
protected abstract  void AbstractSimplePortObject.load(ModelContentRO model, PortObjectSpec spec, ExecutionMonitor exec)
          Loads the content into the freshly instantiated object.
 

Uses of ModelContentRO in org.knime.core.node.port.database
 

Methods in org.knime.core.node.port.database that return ModelContentRO
 ModelContentRO DatabaseConnectionSettings.createConnectionModel()
          Create connection model with all settings used to create a database connection.
 ModelContentRO DatabaseQueryConnectionSettings.createConnectionModel()
          Create connection model with all settings used to create a database connection.
 ModelContentRO DatabasePortObject.getConnectionModel()
           
 ModelContentRO DatabasePortObjectSpec.getConnectionModel()
           
 

Constructors in org.knime.core.node.port.database with parameters of type ModelContentRO
DatabasePortObjectSpec(DataTableSpec spec, ModelContentRO conn)
          Creates a new database port object spec.
 

Uses of ModelContentRO in org.knime.core.node.port.viewproperty
 

Methods in org.knime.core.node.port.viewproperty with parameters of type ModelContentRO
protected  void ViewPropertyPortObject.load(ModelContentRO model, PortObjectSpec spec, ExecutionMonitor exec)
          Loads the content into the freshly instantiated object.
 

Uses of ModelContentRO in org.knime.core.node.workflow
 

Constructors in org.knime.core.node.workflow with parameters of type ModelContentRO
ModelContentOutPortView(ModelContentRO portObject)
          A view showing the data model stored in the specified ModelContent output port.
 



Copyright, 2003 - 2010. All rights reserved.
University of Konstanz, Germany.
Chair for Bioinformatics and Information Mining, Prof. Dr. Michael R. Berthold.
You may not modify, publish, transmit, transfer or sell, reproduce, create derivative works from, distribute, perform, display, or in any way exploit any of the content, in whole or in part, except as otherwise expressly permitted in writing by the copyright owner or as specified in the license file distributed with this product.