Skip to content

Commit

Permalink
Add forest of 767 trees
Browse files Browse the repository at this point in the history
  • Loading branch information
aayn committed Nov 1, 2016
1 parent a2fe00b commit 78b2c86
Show file tree
Hide file tree
Showing 752 changed files with 69 additions and 17 deletions.
17 changes: 9 additions & 8 deletions Classifiers/decision_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def make_tree(A, max_depth=None):


i = float(inc[feat])
print(feat)
#print(feat)
if i == 0:
continue
slices = abs(int((stop - start) / i))
Expand All @@ -87,7 +87,7 @@ def make_tree(A, max_depth=None):
best_divide = sets

if max_gain > 0:
print("Best criteria: {0}".format(best_criteria))
#print("Best criteria: {0}".format(best_criteria))
true_branch = None
false_branch = None
if max_depth is None:
Expand Down Expand Up @@ -136,20 +136,21 @@ def classify_one(sample, tree):
# with open('d_tree.pickle', 'wb') as f:
# pickle.dump(tree, f)
tree = None
with open('forest/d_tree0.pickle', 'rb') as f:
with open('orig_tree.pickle', 'rb') as f:
tree = pickle.load(f)

print_tree(tree)
# print_tree(tree)
tru = 0
for i in range(Ate.shape[0]):
pred = (classify_one(Ate[i, :], tree))
print(pred, Yte[i])
# print(pred, Yte[i])
for key, _ in pred.items():
print("{0} {1}".format(int(key), Yte[i]))
# print("{0} {1}".format(int(key), Yte[i]))
if int(key) == Yte[i]:
tru += 1
print(key)
print(tru / Ate.shape[0])
# print(key)
t = tru / Ate.shape[0]
print("Overall accuracy: {0} %".format(t * 100))

# print(classify_one(Ate[0, :], tree))
# print(Yte[0])
49 changes: 49 additions & 0 deletions Classifiers/draw_tree.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
from PIL import Image,ImageDraw
from decision_tree import *

def getwidth(tree):
if tree.tb==None and tree.fb==None: return 1
return getwidth(tree.tb)+getwidth(tree.fb)

def getdepth(tree):
if tree.tb==None and tree.fb==None: return 0
return max(getdepth(tree.tb),getdepth(tree.fb))+1

def drawtree(tree,jpeg='dt.jpg'):
w=getwidth(tree)*50
h=getdepth(tree)*100+120

img=Image.new('RGB',(w,h),(255,255,255))
draw=ImageDraw.Draw(img)

drawnode(draw,tree,w/2,20)
img.save(jpeg,'JPEG')

def drawnode(draw,tree,x,y):
if tree.result==None:
# Get the width of each branch
w1=getwidth(tree.fb)*50
w2=getwidth(tree.tb)*50

# Determine the total space required by this node
left=x-(w1+w2)/2
right=x+(w1+w2)/2

# Draw the condition string
draw.text((x-20,y-10),str(tree.feature)+':'+str(tree.val),(0,0,0))

# Draw links to the branches
draw.line((x,y,left+w1/2,y+100),fill=(0,0,255))
draw.line((x,y,right-w2/2,y+100),fill=(0,0,255))

# Draw the branch nodes
drawnode(draw,tree.fb,left+w1/2,y+100)
drawnode(draw,tree.tb,right-w2/2,y+100)
else:
txt=' \n'.join(['%s:%d'%v for v in tree.result.items()])
draw.text((x-20,y),txt,(0,0,0))

tree = None
with open('forest/d_tree0.pickle', 'rb') as f:
tree = pickle.load(f)
drawtree(tree)
Binary file added Classifiers/forest/d_tree100.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree101.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree102.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree103.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree104.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree105.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree106.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree107.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree108.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree109.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree110.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree111.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree112.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree113.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree114.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree115.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree116.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree117.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree118.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree119.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree120.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree121.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree122.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree123.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree124.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree125.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree126.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree127.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree128.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree129.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree130.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree131.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree132.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree133.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree134.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree135.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree136.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree137.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree138.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree139.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree140.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree141.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree142.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree143.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree144.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree145.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree146.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree147.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree148.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree149.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree150.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree151.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree152.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree153.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree154.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree155.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree156.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree157.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree158.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree159.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree160.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree161.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree162.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree163.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree164.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree165.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree166.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree167.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree168.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree169.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree170.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree171.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree172.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree173.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree174.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree175.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree176.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree177.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree178.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree179.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree180.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree181.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree182.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree183.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree184.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree185.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree186.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree187.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree188.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree189.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree190.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree191.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree192.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree193.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree194.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree195.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree196.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree197.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree198.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree199.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree20.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree200.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree201.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree202.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree203.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree204.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree205.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree206.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree207.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree208.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree209.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree21.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree210.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree211.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree212.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree213.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree214.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree215.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree216.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree217.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree218.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree219.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree22.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree220.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree221.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree222.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree223.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree224.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree225.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree226.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree227.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree228.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree229.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree23.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree230.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree231.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree232.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree233.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree234.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree235.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree236.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree237.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree238.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree239.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree24.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree240.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree241.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree242.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree243.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree244.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree245.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree246.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree247.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree248.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree249.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree25.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree250.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree251.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree252.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree253.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree254.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree255.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree256.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree257.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree258.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree259.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree26.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree260.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree261.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree262.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree263.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree264.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree265.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree266.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree267.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree268.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree269.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree27.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree270.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree271.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree272.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree273.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree274.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree275.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree276.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree277.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree278.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree279.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree28.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree280.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree281.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree282.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree283.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree284.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree285.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree286.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree287.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree288.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree289.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree29.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree290.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree291.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree292.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree293.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree294.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree295.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree296.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree297.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree298.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree299.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree30.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree300.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree301.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree302.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree303.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree304.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree305.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree306.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree307.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree308.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree309.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree31.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree310.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree311.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree312.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree313.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree314.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree315.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree316.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree317.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree318.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree319.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree32.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree320.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree321.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree322.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree323.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree324.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree325.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree326.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree327.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree328.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree329.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree33.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree330.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree331.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree332.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree333.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree334.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree335.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree336.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree337.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree338.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree339.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree34.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree340.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree341.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree342.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree343.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree344.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree345.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree346.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree347.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree348.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree349.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree35.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree350.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree351.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree352.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree353.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree354.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree355.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree356.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree357.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree358.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree359.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree36.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree360.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree361.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree362.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree363.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree364.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree365.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree366.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree367.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree368.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree369.pickle
Binary file not shown.
Binary file modified Classifiers/forest/d_tree37.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree370.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree371.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree372.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree373.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree374.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree375.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree376.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree377.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree378.pickle
Binary file not shown.
Binary file added Classifiers/forest/d_tree379.pickle
Binary file not shown.
Loading

0 comments on commit 78b2c86

Please sign in to comment.