mirror of
https://github.com/dkam/decisiontree.git
synced 2025-12-28 15:14:52 +00:00
93 lines
2.6 KiB
Ruby
93 lines
2.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe describe DecisionTree::ID3Tree do
|
|
|
|
describe "simple discrete case" do
|
|
Given(:labels) { ["sun", "rain"]}
|
|
Given(:data) do
|
|
[
|
|
[1,0,1],
|
|
[0,1,0]
|
|
]
|
|
end
|
|
Given(:tree) { DecisionTree::ID3Tree.new(labels, data, 1, :discrete) }
|
|
When { tree.train }
|
|
Then { tree.predict([1,0]).should == 1 }
|
|
Then { tree.predict([0,1]).should == 0 }
|
|
end
|
|
|
|
describe "discrete attributes" do
|
|
Given(:labels) { ["hungry", "color"] }
|
|
Given(:data) do
|
|
[
|
|
["yes", "red", "angry"],
|
|
["no", "blue", "not angry"],
|
|
["yes", "blue", "not angry"],
|
|
["no", "red", "not angry"]
|
|
]
|
|
end
|
|
Given(:tree) { DecisionTree::ID3Tree.new(labels, data, "not angry", :discrete) }
|
|
When { tree.train }
|
|
Then { tree.predict(["yes", "red"]).should == "angry" }
|
|
Then { tree.predict(["no", "red"]).should == "not angry" }
|
|
end
|
|
|
|
describe "discrete attributes" do
|
|
Given(:labels) { ["hunger", "happiness"] }
|
|
Given(:data) do
|
|
[
|
|
[8, 7, "angry"],
|
|
[6, 7, "angry"],
|
|
[7, 9, "angry"],
|
|
[7, 1, "not angry"],
|
|
[2, 9, "not angry"],
|
|
[3, 2, "not angry"],
|
|
[2, 3, "not angry"],
|
|
[1, 4, "not angry"]
|
|
]
|
|
end
|
|
Given(:tree) { DecisionTree::ID3Tree.new(labels, data, "not angry", :continuous) }
|
|
When { tree.train }
|
|
Then { tree.graph("continuous") }
|
|
Then { tree.predict([7, 7]).should == "angry" }
|
|
Then { tree.predict([2, 3]).should == "not angry" }
|
|
end
|
|
|
|
describe "a mixture" do
|
|
Given(:labels) { ["hunger", "color"] }
|
|
Given(:data) do
|
|
[
|
|
[8, "red", "angry"],
|
|
[6, "red", "angry"],
|
|
[7, "red", "angry"],
|
|
[7, "blue", "not angry"],
|
|
[2, "red", "not angry"],
|
|
[3, "blue", "not angry"],
|
|
[2, "blue", "not angry"],
|
|
[1, "red", "not angry"]
|
|
]
|
|
end
|
|
Given(:tree) { DecisionTree::ID3Tree.new(labels, data, "not angry", color: :discrete, hunger: :continuous) }
|
|
When { tree.train }
|
|
Then { tree.graph("continuous") }
|
|
Then { tree.predict([7, "red"]).should == "angry" }
|
|
Then { tree.predict([2, "blue"]).should == "not angry" }
|
|
end
|
|
|
|
describe "infinite recursion case" do
|
|
Given(:labels) { [:a, :b, :c] }
|
|
Given(:data) do
|
|
[
|
|
["a1", "b0", "c0", "RED"],
|
|
["a1", "b1", "c1", "RED"],
|
|
["a1", "b1", "c0", "BLUE"],
|
|
["a1", "b0", "c1", "BLUE"]
|
|
]
|
|
end
|
|
Given(:tree) { DecisionTree::ID3Tree.new(labels, data, "RED", :discrete) }
|
|
When { tree.train }
|
|
Then { tree.predict(["a1","b0","c0"]).should == "RED" }
|
|
end
|
|
|
|
end
|