
其他知识
乐乐乐开心
这个作者很懒,什么都没留下…
展开
-
服务器后台跑程序
切换到当前目录后台运行:nohup python3 ./train.py &查看关于python的进程:ps -ef |grep python查看运行过程中的信息tail -fn 300 ./nohup.out杀死进程kill -15 进程id号...原创 2019-11-01 10:04:13 · 411 阅读 · 0 评论 -
python3 setup.py build_ext --inplace报错需要注释掉的:
#CUDA = locate_cuda()#self.set_executable(‘compiler_so’, CUDA[‘nvcc’])#Extension(‘nms.gpu_nms’,#[‘nms/nms_kernel.cu’, ‘nms/gpu_nms.pyx’],#library_dirs=[CUDA[‘lib64’]],#libraries=[‘cudart’],#langu...原创 2019-10-25 17:44:06 · 6517 阅读 · 1 评论 -
RuntimeError: set_sizes_contiguous is not allowed on a Tensor created from .data or .detach()解决办法:
File “/opt/crnn/lib/dataset.py”, line 141, in loadDatav.data.resize_(data.size()).copy_(data)RuntimeError: set_sizes_contiguous is not allowed on a Tensor created from .data or .detach()储蓄欧的原因:版本的问...原创 2019-10-25 09:27:16 · 6402 阅读 · 0 评论 -
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the daemon running解决办法
下载Docker镜像报 Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 解决办法在Centos上下载Docker-CE,报错Cannot connect to the Docker daemon at unix:///var/run/docker.s...转载 2019-10-21 15:44:55 · 276 阅读 · 0 评论 -
Python面试简历工作描述写法总结
工作描述 (选择3条写上去)1.参与爬虫系统的架构设计与开发,完成采集任务、多线程爬虫2.参与爬虫核心技术、核心算法的策略优化研究,提升爬虫的抓取效果3.设计各种算法,提升抓取的效率和质量4.对互联网海量业务进行整合、分析挖掘; 5.与技术团队进行沟通,负责爬虫数据与业务系统的整合对接6.构建爬虫任务管理后台,能实现简单的数据展示7.分析爬虫的技术缺陷,对爬虫做出合理地调整...原创 2019-10-17 16:04:33 · 2228 阅读 · 0 评论 -
Python面试简历技能点写法总结
1.列表式1.Python 基础扎实, 有良好的编码习惯;2.熟练基于 Requests, Scrapy, Selenium 各模块的数据抓取,利用Xpath, BeautifulSoup,Re 的数据清洗, 验证码,登录,js异步加密,等各种反爬措施的应对;3.熟练Python Web技术, Django 框架, Django + uWSGI + Nginx 部署, Socket 编程;...原创 2019-10-17 16:02:03 · 16576 阅读 · 0 评论 -
Typora语法笔记
ubuntu安装wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add -# add Typora's repositorysudo add-apt-repository 'deb https://typora.io/linux ./'sudo apt-get update# install typor...原创 2019-10-17 15:42:20 · 1688 阅读 · 0 评论