|
ABLE, Version 1.1b | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.rmi.server.RemoteObject | +--java.rmi.server.RemoteServer | +--java.rmi.server.UnicastRemoteObject | +--com.ibm.able.AbleObject | +--com.ibm.able.beans.AbleNetwork | +--com.ibm.able.beans.AbleRadialBasisFunctionNet
Fields inherited from class com.ibm.able.beans.AbleNetwork |
activations,
breakPointFlag,
breakPoints,
inNum,
lastBreakPoint,
MODE_NAMES,
netArchitecture,
netEpoch,
netMode,
netModelType,
netRecInx,
netStepsPerEpoch,
NNRUN,
NNTEST,
NNTRAIN,
outNum |
Fields inherited from class com.ibm.able.AbleObject |
changed,
chgSupport,
comment,
dataFlowEnabled,
destBufferConnections,
eventQueue,
fileName,
inputBuffer,
listeners,
logger,
name,
outputBuffer,
parent,
propertyConnectionMgr,
sourceBufferConnections,
state,
stateChgSupport |
Fields inherited from class java.rmi.server.RemoteObject |
ref |
Constructor Summary | |
AbleRadialBasisFunctionNet()
default constructor |
|
AbleRadialBasisFunctionNet(java.lang.String aName)
default constrcutor with a name |
|
AbleRadialBasisFunctionNet(java.lang.String aName,
java.lang.String args)
construct a back prop network with specified name and architecture |
Method Summary | |
void |
changeNetArchitecture(java.lang.String parms)
|
void |
createNetwork(int NumIn,
int NumHid,
int NumOut)
create a Radial Basis Function network with the specified architecture |
void |
endEpoch()
|
double[] |
getActivations()
|
double |
getAllWidths()
|
boolean |
getAutoCenter()
|
double |
getAveRMSError()
return the average RMS error |
double |
getAvgRMSError()
|
double |
getBadPatRatio()
|
int |
getBasisFunction()
|
double[] |
getCenters()
|
double |
getDecayFactor()
|
double[] |
getError()
|
int |
getFeedbackType()
|
double |
getLastRMSError()
|
double |
getLearnRate()
return the learn rate parameter |
double |
getMaxRMSError()
|
double |
getMomentum()
return the momentum parameter |
java.lang.String |
getNetArchitecture()
get the network architecture as specified by the user |
java.util.Vector |
getNetworkGraphicData()
return data on the network architecture, activations, and weights for display by the AbleNetworkGraphicView custom inspector |
int |
getNumCenters()
|
int |
getNumHidden()
|
int |
getNumInputs()
|
int |
getNumOutputs()
|
int |
getNumUnits()
|
int |
getNumWeights()
|
double |
getPercentCorrect()
|
double |
getPercentIncorrect()
|
double |
getPercentUnknown()
|
double[] |
getTeach()
|
double[] |
getThreshold()
|
double |
getTolerance()
return the error tolerance parameter |
boolean |
getTrainingKMapNet()
|
double[] |
getWeights()
|
double[] |
getWgtDeriv()
|
int |
getWinner()
|
double |
getWinnerAct()
|
boolean |
isAdaptLearnRate()
|
boolean |
isEpochUpdate()
|
boolean |
isExplicitErrorMode()
|
boolean |
isNormalized()
|
boolean |
isSymmetricActFunction()
|
void |
process()
|
void |
readInputs()
move data from the train/test set into the network input units and the teach array |
void |
reset()
|
void |
setAdaptLearnRate(boolean state)
|
void |
setAllWidths(double wid)
|
void |
setAutoCenter(boolean state)
|
void |
setBasisFunction(int fun)
|
void |
setDecayFactor(double factor)
|
void |
setEpochUpdate(boolean state)
|
void |
setExplicitErrorMode(boolean state)
|
void |
setLearnRate(double newVal)
set the learn rate parameter |
void |
setMomentum(double newVal)
set the momentum parameter |
void |
setNetArchitecture(java.lang.String arch)
Set the back propagation network architecture The architecture string is a sequence of space-delimited integers as follows: numInput numHid1 numHid2 numHid3 numOutput feedbackType Note if feedbackType is not specified, it will be set to 0 |
void |
setNormalized(boolean state)
|
void |
setSymmetricActFunction(boolean state)
|
void |
setTolerance(double newVal)
set the error tolerance parameter |
Methods inherited from class com.ibm.able.beans.AbleNetwork |
breakPointReached,
clearAllBreakPoints,
clearBreakPoint,
clearBreakPoint,
clearLastBreakPoint,
getLastBreakPoint,
getNetEpoch,
getNetMode,
getNetRecInx,
getNetStepsPerEpoch,
init,
setBreakPoint,
setNetMode,
setNetStepsPerEpoch,
testBreakPoints |
Methods inherited from class java.rmi.server.UnicastRemoteObject |
clone,
exportObject,
exportObject,
exportObject,
unexportObject |
Methods inherited from class java.rmi.server.RemoteServer |
getClientHost,
getLog,
setLog |
Methods inherited from class java.rmi.server.RemoteObject |
equals,
getRef,
hashCode,
toStub |
Methods inherited from class java.lang.Object |
finalize,
getClass,
notify,
notifyAll,
wait,
wait,
wait |
Constructor Detail |
public AbleRadialBasisFunctionNet() throws java.rmi.RemoteException
public AbleRadialBasisFunctionNet(java.lang.String aName) throws java.rmi.RemoteException
public AbleRadialBasisFunctionNet(java.lang.String aName, java.lang.String args) throws java.rmi.RemoteException
Method Detail |
public int getNumInputs()
public int getNumHidden()
public int getNumOutputs()
public int getNumUnits()
public int getNumWeights()
public int getNumCenters()
public boolean isExplicitErrorMode()
public void setExplicitErrorMode(boolean state)
public boolean isAdaptLearnRate()
public void setAdaptLearnRate(boolean state)
public boolean isEpochUpdate()
public void setEpochUpdate(boolean state)
public boolean isSymmetricActFunction()
public void setSymmetricActFunction(boolean state)
public int getFeedbackType()
public double getDecayFactor()
public void setDecayFactor(double factor)
public double getAvgRMSError()
public double getLastRMSError()
public double getMaxRMSError()
public double getBadPatRatio()
public void setLearnRate(double newVal)
public double getLearnRate()
public void setMomentum(double newVal)
public double getPercentCorrect()
public double getPercentIncorrect()
public double getPercentUnknown()
public double getMomentum()
public void setTolerance(double newVal)
public double getTolerance()
public double getAveRMSError()
public double[] getActivations()
public double[] getWeights()
public double[] getCenters()
public double[] getWgtDeriv()
public double[] getThreshold()
public double[] getTeach()
public double[] getError()
public void setBasisFunction(int fun)
public int getBasisFunction()
public double getAllWidths()
public void setAllWidths(double wid)
public void setNormalized(boolean state)
public boolean isNormalized()
public void setAutoCenter(boolean state)
public boolean getAutoCenter()
public int getWinner()
public double getWinnerAct()
public boolean getTrainingKMapNet()
public java.lang.String getNetArchitecture()
public void reset() throws java.rmi.RemoteException
public void readInputs() throws java.rmi.RemoteException
public void process() throws java.rmi.RemoteException
public void endEpoch()
public void changeNetArchitecture(java.lang.String parms) throws java.rmi.RemoteException
public void createNetwork(int NumIn, int NumHid, int NumOut) throws java.rmi.RemoteException
public void setNetArchitecture(java.lang.String arch) throws java.rmi.RemoteException
arch
- A string that defines the network architecturepublic java.util.Vector getNetworkGraphicData()
|
ABLE, Version 1.1b | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |