ubuntu20.04关闭自动休眠 sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target 2022-03-04 杂 #linux
yolox训练voc数据集 制作数据集请参考上一篇使用labelme打标签并制作voc数据集 labelme标注图片并制作voc数据集 上文中最后得到了几个文件夹 但这不能直接用,还需要划分训练集和测试集,可以手动划分,或者写段代码随机划分,最后数据集目录结构如下 VOC2007—-Annotations—-JPEGImages—-ImageSets——–Main————test.txt————trainval.txt A 2022-03-01 目标检测 #数据集 #目标检测
labelme标注图片并制作voc数据集 安装labelmewkentaro/labelme: Image Polygonal Annotation with Python (polygon, rectangle, circle, line, point and image-level flag annotation). (github.com) pip install labelme 如果安装过,建议升级成新版本 pip i 2022-02-26 目标检测 #数据集 #目标检测
点选验证码自动爬取(网易易盾) 需求汉字点选验证码的批量获取,图片命名为序号加文字,后面用于制作数据集 结果 代码注释很清楚,不再赘述,可参考站内写过的其他selenium内容 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676 2022-02-26 python #爬虫 #点选验证码
git配置 123git config --global user.name "yourname"git config --global user.email "youremail"ssh-keygen -t rsa -C "youremail" 找到用户目录下的.ssh文件夹下的id_rsa.pub,复制内容到github设置中添加sshkey 2022-02-25 软件安装配置 #软件安装配置
列出局域网内可Ping通的IP 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263# -*- coding: utf-8 -*- import platformimport osimport timeimport threadingimport s 2022-02-25 python #python #局域网
滑块验证码自动拖拽(selenium+opencv) 计算需要移动的像素首先我在github上找到了一个大佬写的项目SlideCrack/slide_01 at master · crazyxw/SlideCrack (github.com) 输入是本地的两张图:滑块验证码背景和滑块图片 输出是两个缺口的像素距离 1234567891011121314151617181920212223242526272829303132333 2022-02-22 python #验证码
ubuntu终端source: not found 错误shell脚本中含有source命令运行时提示 source: not found 运行 ls -l /bin/sh 后显示/bin/sh -> dash这说明是用dash来进行解析的。 解决方案命令行执行:(需要root权限) dpkg-reconfigure dash 在界面中选择no再运行ls -l /bin/sh 后显 2022-01-07 杂 #linux
nodejs cheerio爬虫 需求获取美国各州疫情数据美国疫情(每小时更新) 各州新增新冠确诊案例、疫苗接种率、实时新闻、疫情地图 - 咕噜美国通 (Guruin.com) 本来用的数据来源不是这个网站,但原先的数据源不让跨域爬虫,http和request都没法获取HTML源码,只好换了一个数据源 request获取目标网页源代码12345678910111213var request = require('req 2021-12-14 爬虫 #爬虫 #nodejs
ubuntu普通用户安装配置anaconda 下载anaconda清华源地址 方法一:在服务器上使用wget命令 wget -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2021.11-Linux-x86_64.sh 方法二:下载到本地之后通过ftp工具上传到服务器(推荐使用FinalShell) 安装在下载目录执行下载的bash文件 bash Anac 2021-12-10 软件安装配置 #linux #软件安装配置