
笔记类
文章平均质量分 61
Liaojiajia-2020
CVLAB、Object Detection、Deep Learning
展开
-
【自用】pip和conda换源
【自用】pip和conda换源pip 换源-i https://pypi.tuna.tsinghua.edu.cn/simplepip install -i https://pypi.tuna.tsinghua.edu.cn/simple xxxxx(包的名字)conda 换源(Linux)vi ~/.condarcchannels: - https://mirrors.ustc.edu.cn/anaconda/pkgs/main/ - https://mirrors.原创 2022-03-17 10:59:05 · 1665 阅读 · 0 评论 -
Pytorch模型转onnx
Pytorch模型转onnx源代码:https://github.com/hpc203/yolact-opencv-dnn-cpp-python (yolact转onnx)遇到的报错:cv2.error: OpenCV(3.4.2)C:\projects\opencv-python\opencv\modules\dnn\src\dnn.cpp:3044: error:(-2:Unspecified error) Cannot determine an origin framework of file原创 2022-03-04 14:15:00 · 611 阅读 · 0 评论 -
【前端学习】HTML + CSS 写一个登陆界面
HTML + CSS 写一个登陆界面1. index.html2. style.css3. iconfont.css4. 界面效果1. index.html<!-- * @Author: your name * @Date: 2021-03-04 16:27:09 * @LastEditTime: 2021-03-04 16:37:03 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit原创 2022-03-03 21:00:00 · 4041 阅读 · 0 评论 -
自用 | Ubuntu服务器文件上传项目到github
Ubuntu服务器文件上传项目到github一、注册github账户二、创建github repository(仓库)三、为github账户设置SSH key四、在gitHub网站设置SSH key五、测试是否生效六、上传项目到github1. 检查ubuntu中是否安装git2. 添加要上传的文件3. 查看git状态4. 推送git文件(从缓存区修改到本地仓库中)5.添加文件到远程库6. 删除缓存区里的文件一、注册github账户GitHub官网网址:https://github.com/具体的操作原创 2021-06-04 13:04:33 · 955 阅读 · 0 评论 -
自用 | ubuntu操作(修改软连接,配置)
链接:https://www.cnblogs.com/sddai/p/10235331.html添加软连接(symbol link)相当于添加一个快捷方式,解决cannot open shared object file: No such file or directory问题。sudo ln -s source targetsudo ldconfig /usr/local/cuda/lib64如果要修改软连接指向,使用-fsudo ln -fs source target如果是文件夹,则可原创 2021-02-27 18:40:05 · 4532 阅读 · 1 评论 -
记录 | 使用eclipse与多协同者共享代码
说明:1. 代码下载到本地;2. 安装好eclipse,svn等工具以下是详细步骤:1. File–>open projects from file system2. 可以在这里看到你添加的文件选中文件,点击右键,选中“Team”——>“share project”就可以在下面的svn资源库里找到你所共享的代码(记得要刷新!)...原创 2021-01-28 11:03:02 · 487 阅读 · 0 评论 -
笔记 | 集成学习的目标检测算法
集成目标检测(1) Ensemble Methods for Object Detection(2)Boosting object detection performance through ensembling on satellite imagery(3)道路损坏检测挑战赛——YOLOv5(4)道路损坏检测挑战赛——YOLOv4(1) Ensemble Methods for Object Detection代码:https://github.com/ancasag/ensembleObjectDe原创 2020-12-03 12:38:48 · 4258 阅读 · 3 评论 -
错误笔记(持续更新中)
RuntimeError: Expected object of scalar type float but got scalar type __int64 for sequence element 1.解决办法:先检查t1和n_t的数据类型,使用t1.dtype和n_t.dtype进行检查。明显看到这两个torch的数据类型是不一样的,那就把n_t的数据类型换成float32。使用n_t = n_t.float()就可以将两个torch换成相同的数据类型了。最后,再执行torch.cat操作.原创 2020-09-27 20:56:57 · 5321 阅读 · 0 评论 -
计算机视觉实验中遇到的错误及解决方案
错误一:ModuleNotFoundError: No module named ‘imtools’解决:找到imtools.py文件添加到项目的工程文件夹下即可。即,添加from PCV.tools import imtools原创 2019-07-14 18:30:54 · 3614 阅读 · 0 评论 -
【优快云笔记】数学公式对齐
$$\begin{aligned}a &=b+c+d \\&=e+f+g\end{aligned}$$a=b+c+d=e+f+g\begin{aligned} a &=b+c+d \\ &=e+f+g \end{aligned}a=b+c+d=e+f+g之前查了相关信息,现在需要将align改写成aligned...原创 2019-08-06 18:23:45 · 1233 阅读 · 0 评论