frbs.learn
and predict
.DENFIS(data.train, range.data.ori, Dthr = 0.1,
max.iter = 100, step.size = 0.01, d = 2)
ECM is a distance-based clustering method which is
determined by a threshold value, Dthr
. This
parameter influences how many clusters are created. In
the beginning of the clustering process, the first
instance from the training data is chosen to be a cluster
center, and the determining radius is set to zero.
Afterwards, using the next instance, cluster centers and
radius are changed based on certain mechanisms of ECM
(please see ECM
). All of the cluster
centers are then obtained after evaluating all the
training data. The next step is to update the parameters
on the consequent part with the assumption that the
antecedent part which we got from ECM is fixed. Actually,
ECM can perform well as an online clustering method, but
in this package it is used in an offline mode.
DENFIS.eng
, frbs.learn
, and
predict