码迷,mamicode.com
首页 > 其他好文 > 详细

决策树

时间:2017-08-07 19:28:40      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:imp   append   com   odi   txt   blog   creat   log   split   

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from trees import DecisionTreeClassifier

lense_labels = [‘age‘, ‘prescript‘, ‘astigmatic‘, ‘tearRate‘]
X = []
Y = []

with open(‘lenses.txt‘, ‘r‘) as f:
for line in f:
comps = line.strip().split(‘\t‘)
X.append(comps[: -1])
Y.append(comps[-1])

clf = DecisionTreeClassifier()
clf.create_tree(X, Y, lense_labels)

技术分享

决策树

标签:imp   append   com   odi   txt   blog   creat   log   split   

原文地址:http://www.cnblogs.com/wojiaohunian/p/7300705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!