国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

對python實(shí)現(xiàn)二維函數(shù)高次擬合的示例詳解

2020-01-04 13:40:08
字體:
供稿:網(wǎng)友

在參加“數(shù)據(jù)挖掘”比賽中遇到了關(guān)于函數(shù)高次擬合的問題,然后就整理了一下源碼,以便后期的學(xué)習(xí)與改進(jìn)。

在本次“數(shù)據(jù)挖掘”比賽中感覺收獲最大的還是對于神經(jīng)網(wǎng)絡(luò)的認(rèn)識,在接近一周的時間里,研究了進(jìn)40種神經(jīng)網(wǎng)絡(luò)模型,雖然在持續(xù)一周的挖掘比賽把自己折磨的慘不忍睹,但是收獲頗豐。現(xiàn)在想想也挺欣慰自己在這段時間里接受新知識的能力。關(guān)于神經(jīng)網(wǎng)絡(luò)方面的理解會在后續(xù)博文中補(bǔ)充(剛提交完論文,還沒來得及整理),先分享一下高次擬合方面的知識。

# coding=utf-8import matplotlib.pyplot as pltimport numpy as npimport scipy as spimport csvfrom scipy.stats import normfrom sklearn.pipeline import Pipelinefrom sklearn.linear_model import LinearRegressionfrom sklearn.preprocessing import PolynomialFeaturesfrom sklearn import linear_model''''' 數(shù)據(jù)導(dǎo)入 '''def loadDataSet(fileName): dataMat = [] labelMat = [] csvfile = file(fileName, 'rb') reader = csv.reader(csvfile) b = 0 for line in reader:  if line[50] is '':   b += 1  else:   dataMat.append(float(line[41])/100*20+30)   labelMat.append(float(line[25])*100) csvfile.close() print "absence time number: %d" % b return dataMat,labelMatxArr,yArr = loadDataSet('data.csv')x = np.array(xArr)y = np.array(yArr)# x = np.arange(0, 1, 0.002)# y = norm.rvs(0, size=500, scale=0.1)# y = y + x ** 2def rmse(y_test, y): return sp.sqrt(sp.mean((y_test - y) ** 2))def R2(y_test, y_true): return 1 - ((y_test - y_true) ** 2).sum() / ((y_true - y_true.mean()) ** 2).sum()def R22(y_test, y_true): y_mean = np.array(y_true) y_mean[:] = y_mean.mean() return 1 - rmse(y_test, y_true) / rmse(y_mean, y_true)plt.scatter(x, y, s=5)#分別進(jìn)行1,2,3,6次擬合degree = [1, 2,3, 6]y_test = []y_test = np.array(y_test)for d in degree: #普通 # clf = Pipeline([('poly', PolynomialFeatures(degree=d)), #     ('linear', LinearRegression(fit_intercept=False))]) # clf.fit(x[:, np.newaxis], y) # 嶺回歸 clf = Pipeline([('poly', PolynomialFeatures(degree=d)),     ('linear', linear_model.Ridge())]) clf.fit(x[:, np.newaxis], y) y_test = clf.predict(x[:, np.newaxis]) print('多項(xiàng)式參數(shù)%s' %clf.named_steps['linear'].coef_) print('rmse=%.2f, R2=%.2f, R22=%.2f, clf.score=%.2f' %   (rmse(y_test, y),   R2(y_test, y),   R22(y_test, y),   clf.score(x[:, np.newaxis], y))) plt.plot(x, y_test, linewidth=2)plt.grid()plt.legend(['1', '2','3', '6'], loc='upper left')plt.show()

以上這篇對python實(shí)現(xiàn)二維函數(shù)高次擬合的示例詳解就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持VEVB武林網(wǎng)。


注:相關(guān)教程知識閱讀請移步到python教程頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 喀什市| 丹巴县| 彭水| 朝阳市| 新丰县| 五华县| 稻城县| 嵊泗县| 富顺县| 运城市| 齐河县| 红桥区| 长兴县| 南江县| 江达县| 仁怀市| 武山县| 清水县| 周宁县| 长阳| 沅陵县| 南平市| 莎车县| 吴江市| 田阳县| 曲水县| 霍林郭勒市| 鹿泉市| 紫金县| 武夷山市| 日照市| 清丰县| 永福县| 镇远县| 宜春市| 巴塘县| 泾阳县| 云林县| 西峡县| 醴陵市| 台江县|