from sklearn.tree import DecisionTreeClassifier from sklearn import tree best_dt =DecisionTreeClassifier(max_depth=2,criterion='entropy',min_samples_split= 2) best_dt.fit(X_train, y_train) print (best_dt.score(X_train, y_train)) print (best_dt.score(X_test, y_test))from sklearn.metrics import classification_report, confusion_matrix y_pred =best_dt.predict(X_test) print(classification_report(y_test,y_pred))cm = confusion_matrix(y_test, y_pred) plt.figure(figsize = (8,8)) sns.heatmap(cm,cmap= "Blues", linecolor = 'black' , linewidth = 1 , annot = True, fmt='' , xticklabels = ['A','B','C','D'] , yticklabels = ['A','B','C','D']) plt.xlabel("Predicted") plt.ylabel("Actual") plt.show()tree_model = DecisionTreeClassifier() prams ={ 'max_depth' : [3 ,5, 7,8, 11, 12],'min_samples_split' : [2, 3, 5, 9] , 'criterion' : ['gini', 'entropy'] } gd_cv2= GridSearchCV(tree_model , param_grid=prams, n_jobs=-1 ,cv=10)gd_cv2.fit(X_train , y_train) tunn_tree =gd_cv2.best_estimator_ print(f'Train : {tunn_tree.score(X_train, y_train)}') model_eval(tunn_tree,X_test,y_test)plt.figure(figsize=(15,10)) names = ['A', 'D', 'B', 'C'] tree.plot_tree(best_dt,feature_names = X_train.columns,class_names=names,filled = True); plt.show()
时间: 2024-01-21 10:03:48 浏览: 104
矩阵位移法matlab代码-XFEM_Fracture2D_wood:对XFEM_Fracture2D进行了一些更改,以使功能渐变材料(例如木
这段代码使用了scikit-learn库中的DecisionTreeClassifier类来创建一个决策树分类器,并使用max_depth、criterion、min_samples_split等参数对其进行了配置。其中,max_depth设置了决策树的最大深度,criterion指定使用的划分标准为信息熵,min_samples_split指定了节点分裂的最小样本数为2。
之后,使用fit方法对训练数据进行拟合,并使用score方法计算了模型在训练集和测试集上的准确率,并将其打印输出。接下来,使用classification_report和confusion_matrix方法计算并打印了模型的分类报告和混淆矩阵。
随后,使用GridSearchCV方法对决策树分类器进行调参,尝试不同的max_depth、min_samples_split和criterion参数组合,以求得最优的模型。最后,使用tunn_tree.score方法计算了调参后模型在训练集上的准确率,并使用model_eval方法计算并打印了模型在测试集上的性能表现。
最后,使用plot_tree方法可视化了决策树模型的决策过程。
阅读全文