Files
decisiontree/spec/id3_spec.rb
Carlos Agarie 3e4619604a Test figure creation
Simply creates a tree, trains it and produces a PNG figure, testing to
confirm that no exception was raised and that the image is really there.
2013-12-19 02:07:29 -02:00

126 lines
3.3 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.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.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
describe "numerical labels case" do
Given(:labels) { [1, 2] }
Given(:data) do
[
[1, 1, true],
[1, 2, false],
[2, 1, false],
[2, 2, true]
]
end
Given(:tree) { DecisionTree::ID3Tree.new labels, data, nil, :discrete }
When { tree.train }
Then {
lambda { tree.predict([1, 1]) }.should_not raise_error
}
end
describe "create a figure" do
after(:all) do
File.delete("just_a_spec.png") if File.file?("just_a_spec.png")
end
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 }
When(:result) { tree.graph("just_a_spec") }
Then { expect(result).to_not have_failed }
And { File.file?("just_a_spec.png") }
end
end