自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(28)
  • 收藏
  • 关注

转载 Python 中re.split()方法

https://www.jianshu.com/p/41939d338ccb

2020-05-30 22:10:27 214

转载 Cost Function

损失函数(Loss Function )是定义在单个样本上的,算的是一个样本的误差代价函数(Cost Function )是定义在整个训练集上的,是所有样本误差的平均,也就是损失函数的平均https://www.cnblogs.com/Belter/p/6653773.html...

2020-05-08 20:39:27 209

转载 The Element of Statistical Learning 第二章

中文英文2.3中 normal equations 推导几种方法https://www.cnblogs.com/AngelaSunny/p/6616712.html(AB)^T = B^T A^T

2020-05-07 20:12:57 246

转载 Python利用random生成一个列表内的随机数

Python利用random生成一个列表内的随机数https://blog.csdn.net/Jerry_1126/article/details/80412902添加链接描述

2020-03-29 01:53:16 384

转载 Python利用random生成一个列表内的随机数

https://blog.csdn.net/weixin_42079187/article/details/80426101

2019-11-27 19:43:00 361

转载 LEARNING RATE

https://blog.csdn.net/JNingWei/article/details/79243800

2019-05-04 07:30:51 351

转载 random numpy randint

random.randinthttps://blog.csdn.net/u010665216/article/details/78569370

2019-05-04 05:47:14 109

转载 iloc,loc,ix

https://www.shanelynn.ie/select-pandas-dataframe-rows-and-columns-using-iloc-loc-and-ix/#iloc-selection

2019-04-27 03:32:50 120

转载 数据标准化的方法与意义

https://blog.csdn.net/fontthrone/article/details/74067064

2019-03-29 04:21:08 5619

转载 Latex中特殊符号的输入

https://blog.csdn.net/tmylzq187/article/details/51595970/https://blog.csdn.net/chen134225/article/details/78793622?utm_source=blogxgwz8

2019-03-28 04:02:09 5812

转载 PYTHON[]

https://blog.csdn.net/csj664103736/article/details/72828584

2019-03-22 20:20:38 103

转载 reshape order=F

order=FExample 1:a = np.arange(16).reshape((4,4))https://stackoverflow.com/questions/45973722/how-does-numpy-reshape-with-order-f-workarray([[ 0, 1, 2, 3],[ 4, 5, 6, 7],[ 8, 9, 10, 11],...

2019-03-22 20:06:33 1465

原创 数组,矩阵乘法

array:#元素相乘a1=np.array([[1,1],[1,1]]);a2=np.array([[2,2],[2,2]]);a3=np.multiply(a1,a2)print(“a3”,a3)a1=np.array([[1,1],[1,1]]);a2=np.array([[2,2],[2,2]]);a3=np.dot(a1,a2)print(“a3”,a3)#元素相乘...

2019-03-22 18:20:47 168

转载 reshape函数参数-1的意思

https://blog.csdn.net/mingyuli/article/details/81040661

2019-03-21 20:52:19 645

转载 csv模块的使用

https://blog.csdn.net/u012162613/article/details/41915859https://www.cnblogs.com/nisen/p/6155492.html

2019-03-21 17:45:38 142

转载 gaussian

https://blog.csdn.net/lj6052317/article/details/78772494https://blog.csdn.net/paulfeng20171114/article/details/80276061https://blog.csdn.net/paulfeng20171114/article/details/80276061https://www.cnb...

2019-03-20 07:59:28 320

转载 方法缩写

http://www.pianshen.com/article/2934250025/

2019-03-19 16:54:27 185

转载 python t分布的双侧置信区间

https://blog.csdn.net/luoganttcc/article/details/78278933

2019-03-19 07:01:05 908

转载 归一化(Normalization)或标准化(Normalization),中心化

归一化:https://blog.csdn.net/qq_28618765/article/details/78221571归一化两种方法:https://blog.csdn.net/jacke121/article/details/79008333归一化综合1,2:https://www.cnblogs.com/pejsidney/p/8031250.html中心化+归一化:https:...

2019-03-19 06:47:42 275

转载 The scoring parameter

https://scikit-learn.org/stable/modules/model_evaluation.html

2019-03-18 06:20:19 247

转载 sklearn.model_selection.GridSearchCV && sklearn.model_selection.ParameterGrid

https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html

2019-03-18 05:21:30 283

转载 pandas.Series.describe

https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.describe.html

2019-03-17 22:57:07 215

转载 fit_transform,fit,transform区别和作用详解

https://blog.csdn.net/weixin_38278334/article/details/82971752

2019-03-16 07:02:55 564

转载 Anaconda

在开始菜单找不到Anaconda command prompt入口:https://blog.csdn.net/qq_28304687/article/details/76638942

2019-03-15 19:45:09 83

转载 查看&更新sklearn 的版本

https://blog.csdn.net/chuan403082010/article/details/79603795

2019-03-15 19:31:48 11512

转载 csr_matrix和csc_matrix简析

https://blog.csdn.net/sinat_33741547/article/details/79878547

2019-03-15 07:25:11 189

转载 sklearn数据预处理中fit(),transform()与fit_transform()的区别

https://blog.csdn.net/anshuai_aw1/article/details/82498374

2019-03-15 07:23:21 196

转载 Python中scatter函数参数详解器

https://blog.csdn.net/anneqiqi/article/details/64125186

2019-03-12 22:00:48 545

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除