Decidex

A small and simple decision tree learning library for using on small datasets in Elixir applications.

Decision trees are one of the simplest machine learning models, and though they don't perform nearly as good as more sophisticated classifiers on large datasets, they have some important advantages for small usecases:

These factors allow decision trees to be used to sparkle some intelligent logic inside larger applications without resorting to whole data-processing pipelines and sophisticated machine learning.

Installation

The package can be installed by adding decidex to your list of dependencies in mix.exs:

def deps do
  [
    {:decidex, "~> 0.0.2"}
  ]
end

Docs are available on Hex.pm.