Skip to content

Sequoia is Java library for scoring and evaluating decision trees

License

Notifications You must be signed in to change notification settings

staples-sparx/Sequoia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sequoia

An efficient Java decision tree library.

Getting Started

To require the current release version in Gradle, add the following to the dependencies section of your build file:

compile 'com.staples-sparx:Sequoia:0.20.2'

Usage

This library is pre-Alpha. API is subject to change.

Nodes should be created calling the constructor directly.

public Node(F feature, double value, boolean isLeaf, int[] childOffsets, Condition<F, C> condition)

Trees and Forests can be created using the Planter class.

public static <F, C> Tree<F, C> createTreeFromNodes(List<Node<F, C>> nodes)

public static <F, C> Forest<F, C> createForestFromTrees(List<Tree<F, C>> trees)

About

Sequoia is Java library for scoring and evaluating decision trees

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published