emel v0.2.0 API Reference
Modules
Turn data into functions! A simple and functional machine learning library written in elixir
Uses a decision tree to go from observations about an item (represented in the branches) to conclusions about the item’s discrete target value (represented in the leaves)
Aims to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean
A non-parametric method used for classification and regression. In both cases, the input consists of the k closest training examples in the feature space
A linear approach to modelling the relationship between a dependent variable and one or more independent variables
A classification algorithm used to assign observations to a set of two classes. It transforms its output using the logistic sigmoid function to return a probability value which can then be mapped to the classes
A simple probabilistic classifier based on applying Bayes’ theorem with naive independence assumptions between the features. It makes classifications using the maximum posteriori decision rule in a Bayesian setting
A collection of connected neurons, that looks like a biological brain. Each connection, can transmit a signal from one neuron to another
A binary classification algorithm that makes its predictions based on a linear predictor function combining a set of weights with the feature vector