org.dmg.pmml.pmml_4_1.descr
Class NeuralLayer

java.lang.Object
  extended by org.dmg.pmml.pmml_4_1.descr.NeuralLayer
All Implemented Interfaces:
Serializable

public class NeuralLayer
extends Object
implements Serializable

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_1}Extension" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.dmg.org/PMML-4_1}Neuron" maxOccurs="unbounded"/>
       </sequence>
       <attribute name="numberOfNeurons" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
       <attribute name="activationFunction" type="{http://www.dmg.org/PMML-4_1}ACTIVATION-FUNCTION" />
       <attribute name="threshold" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" />
       <attribute name="width" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" />
       <attribute name="altitude" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" />
       <attribute name="normalizationMethod" type="{http://www.dmg.org/PMML-4_1}NN-NORMALIZATION-METHOD" />
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  ACTIVATIONFUNCTION activationFunction
           
protected  Double altitude
           
protected  List<Extension> extensions
           
protected  List<Neuron> neurons
           
protected  NNNORMALIZATIONMETHOD normalizationMethod
           
protected  BigInteger numberOfNeurons
           
protected  Double threshold
           
protected  Double width
           
 
Constructor Summary
NeuralLayer()
           
 
Method Summary
 ACTIVATIONFUNCTION getActivationFunction()
          Gets the value of the activationFunction property.
 Double getAltitude()
          Gets the value of the altitude property.
 List<Extension> getExtensions()
          Gets the value of the extensions property.
 List<Neuron> getNeurons()
          Gets the value of the neurons property.
 NNNORMALIZATIONMETHOD getNormalizationMethod()
          Gets the value of the normalizationMethod property.
 BigInteger getNumberOfNeurons()
          Gets the value of the numberOfNeurons property.
 Double getThreshold()
          Gets the value of the threshold property.
 Double getWidth()
          Gets the value of the width property.
 void setActivationFunction(ACTIVATIONFUNCTION value)
          Sets the value of the activationFunction property.
 void setAltitude(Double value)
          Sets the value of the altitude property.
 void setNormalizationMethod(NNNORMALIZATIONMETHOD value)
          Sets the value of the normalizationMethod property.
 void setNumberOfNeurons(BigInteger value)
          Sets the value of the numberOfNeurons property.
 void setThreshold(Double value)
          Sets the value of the threshold property.
 void setWidth(Double value)
          Sets the value of the width property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

extensions

protected List<Extension> extensions

neurons

protected List<Neuron> neurons

numberOfNeurons

protected BigInteger numberOfNeurons

activationFunction

protected ACTIVATIONFUNCTION activationFunction

threshold

protected Double threshold

width

protected Double width

altitude

protected Double altitude

normalizationMethod

protected NNNORMALIZATIONMETHOD normalizationMethod
Constructor Detail

NeuralLayer

public NeuralLayer()
Method Detail

getExtensions

public List<Extension> getExtensions()
Gets the value of the extensions property.

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


getNeurons

public List<Neuron> getNeurons()
Gets the value of the neurons property.

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 neurons property.

For example, to add a new item, do as follows:

    getNeurons().add(newItem);
 

Objects of the following type(s) are allowed in the list Neuron


getNumberOfNeurons

public BigInteger getNumberOfNeurons()
Gets the value of the numberOfNeurons property.

Returns:
possible object is BigInteger

setNumberOfNeurons

public void setNumberOfNeurons(BigInteger value)
Sets the value of the numberOfNeurons property.

Parameters:
value - allowed object is BigInteger

getActivationFunction

public ACTIVATIONFUNCTION getActivationFunction()
Gets the value of the activationFunction property.

Returns:
possible object is ACTIVATIONFUNCTION

setActivationFunction

public void setActivationFunction(ACTIVATIONFUNCTION value)
Sets the value of the activationFunction property.

Parameters:
value - allowed object is ACTIVATIONFUNCTION

getThreshold

public Double getThreshold()
Gets the value of the threshold property.

Returns:
possible object is Double

setThreshold

public void setThreshold(Double value)
Sets the value of the threshold property.

Parameters:
value - allowed object is Double

getWidth

public Double getWidth()
Gets the value of the width property.

Returns:
possible object is Double

setWidth

public void setWidth(Double value)
Sets the value of the width property.

Parameters:
value - allowed object is Double

getAltitude

public Double getAltitude()
Gets the value of the altitude property.

Returns:
possible object is Double

setAltitude

public void setAltitude(Double value)
Sets the value of the altitude property.

Parameters:
value - allowed object is Double

getNormalizationMethod

public NNNORMALIZATIONMETHOD getNormalizationMethod()
Gets the value of the normalizationMethod property.

Returns:
possible object is NNNORMALIZATIONMETHOD

setNormalizationMethod

public void setNormalizationMethod(NNNORMALIZATIONMETHOD value)
Sets the value of the normalizationMethod property.

Parameters:
value - allowed object is NNNORMALIZATIONMETHOD


Copyright © 2001-2012 JBoss by Red Hat. All Rights Reserved.