运行环境:win10 64位 py 3.6 pycharm 2018.1.1
导入对应的包和数据
import matplotlib.pyplot as plt import numpy as np from sklearn import datasets,linear_model,cross_validation,svm def load_data_regression(): diabetes = datasets.load_diabetes() return cross_validation.train_test_split(diabetes,diabetes.target,test_size=0.25,random_state=0) def load_data_classfication(): iris = datasets.load_iris() X_train = iris.data y_train = iris.target return cross_validation.train_test_split(X_train,y_train,test_size=0.25,random_state=0,stratify=y_train)
#线性分类SVM def test_LinearSVC(*data): X_train,X_test,y_train,y_test = data cls = svm.LinearSVC() cls.fit(X_train,y_train) print('Coefficients:%s,intercept%s'%(cls.coef_,cls.intercept_)) print('Score:%.2f'%cls.score(X_test,y_test)) X_train,X_test,y_train,y_test = load_data_classfication() test_LinearSVC(X_train,X_test,y_train,y_test)
def test_LinearSVC_loss(*data): X_train,X_test,y_train,y_test = data losses = ['hinge','squared_hinge'] for loss in losses: cls = svm.LinearSVC(loss=loss) cls.fit(X_train,y_train) print('loss:%s'%loss) print('Coefficients:%s,intercept%s'%(cls.coef_,cls.intercept_)) print('Score:%.2f'%cls.score(X_test,y_test)) X_train,X_test,y_train,y_test = load_data_classfication() test_LinearSVC_loss(X_train,X_test,y_train,y_test)
#考察罚项形式的影响 def test_LinearSVC_L12(*data): X_train,X_test,y_train,y_test = data L12 = ['l1','l2'] for p in L12: cls = svm.LinearSVC(penalty=p,dual=False) cls.fit(X_train,y_train) print('penalty:%s'%p) print('Coefficients:%s,intercept%s'%(cls.coef_,cls.intercept_)) print('Score:%.2f'%cls.score(X_test,y_test)) X_train,X_test,y_train,y_test = load_data_classfication() test_LinearSVC_L12(X_train,X_test,y_train,y_test)
#考察罚项系数C的影响 def test_LinearSVC_C(*data): X_train,X_test,y_train,y_test = data Cs = np.logspace(-2,1) train_scores = [] test_scores = [] for C in Cs: cls = svm.LinearSVC(C=C) cls.fit(X_train,y_train) train_scores.append(cls.score(X_train,y_train)) test_scores.append(cls.score(X_test,y_test)) fig = plt.figure() ax = fig.add_subplot(1,1,1) ax.plot(Cs,train_scores,label = 'Training score') ax.plot(Cs,test_scores,label = 'Testing score') ax.set_xlabel(r'C') ax.set_xscale('log') ax.set_ylabel(r'score') ax.set_title('LinearSVC') ax.legend(loc='best') plt.show() X_train,X_test,y_train,y_test = load_data_classfication() test_LinearSVC_C(X_train,X_test,y_train,y_test)
#非线性分类SVM #线性核 def test_SVC_linear(*data): X_train, X_test, y_train, y_test = data cls = svm.SVC(kernel='linear') cls.fit(X_train,y_train) print('Coefficients:%s,intercept%s'%(cls.coef_,cls.intercept_)) print('Score:%.2f'%cls.score(X_test,y_test)) X_train,X_test,y_train,y_test = load_data_classfication() test_SVC_linear(X_train,X_test,y_train,y_test)
#考察高斯核 def test_SVC_rbf(*data): X_train, X_test, y_train, y_test = data ###测试gamm### gamms = range(1, 20) train_scores = [] test_scores = [] for gamm in gamms: cls = svm.SVC(kernel='rbf', gamma=gamm) cls.fit(X_train, y_train) train_scores.append(cls.score(X_train, y_train)) test_scores.append(cls.score(X_test, y_test)) fig = plt.figure() ax = fig.add_subplot(1, 1, 1) ax.plot(gamms, train_scores, label='Training score', marker='+') ax.plot(gamms, test_scores, label='Testing score', marker='o') ax.set_xlabel(r'$\gamma$') ax.set_ylabel(r'score') ax.set_ylim(0, 1.05) ax.set_title('SVC_rbf') ax.legend(loc='best') plt.show() X_train,X_test,y_train,y_test = load_data_classfication() test_SVC_rbf(X_train,X_test,y_train,y_test)
#考察sigmoid核 def test_SVC_sigmod(*data): X_train, X_test, y_train, y_test = data fig = plt.figure() ###测试gamm### gamms = np.logspace(-2, 1) train_scores = [] test_scores = [] for gamm in gamms: cls = svm.SVC(kernel='sigmoid',gamma=gamm,coef0=0) cls.fit(X_train, y_train) train_scores.append(cls.score(X_train, y_train)) test_scores.append(cls.score(X_test, y_test)) ax = fig.add_subplot(1, 2, 1) ax.plot(gamms, train_scores, label='Training score', marker='+') ax.plot(gamms, test_scores, label='Testing score', marker='o') ax.set_xlabel(r'$\gamma$') ax.set_ylabel(r'score') ax.set_xscale('log') ax.set_ylim(0, 1.05) ax.set_title('SVC_sigmoid_gamm') ax.legend(loc='best') #测试r rs = np.linspace(0,5) train_scores = [] test_scores = [] for r in rs: cls = svm.SVC(kernel='sigmoid', gamma=0.01, coef0=r) cls.fit(X_train, y_train) train_scores.append(cls.score(X_train, y_train)) test_scores.append(cls.score(X_test, y_test)) ax = fig.add_subplot(1, 2, 2) ax.plot(rs, train_scores, label='Training score', marker='+') ax.plot(rs, test_scores, label='Testing score', marker='o') ax.set_xlabel(r'r') ax.set_ylabel(r'score') ax.set_ylim(0, 1.05) ax.set_title('SVC_sigmoid_r') ax.legend(loc='best') plt.show() X_train,X_test,y_train,y_test = load_data_classfication() test_SVC_sigmod(X_train,X_test,y_train,y_test)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“python SVM 线性分类模型的实现”评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2024年11月14日
2024年11月14日
- 黑鸭子2010-再度重相逢[首版][WAV+CUE]
- 【原神手游】5.2版本圣遗物优化详情
- 方季惟.1989-一生只爱一次【蓝与白】【WAV+CUE】
- 群星.1997-强力舞曲总动员【金点】【WAV+CUE】
- 盘尼西林.2024-岛与黎明【智慧大狗】【FLAC分轨】
- 刀郎《柔情经典》 2CD[WAV分轨][3.8G]
- 群星2024《民谣精选》原音母版1:1直刻[低速原抓WAV+CUE][1.1G]
- 经典《泰坦尼克号原声大碟》[WAV+DSF+FLAC多版][5.2G]
- 魔兽世界兽王猎输出宏代码是什么 兽王猎翻页输出宏命令代码分享
- 魔兽世界wlk野德一键输出宏是什么 wlk野德一键输出宏介绍
- wlk鸟德一键输出宏是什么 wlk鸟德一键输出宏介绍
- 《明末:渊虚之羽》外网新宣传:有勇气面对障碍吗?
- 视觉盛宴!V社公布《看火人》团队新作水面物理效果演示
- 张艺谋呼吁观众走进影院看电影:对解说短视频很无语
- 车载音乐最强享受 《车载极致女声精选》[WAV分轨][1G]