Scala Stochastic Outlier Selection

Scala version of Stochastic Outlier Selection

License

License

Categories

Categories

Scala Languages
GroupId

GroupId

com.github.gnni
ArtifactId

ArtifactId

scala-stochastic-outlier-selection_2.12
Last Version

Last Version

0.2.0
Release Date

Release Date

Type

Type

jar
Description

Description

Scala Stochastic Outlier Selection
Scala version of Stochastic Outlier Selection
Project URL

Project URL

https://github.com/Gnni/scala-stochastic-outlier-selection
Project Organization

Project Organization

Hasso Plattner Institute, University of Potsdam
Source Code Management

Source Code Management

https://github.com/Gnni/scala-stochastic-outlier-selection

Download scala-stochastic-outlier-selection_2.12

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.gnni/scala-stochastic-outlier-selection_2.12/ -->
<dependency>
    <groupId>com.github.gnni</groupId>
    <artifactId>scala-stochastic-outlier-selection_2.12</artifactId>
    <version>0.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.gnni/scala-stochastic-outlier-selection_2.12/
implementation 'com.github.gnni:scala-stochastic-outlier-selection_2.12:0.2.0'
// https://jarcasting.com/artifacts/com.github.gnni/scala-stochastic-outlier-selection_2.12/
implementation ("com.github.gnni:scala-stochastic-outlier-selection_2.12:0.2.0")
'com.github.gnni:scala-stochastic-outlier-selection_2.12:jar:0.2.0'
<dependency org="com.github.gnni" name="scala-stochastic-outlier-selection_2.12" rev="0.2.0">
  <artifact name="scala-stochastic-outlier-selection_2.12" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.gnni', module='scala-stochastic-outlier-selection_2.12', version='0.2.0')
)
libraryDependencies += "com.github.gnni" % "scala-stochastic-outlier-selection_2.12" % "0.2.0"
[com.github.gnni/scala-stochastic-outlier-selection_2.12 "0.2.0"]

Dependencies

compile (2)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.12.8
org.scalanlp : breeze_2.12 jar 0.13.2

test (1)

Group / Artifact Type Version
org.scalatest : scalatest_2.12 jar 3.0.4

Project Modules

There are no modules declared in this project.

Stochastic Outlier Selection in Scala

Codacy Badge Build Status Coverage Status Maven Central

Adapted version of the implementation for Apache Spark. This versions aims to perform Stochastic Outlier Selection (SOS) using Scala only, i.e., w/o the need of any Apache Spark resources.

SOS is an unsupervised outlier selection algorithm. It uses the concept of affinity to compute an outlier probability for each data point.

For more information about SOS, see the technical report: J.H.M. Janssens, F. Huszar, E.O. Postma, and H.J. van den Herik. Stochastic Outlier Selection. Technical Report TiCC TR 2012-001, Tilburg University, Tilburg, the Netherlands, 2012.

Selecting outliers from data

The current implementation accepts an Array with elements of the type Array[Double] and returns the indexes of the vector with it's degree of outlierness.

Current implementation only works with Euclidean distance.

Versions

Version
0.2.0
0.1.0