This grossly overloaded consequent clause can represent any of the
following:
A consequent clause in a conditional (if-then) rule:
If the LHS and the RHS are both AbleAtoms, then the clause is an
AbleAtom-to-AbleAtom assignment.
This class describes an external data set using a definition file *.dfn
which describes the field name and type (continuous/discrete/categorical)
special types (ignore / predicted) are used by auto-generation functions
min/mean/max values are computed for continuous values for auto-scaling
Create a data set object over a text data file
this object includes the in-memory cache or buffer for all or part of the data
and handles the text file i/o using a BufferedReader
This class represents a set of meta-data used to describe external data
It consists of a vector of AbleFieldDefinitions which describe individual fields
Field definitions contain names, data types, and usage (input/output/ignore)
This class can read/write text *.dfn files
This class is used to save/restore the Able Editor environment
Which includes, viewObject positions and
Inspector windows and their settings
An Agent is saved to agentFileName.ser,
The corresponding environment is serialized into agentFileName.env
The methods in this interface must be implemented by all objects
wishing to interface with the AbleEventQueue object; the methods
provide a way for the event queue to hand off processing of timer
and asynchronous AbleEvents.
This class provides data translation and scaling functions for Able
neural networks
// This code performs complicated processing of data
// Based on the field input and output data types,
// the code can be processed in a wide variety of ways.
This class provides several static methods for displaying help
To open a broswer on a specific URL, use displayHelpUrl()
To open a browser on an Able help file, use displayHelp()
Able help files are assumed to be in {AbleHome}/docs/com/ibm/able ...
The InferenceEngine provides the control code and inferencing algorithms for
processing a RuleSet (consisting of working memory and rules)
It manages a set of sensors/effectors which may be
construct AbleNaiveBayes bean with the explicitly specified parameters
ncls - number of class labels
nftr - number of features
nval - number of values per each feature (assuming nominal - discrete finite-valued - features)
cpriors - prior probability distribution over class labels
m - equivalent sample size
ppriors - prior estimates of the probabilities P(f|C) (used for Bayesian parameter estimation
with equivalent sample size method)
This class is the default implementation of the AbleBean interface
and is the base class for all ABLE objects; in particular,
AbleObjects are JavaBeans which are specifically designed to be
part of the ABLE framework.
Create a property connection, so that a change to the named bound
property on the source object turns into a call on the "setter"
method of the given target object.
Create a property connection, so that a change to the named bound
property on the source object turns into a call on the "setter"
method of the given target object.
This class defines the interface for "Readable" data objects; that
is, classes that implement this interface can appear on the
righthand side of assignment and comparative clauses.
The AbleRuleBase managers a collection of AbleRuleSets:
and selects which RuleSet to use based on context (user or domain name)
An AbleRuleBase is an AbleAgent, it contains a set of AbleBeans (RuleSets)
RuleSet class
The RuleSet provides an inferencing context using:
(1) a set of working memory items (Facts, Variables, others)
(2) a set of Rules
(3) an inference engine
This class implements the Kohonen Self-Organizing Feature Map algorithm
For clustering high-dimensional input spaces into a 2-D grid
It has several enhancements, including special processing for sparse inputs
batch updates, gaussian neighborhood functions and exponential learning rate decay
This class defines the interface for "Writable" data objects; that
is, classes that implement this interface can appear on the
lefthand side of assignment clauses.