public class GaussianProcessModel extends Model implements HasExtensions
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://www.dmg.org/PMML-4_3}Extension" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_3}MiningSchema"/>
<element ref="{http://www.dmg.org/PMML-4_3}Output" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_3}ModelStats" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_3}ModelExplanation" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_3}Targets" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_3}LocalTransformations" minOccurs="0"/>
<sequence>
<choice>
<element ref="{http://www.dmg.org/PMML-4_3}RadialBasisKernel"/>
<element ref="{http://www.dmg.org/PMML-4_3}ARDSquaredExponentialKernel"/>
<element ref="{http://www.dmg.org/PMML-4_3}AbsoluteExponentialKernel"/>
<element ref="{http://www.dmg.org/PMML-4_3}GeneralizedExponentialKernel"/>
</choice>
</sequence>
<element ref="{http://www.dmg.org/PMML-4_3}TrainingInstances"/>
<element ref="{http://www.dmg.org/PMML-4_3}ModelVerification" minOccurs="0"/>
</sequence>
<attribute name="modelName" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="functionName" use="required" type="{http://www.dmg.org/PMML-4_3}MINING-FUNCTION" />
<attribute name="algorithmName" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="optimizer" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="isScorable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
</restriction>
</complexContent>
</complexType>
| Constructor and Description |
|---|
GaussianProcessModel() |
GaussianProcessModel(MiningFunction miningFunction,
MiningSchema miningSchema,
TrainingInstances trainingInstances) |
| Modifier and Type | Method and Description |
|---|---|
VisitorAction |
accept(Visitor visitor) |
GaussianProcessModel |
addExtensions(Extension... extensions) |
AbsoluteExponentialKernel |
getAbsoluteExponentialKernel()
Gets the value of the absoluteExponentialKernel property.
|
String |
getAlgorithmName()
Gets the value of the algorithmName property.
|
ARDSquaredExponentialKernel |
getARDSquaredExponentialKernel()
Gets the value of the ardSquaredExponentialKernel property.
|
List<Extension> |
getExtensions()
Gets the value of the extensions property.
|
GeneralizedExponentialKernel |
getGeneralizedExponentialKernel()
Gets the value of the generalizedExponentialKernel property.
|
LocalTransformations |
getLocalTransformations()
Gets the value of the localTransformations property.
|
MiningFunction |
getMiningFunction()
Gets the value of the miningFunction property.
|
MiningSchema |
getMiningSchema()
Gets the value of the miningSchema property.
|
ModelExplanation |
getModelExplanation()
Gets the value of the modelExplanation property.
|
String |
getModelName()
Gets the value of the modelName property.
|
ModelStats |
getModelStats()
Gets the value of the modelStats property.
|
ModelVerification |
getModelVerification()
Gets the value of the modelVerification property.
|
String |
getOptimizer()
Gets the value of the optimizer property.
|
Output |
getOutput()
Gets the value of the output property.
|
RadialBasisKernel |
getRadialBasisKernel()
Gets the value of the radialBasisKernel property.
|
Targets |
getTargets()
Gets the value of the targets property.
|
TrainingInstances |
getTrainingInstances()
Gets the value of the trainingInstances property.
|
boolean |
hasExtensions() |
boolean |
isScorable()
Gets the value of the scorable property.
|
GaussianProcessModel |
setAbsoluteExponentialKernel(AbsoluteExponentialKernel absoluteExponentialKernel)
Sets the value of the absoluteExponentialKernel property.
|
GaussianProcessModel |
setAlgorithmName(String algorithmName)
Sets the value of the algorithmName property.
|
GaussianProcessModel |
setARDSquaredExponentialKernel(ARDSquaredExponentialKernel ardSquaredExponentialKernel)
Sets the value of the ardSquaredExponentialKernel property.
|
GaussianProcessModel |
setGeneralizedExponentialKernel(GeneralizedExponentialKernel generalizedExponentialKernel)
Sets the value of the generalizedExponentialKernel property.
|
GaussianProcessModel |
setLocalTransformations(LocalTransformations localTransformations)
Sets the value of the localTransformations property.
|
GaussianProcessModel |
setMiningFunction(MiningFunction miningFunction)
Sets the value of the miningFunction property.
|
GaussianProcessModel |
setMiningSchema(MiningSchema miningSchema)
Sets the value of the miningSchema property.
|
GaussianProcessModel |
setModelExplanation(ModelExplanation modelExplanation)
Sets the value of the modelExplanation property.
|
GaussianProcessModel |
setModelName(String modelName)
Sets the value of the modelName property.
|
GaussianProcessModel |
setModelStats(ModelStats modelStats)
Sets the value of the modelStats property.
|
GaussianProcessModel |
setModelVerification(ModelVerification modelVerification)
Sets the value of the modelVerification property.
|
GaussianProcessModel |
setOptimizer(String optimizer)
Sets the value of the optimizer property.
|
GaussianProcessModel |
setOutput(Output output)
Sets the value of the output property.
|
GaussianProcessModel |
setRadialBasisKernel(RadialBasisKernel radialBasisKernel)
Sets the value of the radialBasisKernel property.
|
GaussianProcessModel |
setScorable(Boolean scorable)
Sets the value of the scorable property.
|
GaussianProcessModel |
setTargets(Targets targets)
Sets the value of the targets property.
|
GaussianProcessModel |
setTrainingInstances(TrainingInstances trainingInstances)
Sets the value of the trainingInstances property.
|
getLocator, setLocator, traverse, traverse, traverse, traverse, traverseMixedpublic GaussianProcessModel()
public GaussianProcessModel(MiningFunction miningFunction, MiningSchema miningSchema, TrainingInstances trainingInstances)
public String getModelName()
getModelName in class ModelStringpublic GaussianProcessModel setModelName(String modelName)
setModelName in class ModelmodelName - allowed object is
Stringpublic MiningFunction getMiningFunction()
getMiningFunction in class ModelMiningFunctionpublic GaussianProcessModel setMiningFunction(MiningFunction miningFunction)
setMiningFunction in class ModelminingFunction - allowed object is
MiningFunctionpublic String getAlgorithmName()
getAlgorithmName in class ModelStringpublic GaussianProcessModel setAlgorithmName(String algorithmName)
setAlgorithmName in class ModelalgorithmName - allowed object is
Stringpublic String getOptimizer()
Stringpublic GaussianProcessModel setOptimizer(String optimizer)
optimizer - allowed object is
Stringpublic boolean isScorable()
isScorable in class ModelBooleanpublic GaussianProcessModel setScorable(Boolean scorable)
setScorable in class Modelscorable - allowed object is
Booleanpublic List<Extension> getExtensions()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the extensions property.
For example, to add a new item, do as follows:
getExtensions().add(newItem);
Objects of the following type(s) are allowed in the list
Extension
getExtensions in interface HasExtensionspublic MiningSchema getMiningSchema()
getMiningSchema in class ModelMiningSchemapublic GaussianProcessModel setMiningSchema(MiningSchema miningSchema)
setMiningSchema in class ModelminingSchema - allowed object is
MiningSchemapublic Output getOutput()
public GaussianProcessModel setOutput(Output output)
public ModelStats getModelStats()
getModelStats in class ModelModelStatspublic GaussianProcessModel setModelStats(ModelStats modelStats)
setModelStats in class ModelmodelStats - allowed object is
ModelStatspublic ModelExplanation getModelExplanation()
getModelExplanation in class ModelModelExplanationpublic GaussianProcessModel setModelExplanation(ModelExplanation modelExplanation)
setModelExplanation in class ModelmodelExplanation - allowed object is
ModelExplanationpublic Targets getTargets()
getTargets in class ModelTargetspublic GaussianProcessModel setTargets(Targets targets)
setTargets in class Modeltargets - allowed object is
Targetspublic LocalTransformations getLocalTransformations()
getLocalTransformations in class ModelLocalTransformationspublic GaussianProcessModel setLocalTransformations(LocalTransformations localTransformations)
setLocalTransformations in class ModellocalTransformations - allowed object is
LocalTransformationspublic RadialBasisKernel getRadialBasisKernel()
RadialBasisKernelpublic GaussianProcessModel setRadialBasisKernel(RadialBasisKernel radialBasisKernel)
radialBasisKernel - allowed object is
RadialBasisKernelpublic ARDSquaredExponentialKernel getARDSquaredExponentialKernel()
ARDSquaredExponentialKernelpublic GaussianProcessModel setARDSquaredExponentialKernel(ARDSquaredExponentialKernel ardSquaredExponentialKernel)
ardSquaredExponentialKernel - allowed object is
ARDSquaredExponentialKernelpublic AbsoluteExponentialKernel getAbsoluteExponentialKernel()
AbsoluteExponentialKernelpublic GaussianProcessModel setAbsoluteExponentialKernel(AbsoluteExponentialKernel absoluteExponentialKernel)
absoluteExponentialKernel - allowed object is
AbsoluteExponentialKernelpublic GeneralizedExponentialKernel getGeneralizedExponentialKernel()
GeneralizedExponentialKernelpublic GaussianProcessModel setGeneralizedExponentialKernel(GeneralizedExponentialKernel generalizedExponentialKernel)
generalizedExponentialKernel - allowed object is
GeneralizedExponentialKernelpublic TrainingInstances getTrainingInstances()
TrainingInstancespublic GaussianProcessModel setTrainingInstances(TrainingInstances trainingInstances)
trainingInstances - allowed object is
TrainingInstancespublic ModelVerification getModelVerification()
getModelVerification in class ModelModelVerificationpublic GaussianProcessModel setModelVerification(ModelVerification modelVerification)
setModelVerification in class ModelmodelVerification - allowed object is
ModelVerificationpublic boolean hasExtensions()
hasExtensions in interface HasExtensionspublic GaussianProcessModel addExtensions(Extension... extensions)
public VisitorAction accept(Visitor visitor)
Copyright © 2016 University of Tartu. All rights reserved.