cc013陈文朋 |
|
||
2018年12月23日
摘要:
from sklearn.datasets import load_boston boston=load_boston() x=boston.data y=boston.target x.shape from sklearn.preprocessing import PolynomialFeatures poly=PolynomialFeatures(degree=2)#多项式的度 度越小曲... 阅读全文
2018年12月10日
摘要:
from sklearn.datasets import load_boston boston = load_boston() boston.keys() dict_keys(['data', 'target', 'feature_names', 'DESCR']) print(boston.DESCR) data=boston.data x=data[:,5] y=boston.targ... 阅读全文
2018年12月3日
摘要:
# 若没有nltk则先定义一个空函数 def pre(text): pre_text=text return pre_text #读取数据 import csv # with open(r'd:/SMSSpamCollectionjsn.txt',encoding = "utf-8")as file_path: # with open('C:\Users\Administrat... 阅读全文
2018年11月27日
摘要:
from sklearn import datasets iris=datasets.load_iris() from sklearn.naive_bayes import GaussianNB gnb=GaussianNB() pred=gnb.fit(iris.data,iris.target) y_pred=pred.predict(iris.data) print(iris.data.s... 阅读全文
2018年11月21日
摘要:
from pandas import read_csv from sklearn.model_selection import KFold from sklearn.model_selection import cross_val_score from sklearn.naive_bayes import GaussianNB #导入数据 filename = 'C:/Users/lenovo/... 阅读全文
2018年11月13日
摘要:
from sklearn.datasets import load_sample_image#先导入数据包 china = load_sample_image("china.jpg")#从包中拿出china那那张图 print(china.shape) china array([[[174, 201, 231], [174, 201, 231], [174, ... 阅读全文
2018年11月5日
摘要:
import numpy as np x=np.random.randint(0,52,52) x k=3 y=np.zeros(20) y array([ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]) ... 阅读全文
2018年10月15日2018年10月14日
摘要:
import numpy as np l=list(range(10)) a=np.arange(10) b=np.array([a,2*a]) print(type(l),type(a),type(b),type(l[0]),type(a[0]),a.dtype,b.dtype) l.append("xiaodudu") print(l) a.reshape(2,5) ... 阅读全文
摘要:
#numpy多维数组的效率对比 阅读全文
|
Copyright © 2024 C22C
Powered by .NET 9.0 on Kubernetes |