scala-recog


A machine learning library in Scala

scala-recog is a library written in Scala to provide general implementations of machine learning algorithms.


The project was moved to github

http://github.com/onof/scala-recog


Classifiers

  • k-NN
  • ID3: see Decision Tree example
  • Bayes: see Bayes example
  • Logistic Regression: see Logistic Regression Traits

Utilities

  • Shannon Entropy (discrete)

Getting started

sbt

Builds are hosted on scala-tools. To include it, add this to your project (sbt 0.7.7):

``` val scalaToolsSnapshots = "Scala Tools Snapshots" at "http://scala-tools.org/repo-snapshots/" val scalaNLPRepo = "ScalaNLP" at "http://repo.scalanlp.org/repo/" val ondexRepo = "Ondex" at "http://ondex.rothamsted.bbsrc.ac.uk/nexus/content/groups/public/"

val scalarecog = "com.googlecode.scala-recog" %% "scala-recog" % "0.2.3-SNAPSHOT" ```

Download

If you don't use SBT, you can download the package from the Downloads section and include it. You will need also to import Scalala in your project.

Building scala-recog

scala-recog is currently built with sbt 0.7.7 (you can download and install it from the former hosting site). * checkout the code * go to the folder and run sbt * launch update action to get the reference * more details here

Project Information

The project was created on Jul 18, 2011.

Labels:
Scala Machinelearning Library Algorithm Pattern