Socket
Book a DemoInstallSign in
Socket

tree_thinking

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tree_thinking

0.1.0
bundlerRubygems
Version published
Maintainers
1
Created
Source

The Ruby Gem

The ruby gem currently supports loading and applying a YAML decision tree. The following example is from the tests and shows how a YAML fixture file is parsed into a BinaryTree object:

tree = TreeThinking::BinaryTreeFactory.from_yaml('./spec/fixtures/simple_tree.yaml')

This tree can then be used to get a probability from an answer vector:

tree.call([1, 0])
#> 0.1

In this case, the answer vector is [1,0], however another approach that can be used is a Struct where the attribute order matches the order of the features in the decision tree. For example:

Answer = Struct.new(:likes_ice_cream, :likes_chocolate)
answer_vector = Answer.new(1,0)
tree.call(answer_vector)
#> 0.1

FAQs

Package last updated on 28 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.