上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: 最近需要处理xml文件,学习并整理了一些常用的操作,代码如下: #!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2019/7/9 15:16 # @Author : xiaodai import xml.etree.ElementTre 阅读全文
posted @ 2020-05-21 00:41 Wind·Chaser 阅读(897) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/54996f2808e1 比较详细的FPN教程,参考 阅读全文
posted @ 2020-04-01 23:42 Wind·Chaser 阅读(2310) 评论(0) 推荐(0) 编辑
摘要: 这行报错predict = model(Variable(x_train)) RuntimeError: Expected object of type torch.cuda.FloatTensor but found type torch.FloatTensor for argument #4 ' 阅读全文
posted @ 2020-04-01 23:38 Wind·Chaser 阅读(1498) 评论(0) 推荐(0) 编辑
摘要: 运行Faster rcnn FPN网络,出现的bug:RuntimeError: reciprocal is not implemented for type torch.cuda.LongTensor 解决办法: anchor_target_layer_fpn.py", line 136: num 阅读全文
posted @ 2020-04-01 20:09 Wind·Chaser 阅读(1026) 评论(0) 推荐(0) 编辑
摘要: 如何解决pytorch 编译时CUDA版本与运行时CUDA版本不对应 在跑FPN模型时,发现本机是CUDA10.1,而pytoch==0.4.0,最高支持9.0,故安装CUDA9.0,用cuda-9.0的软连接代替cuda10.1来完成cuda版本的切换(不需要搞cudnn) 替换称cuda9.0后 阅读全文
posted @ 2020-04-01 11:48 Wind·Chaser 阅读(5404) 评论(0) 推荐(1) 编辑
摘要: 在Ubuntu18.04中安装CUDA 9.0时,会遇到Error: unsupported compiler: 7.3.0的错误。其原因是Ubuntu18.04的编译器版本过高,因此只需要安装较低版本的gcc、g++即可。 具体解决方法是: sudo apt install gcc-6 g++-6 阅读全文
posted @ 2020-03-30 16:18 Wind·Chaser 阅读(1841) 评论(0) 推荐(0) 编辑
摘要: pip install easydict 阅读全文
posted @ 2020-03-28 23:52 Wind·Chaser 阅读(174) 评论(0) 推荐(0) 编辑
摘要: AIR-SARship图像预处理需要如下几步: 1.16位转8位图像 2.大图像切割、对应xml文档切割 3.xml文档规整、难例挖掘 阅读全文
posted @ 2020-03-23 19:46 Wind·Chaser 阅读(786) 评论(0) 推荐(0) 编辑
摘要: 1.在清华镜像源网站中下载 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 2.传入Ubuntu服务器某文件夹,cd 进入文件夹 bash执行安装 一路输入回车和yes 阅读全文
posted @ 2020-02-26 22:03 Wind·Chaser 阅读(915) 评论(0) 推荐(0) 编辑
摘要: 作者:qianlinjun链接:https://zhuanlan.zhihu.com/p/98703562 最近在整理一篇遥感目标检测论文的relate work部分,趁机把近几年遥感(主要关注)、场景文字旋转目标检测论文方法和code整理一下,时间仓促有疏漏之处望多多指出。 首先放上DOTA数据集 阅读全文
posted @ 2020-02-07 16:40 Wind·Chaser 阅读(7816) 评论(0) 推荐(4) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页