自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(119)
  • 资源 (7)
  • 收藏
  • 关注

原创 程序代码中汉字字符集gb2312<gbk<gb18030

程序代码中汉字字符集gb2312<gbk<gb18030

2021-05-30 23:11:54 162

转载 Pandas之将保存的数据写入到Excel的多个sheet

https://blog.csdn.net/qq_39697564/article/details/88640686

2021-05-30 23:10:12 1276

转载 pandas提取数据特定的行列

https://www.jianshu.com/p/ef16d195c63c

2021-05-30 21:49:38 2032

原创 Install openpyxl instead of xlwt

indErrorIdentify.py:93: FutureWarning: As the xlwt package is no longer maintained, the xlwt engine will be removed in a future version of pandas. This is the only engine in pandas that supports writing in the xls format. Install openpyxl and write to an x

2021-05-30 17:11:50 1036

原创 pandas写excel报错ModuleNotFoundError: No module named ‘xlwt‘

pandas写excel报错ModuleNotFoundError: No module named ‘xlwt’https://blog.csdn.net/weixin_36372879/article/details/80908177

2021-05-30 17:01:06 1195

原创 to_excel() got an unexpected keyword argument ‘sheetname‘

TypeError: to_excel() got an unexpected keyword argument ‘sheetname’pandas写excel报错,将参数sheetname=‘xxx’ 名字写错了 应该写成sheet_name=‘xxx’csv_data_source.to_excel(“D:\confusion_analysis.xls”,sheet_name=label_names[k])...

2021-05-30 16:54:26 4090

转载 python字典遍历的几种方法

https://www.cnblogs.com/stuqx/p/7291948.html

2021-05-30 14:40:27 82

转载 随机森林里oob_score以及用oob判断特征重要性的理解

https://blog.csdn.net/MingRachel/article/details/115038730

2021-05-28 15:20:50 794

转载 隐含狄利克雷分布(Latent Dirichlet Allocation,LDA)

https://baike.baidu.com/item/%E9%9A%90%E5%90%AB%E7%8B%84%E5%88%A9%E5%85%8B%E9%9B%B7%E5%88%86%E5%B8%83/15716062?fromtitle=LDA&fromid=13489644&fr=aladdin

2021-05-28 15:07:03 474

转载 机器学习降维算法PCA principle component analysis

https://zhuanlan.zhihu.com/p/77151308

2021-05-28 15:04:35 59

转载 RandomForestClassifier参数min_samples_leaf和min_samples_split理解

而min_samples_split限定,⼀个结点必须要包含⾄少min_samples_split个训练样本,这个结点才允许被分⽀,否则分⽀就不会发⽣。min_samples_leaf限定,⼀个结点在分⽀后的每个⼦结点都必须包含⾄少min_samples_leaf个训练样本,否则分⽀就不会发⽣,或者,分⽀会朝着满⾜每个⼦结点都包含min_samples_leaf个样本的⽅向去发⽣。⼀般搭配max_depth使⽤,在回归树中有神奇的效果,可以让模型变得更加平滑。这个参数的数量设置得太⼩会引起过拟合,

2021-05-28 14:51:35 7597 1

转载 sklearn中的RandomForestClassifier参数详解

https://blog.csdn.net/qq_16633405/article/details/58596368

2021-05-28 14:42:41 5456

原创 Sklearn的train_test_split用法

https://blog.csdn.net/fxlou/article/details/79189106

2021-05-28 14:14:38 79

转载 python *args 元组 **kargs 字典

https://blog.csdn.net/devcy/article/details/89283523

2021-05-28 13:47:54 141

原创 python3.9 执行python3.6生成的随机森林模型model.pkl报错,警告版本不一致

