Artifacts in JaCaDDM are meant to provide Data Mining tools consisting on learning algorithms, data filtering, data management, model evaluation, etc. The platform already provides a set of artifacts, which are found in experimenter.artifacts, that can be used in new learning strategies. Nevertheless it is also possible to add new artifacts as needed. Prior knowledge of CArtAgO is required.
When adding a new artifact, it is necessary to distinguish between classification related artifacts and whatever else. If the artifact is not classification related, there are not any constraints, it can be added directly to experimenter.artifacts package or referenced from a new package (taking into account the classpath when executing node0 and default nodes). If, on the other hand, the artifact is classification related, and specifically, if it wraps a model inducing algorithm not supported by JaCaDDM, then some extra steps are required.
JaCaDDM generically evaluates any kind of classification model, but for that it is necessary that such models implement the experimenter.classifiers.BaseClassifier interface which provides generic methods to induce and do classifications with the model. If you already have a Java-enabled class that represents your model inducer, then it is only a matter of extending from such class and implementing the required methods from the interface accordingly.
Once the classifier is implemented, a new artifact that internally makes use of such classifier can be created. In order to properly work with the platform, the artifact should ideally have definitions for the following operations: