Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 2.27 KB

File metadata and controls

53 lines (38 loc) · 2.27 KB

ARM-Stream Reference Implementations

This subproject contains reference implementations for the interfaces defined by the arm-stream-api. The available implementations are listed bellow.

Base classifiers

Meta-Categorizers

All the meta categorizers above extend the same parent class, which defines a generic bayes error categorizer and implements the meta-categorizer interface.

Active-Categorizers

  • MKR
  • MKCN
  • Dummy (used when the active-categorizer's results is not relevant, like in the threshold analysis experiments).

Maven Dependencies

  • Arm-Stream API
  • Apache Commons Math (Available at the Maven Central Repository)
  • JUnit Jupiter API (Available at the Maven Central Repository)

Dependencies available at the Maven Central Repository will be downloaded automatically during the build.

How to use it in a project as a Maven dependency

First you need to install the framework to your Maven Local Repository.

Once you have installed the framework, import the arm-stream-impl at your Maven project by adding the following dependency to your project's pom.xml file (edit the version if necessary):

<dependency>
    <artifactId>arm-stream-impl</artifactId>
    <groupId>br.ufu.facom.armstream</groupId>
    <version>1.0-SNAPSHOT</version>
</dependency>