python3.9 执行python3.6生成的随机森林模型model.pkl报错UserWarning: Trying to unpickle estimator RandomForestClassifier from version 0.24.1 when using version 0.24.2. This might lead to breaking code or invalid results. Use at your own risk.warnings.warn(实验证明在PY3.9上

2021-05-28 11:47:42 3850 1

转载 python注解

https://zhuanlan.zhihu.com/p/139056271

2021-05-28 11:41:21 54

原创 win运行pycharm找不到要加载的model.pkl文件是workingspace设置路径与文件路径位置不对应

windows环境中运行pycharm提示找不到要加载的model.pkl路径,原来是pycharm中有一个workingspace设置的路径没有跟当前代码的路径位置对应所致。pycharm中左边文件右键-edit即可编辑设置

2021-05-28 11:40:39 869

转载 python是否跨平台

https://blog.csdn.net/weixin_39657662/article/details/110379565

2021-05-27 18:18:38 499

原创 python list是一个有序列表 这个与java的list是无序的列表 具有明显不同,一定要注意

https://blog.csdn.net/weixin_39617252/article/details/110373435是否有序 python java list 是 否

2021-05-27 17:30:28 112

原创 sklearn 统计多分类和单分类结果的混淆矩阵API 写法 confusion_matrix 左边为真实值 上边为预测值

分析代码源自from sklearn.metrics import confusion_matrix如何写混淆矩阵手动分析如下一 将y_true y_pred写成列向量的形式y_true y_pre 是否匹配(真实值与预测值是否匹配)0 1 n1 1 y0 1 n1 0 n二 统计二分类混淆矩阵列如下(1代表阳性 0 代表阴性) ..

2021-05-27 17:15:29 486

转载 PyCharm中Directory与Python package的区别

https://www.cnblogs.com/Thomas-blog/p/8783447.html

2021-05-27 15:48:07 202

转载 混淆矩阵(Confusion Matrix)分析

https://blog.csdn.net/vesper305/article/details/44927047

2021-05-27 15:40:21 244

转载 sklearn(五)计算acc:使用metrics.accuracy_score()计算分类的准确率

https://blog.csdn.net/pearl8899/article/details/109877348

2021-05-27 12:32:02 2369

转载 windows解压tar.gz文件 7z

https://jingyan.baidu.com/article/92255446acf404851748f459.html

2021-05-27 11:31:43 956

转载 2021-05-27Series(三):Series和ndarray对比学习 转

https://blog.csdn.net/zhuxiao5/article/details/105040068

2021-05-27 10:13:19 104

原创 cmd 中git pull https://xx.xx.git报错error: RPC failed; curl 56 OpenSSL SSL_read: Connection was reset,

warning: HTTPS connections may not be secure. See https://aka.ms/gcmcore-tlsverify for more information.remote: Counting objects: 179, done.error: RPC failed; curl 56 OpenSSL SSL_read: Connection was reset, errno 10054fetch-pack: unexpected disconnect w

2021-05-27 09:42:06 2736

转载 ndarray 与 array 的区别 关系,所以ndarray是一个类对象,而array是一个方法

ndarray 与 array 的区别 关系置顶 wanglll* 2020-02-06 20:00:37 8455 已收藏 17分类专栏: 数据分析 文章标签: numpy版权ndarray 数组ndarray 与 array 的区别 关系ndarray 是 np.array这个方法来创建的一个对象1、ndarray数组 是用np.ndarray类的对象表示n维数组import numpy as npary = np.array([1,2,3,4,5,6])print(typ..

2021-05-27 09:40:26 3587

原创 tortoiseGit clone大代码,报错 fatal: Not a git repository (or any of the parent directories): .git 问题

https://blog.csdn.net/wenb1bai/article/details/89363588规避方法命令行中git initgit pullhttps://code.aliyun.com/xx-demo/x.git

2021-05-26 20:12:12 727

转载 评价指标对比:准确率(accuracy)、精确率(Precision)、召回率(Recall)、IOU、Kappa系数

https://blog.csdn.net/zsc201825/article/details/93487506

2021-05-26 18:11:54 710

转载 衡量机器学习模型的三大指标:准确率、精度和召回率

https://www.cnblogs.com/xuexuefirst/p/8858274.html

2021-05-26 17:56:10 571

转载 fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack:

fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack:https://www.cnblogs.com/codedoge/p/11466086.html

2021-05-26 17:33:04 32878 1

原创  totiseGit无法登录的问题

14 totiseGit无法登录的问题14.1 控制面板\所有控制面板项\凭据管理器 将里面的本地的Windows凭据全删除14.2 阿里云云效申请到企业14.3 激活后会新生成的登录用户及token用于clone push pull

2021-05-26 17:31:31 152

转载 gitTortoise下代码报错fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fat

warning: HTTPS connections may not be secure. See https://aka.ms/gcmcore-tlsverify for more information.warning: ----------------- SECURITY WARNING ----------------warning: | TLS certificate verification has been disabled! |warning: --------------------

2021-05-26 16:40:15 6781 2

转载 error: RPC failed; curl 56 OpenSSL SSL_read: Connection was reset, errno 10054

error: RPC failed; curl 56 OpenSSL SSL_read: Connection was reset, errno 100541.问题:git下载代码时,报“git出现RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errfno 10054”的问题,如下所示的截图2.解决步骤:2.1首先输入如下命令:   git config http.sslVerify "false"2....

2021-05-26 16:29:00 11251 1

转载 TortoiseGit配置密钥的方法

https://www.cnblogs.com/suger43894/p/10694657.html

2021-05-26 12:42:07 427

转载 2021-05-25维护git库代码的工具 上传下载修改bug的TortoiseGit

https://tortoisegit.org/download/

2021-05-25 21:24:21 65

转载 LINUX查看GPU使用信息

https://blog.csdn.net/weiyumeizi/article/details/83035711

2021-05-25 20:57:35 269

转载 python DataFrame的合并方法总结

https://blog.csdn.net/haha_point/article/details/86512316

2021-05-25 20:42:10 217

转载 pandasDataFrame 的定位指定文件

https://blog.csdn.net/wf592523813/article/details/96278289

2021-05-25 20:38:13 86

转载 python向字典中添加值

https://jingyan.baidu.com/article/359911f58636ad57ff030645.html

2021-05-25 19:08:30 1213

transfer dense121迁移学习模型模板参数不变只训练classifier这一层的参数.py

transfer dense121迁移学习模型模板参数不变只训练classifier这一层的参数 ,迁移学习的一个案例模板

2020-06-17

人工加载手机彩色图片python实现.py

pytorch手动加载手机彩色图片预处理脚本,使用helper第三方API显示图片normalize=True/False的情形

2020-06-16

pytorchNNTrain.py

神经网络训练,包括训练 模型监控防止过拟合 模型预测的python练习脚本,没有包括模型参数的自动设置 自动保存

2020-06-16

easyexplorer search class

easyexplorer search class

2016-01-04

PARTIONMAGIC

一套磁盘管理软件,是目前为止最好用的磁盘管理工具之一,能够优化磁盘使应用程序和系统速度变得更快,不损失磁盘数据下调整分区大小,对磁盘进行分区,并可以在不同的分区以及分区之间进行大小调整、移动、隐藏、合并、删除、格式化、搬移分区等操作,可复制整个硬盘资料到分区,恢复丢失或者删除的分区和数据,无需恢复受到破坏的系统就可磁盘数据恢复或拷贝到其他磁盘。能够管理安装多操作系统,方便的转换系统分区格式,也有备份数据的功能,支持 Vista 系统下操作。

2011-05-04

分区软件PM分区软件PM分区软件PM分区软件PM分区软件PM

分区PM分区软件PM分区软件PM分区软件PM分区软件PM分区软件PM

2011-05-03

讲解XML用法讲解XML用法

讲解XML用法,关于XML的语法,元素等。讲解XML用法,关于XML的语法,元素等。

2011-02-26

空空如也

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

TA关注的人

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