- 博客(16)
- 收藏
- 关注
原创 pdf使用google翻译的办法
1.先把pdf转化为html,使用网站https://cloudconvert.com/这个网站是最靠谱的一个,比Adobe Acrobat DC更加好2.得到转换好的html,但是里面存在大量的span数据,需要处理使用notepad++打开html然后使用替换功能,正则表达式源:<span class=[^>]*>(?<Content>([^<]*))</span>目的:\2得到最终网页3.用chrome打开即可...
2020-11-10 22:17:10 3124 3
原创 meshlab编译
1.下载源代码https://github.com/cnr-isti-vclab/vcglib和https://github.com/cnr-isti-vclab/vcglib复制地址然后使用git下载2.配置直接编译会出错,先改vcglib到devel版本cdvcglibgit checkout devel3使用vs2015的qt工具打开meshlab\src\e...
2019-10-29 09:17:51 488
原创 Faster R-CNN基于pytorch的原理
相关资料以及下载代码地址:https://github.com/ruotianluo/pytorch-faster-rcnn.git原理参考:https://blog.csdn.net/zm147451753/article/details/88218619代码编译和运行代码使用方法,暂时没找到win系统下的方法,为此,我安装了unbuntu,还是蛮好用的。代码的编译运行...
2019-03-27 11:18:14 1526
原创 Faster R-CNN 源码编译Windows
最近在看一篇博客,Faster R-CNN 源码解析(Tensorflow版)(https://blog.csdn.net/u012457308/article/details/79566195)也是Faster R-CNN 的源码解析https://www.cnblogs.com/darkknightzh/p/10043864.html相关原理https://blog.csdn.n...
2019-03-06 09:09:19 1518
原创 tensorflow预编译
每次pip安装tensorflow,都会有要求cuda的版本,烦死了,最后发现有安装包可以下载,下面是预编译好的地址,直接下下来就好https://github.com/fo40225/tensorflow-windows-wheel...
2019-02-28 09:05:32 358
原创 MTCNN算法及代码笔记
代码下载地址:这里采用第三方的MXNet实现版本:https://github.com/pangyupo/mxnet_mtcnn_face_detection参考网页https://blog.csdn.net/u014380165/article/details/78906898 概要:代码主要是说怎么使用MTCNN算法进行人脸检测,不涉及到训练过程 主要包含三个脚...
2019-02-23 13:35:35 919
原创 使用pyinstaller打包scrapy遇到的坑
最近用scrapy开始写爬虫来做个代理池,程序写好了,开始使用pyinstall打包,遇到了各种坑使用的库scrapy,apscheduler,等等1.在随机头的时候本来使用的是faker库,打包实在是搞不定,改用fake_useragent了,至少效果一样,faker库报错Invalid configuration for faker locale en-us实在是搞不定。放弃...
2019-01-05 14:37:27 1890
原创 sklearn.cluster使用
代码如下import numpy as np # 数据结构import sklearn.cluster as skc # 密度聚类from sklearn import metrics # 评估模型import matplotlib.pyplot as plt # 可视化绘图data=[ [-2.68420713,1.469732895],[-2.71539062,...
2018-10-18 11:43:21 3760
原创 statsmodels中的summary解读(使用OLS)
1.OLS说明最小二乘法。给定序列X(x1,x2...xn),y,估计一个向量A(a0,a1.a2....)令y'=a0+a1*x1+a2*x2+...+an*xn, 使得(y'-y)^2最小,计算A。2.代码如下来源《python机器学习实践指南》import patsyimport statsmodels.api as smf = 'Rent ~ Zip + Beds'y...
2018-10-17 17:24:46 38569 2
原创 Python Jupyter安装
安装Jupyter:pip install Jupyter打开notebookJupyter notebook命令行提示错误ModuleNotFoundError: No module named 'prompt_toolkit'The solution for me was to pip uninstall prompt-toolkit and pip install p...
2018-10-11 09:22:31 413
原创 tensorflow-gpu编译
1.下载源码,使用cmake编译2.cuda使用9.0,cnn使用7.03. grpc和protobuf使用git下载。修改protobuf-gitclone.cmake与protobuf-gitupdate.cmake,grpc-gitclone.cmake,grpc-gitclone.cmake直接在第一行在return()4.编译错误,堆空间不足。将tf_core_kernels 的项目=》...
2018-07-13 10:42:51 859 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人