- 博客(133)
- 收藏
- 关注
原创 numpy array数组 数据增广造成的小问题
有我们在进行不同数组相加时候,有时候会出现不同shape的数组相加,这个时候numpy 数组的会自动启用,但是有时候反而会阻碍我们达到我们的计算目标。
2023-09-03 15:14:32
413
原创 Ubuntu中之前安装好Nvidia驱动driver但是检测不到的解决(仅供参考)
我自己之前手动安装的Nvidia driver,我采取了以下策略:1,彻底删除之前安装的Nvidia driver;2,更新系统中所有程序和依赖;3,命令行安装Nvidia driver。
2023-04-19 19:00:26
5816
原创 sudo apt-get update 失败 的解决
更改并且保存后,再执行 sudo apt-get update 依然会有报错,这是因为原来的那些源链接还在,而他们依旧不能用。但是系统会自动选择可用的源链接去更新(比如阿里云 链接),最后更新成功。我的报错情况如下(借用了别人的,我之前使用的Ubuntu默认源,下面的报错使用的清华源)。,将原来soure.list文件中内容全部删除,而只粘贴新的源链接(比如 中科大源)。我在Ubuntu 原 source.list文件 中加上了 阿里云的源 (来详细查看具体过程。
2023-04-19 18:32:46
18044
翻译 Batch Normalization详解
Batch Normalization里有一个momentum参数, 该参数作用于mean和variance的计算上, 这里保留了历史batch里的mean和variance值,即 moving_mean和moving_variance, 借鉴优化算法里的momentum算法将历史batch里的mean和variance的作用延续到当前batch.多个batch后, 即多个0.9连乘后,最早的batch的影响会变弱.
2022-12-31 17:46:15
823
原创 keras卷积层理解
keras中卷积有两种padding方式,一种是SAME,一种是VALID。SAME是在进行卷积前,在图像的周围补一圈0,而用VALID则不对输入图像进行填充
2022-12-21 21:38:57
711
原创 numy array的取出和保存给其他array
numy array的取出和保存给其他array,数据类型的转换的过程是先对原array作百分比截断,得到新的最大最小值,然后用最大最小值归一化法作归一化,再乘以255来作缩放
2022-12-15 17:46:06
247
原创 理解3d卷积conv3d
无论是conv3d还是conv2d,不同的通道都表示不同的特征,都是独立于卷积核的构建的,也不会是卷积的方向;卷积都是分别在不同通道上进行的,最后将所有通道的卷积结果相加.通道数即为卷积核的个数.
2022-12-14 23:18:41
2193
原创 tqdm python使用总结
tqdm()只是给遍历过程添加了进度条,传入的可以是可迭代对象,也可以是不可迭代对象(需要额外设置,成为手动更新)。
2022-09-04 22:59:33
4132
2
转载 3DCNN用于土地覆被分类以及earthpy用于处理遥感影像数据
3DCNN用于土地覆被分类以及earthpy用于处理遥感影像数据示例:https://zhuanlan.zhihu.com/p/356504779其中的数据:https://github.com/syamkakarla98/Satellite_Imagery_Analysis/tree/main/Data/sundarbans_data
2022-05-16 20:43:15
403
转载 语义分割英文综述-image segmentation guide
语义分割英文综述-image segmentation guidehttps://www.fritz.ai/image-segmentation/
2022-05-11 11:54:16
398
转载 自定义loss
自定义loss1 (pytorch) 如何给每个类别甚至每个样本赋予权重2 Keras中自定义复杂的loss函数1 (pytorch) 如何给每个类别甚至每个样本赋予权重中文版本:https://www.jianshu.com/p/8c8169d2204c英文:https://discuss.pytorch.org/t/per-class-and-per-sample-weighting/255302 Keras中自定义复杂的loss函数Keras是一个搭积木式的深度学习框架(其他深度学习框架
2022-05-10 16:48:27
349
转载 TF、keras两种padding方式:vaild和same
TF、keras两种padding方式:vaild和sameTF、keras两种padding方式:vaild和same:https://oldpan.me/archives/tf-keras-padding-vaild-samepytorch中实现与TensorFlow类似的"same"方式padding:https://zhuanlan.zhihu.com/p/36933397
2022-04-01 12:14:35
296
转载 Visual Transformer (ViT) 代码实现 PyTorch版本-是一个详细的说明
@[TOC](Visual Transformer (ViT) 代码实现 PyTorch版本-是一个详细的说明)英文原版:https://github.com/FrancescoSaverioZuppichini/ViT中文翻译版:https://www.jianshu.com/p/06a40338dc7c
2022-03-30 19:05:46
621
转载 Python enum multiple values 枚举多个值
Python enum multiple values 枚举多个值转载自:https://tutorial.eyehunts.com/python/python-enum-multiple-values-example-code/Use MultiValueEnum to get enum multiple values in Python. You have to install and import aenum library and this is the easiest way.# Pytho
2022-03-16 16:01:08
1445
原创 深层学习为何要“Deep”
深层学习为何要“Deep”中文链接:https://www.jiqizhixin.com/articles/2018-07-03-8https://www.jiqizhixin.com/articles/2018-08-13-9英文原文:http://colah.github.io/posts/2014-03-NN-Manifolds-Topology/
2022-01-05 17:02:41
386
转载 map scale and raster resolution地图比例尺和栅格像素分辨率的换算
On map scale and raster resolution网址:https://www.esri.com/arcgis-blog/products/product/imagery/on-map-scale-and-raster-resolution/Mathematical relationships among map scale, raster data resolution, and map display resolution网址:https://www.esri.com/arc
2021-12-24 16:16:49
626
转载 windows下mmcv-full和MMSegmentation源码编译安装
主要参考OpenMMLab官方发布的教程官方教程看不懂的地方可以参照:https://blog.youkuaiyun.com/weixin_43294393/article/details/117441016https://www.zywvvd.com/notes/environment/cuda/windows-mmcv-1-3-13-install/windows-mmcv-1-3-13-install/...
2021-10-23 23:31:54
1051
转载 windows下安装好nvidia显卡驱动后不能用nvidia-smi命令
之前一直在linux上用nvidia-smi查看显卡的使用相关情况,但是在windows的命令行下却用不了,但是本地明明已经安装了NVIDIA的显卡,这种情况往往就是因为没有添加环境变量!!!转载自:https://blog.youkuaiyun.com/weixin_41010198/article/details/86707550...
2021-10-23 13:15:45
1580
翻译 Rasterio的Github页面
Rasterio的Github页面RasterioExampleAPI OverviewRasterio CLI(command line interface)Rio Plugins插件InstallationSupporthttps://github.com/mapbox/rasterioRasterioRasterio reads and writes geospatial raster data.Rasterio读写地理空间栅格数据。Geographic information syste
2021-09-11 17:21:40
410
原创 在anaconda环境中使用conda命令安装cuda、cudnn、tensorflow(-gpu)、pytorch
conda环境中使用conda命令安装cuda、cudnn、tensorflow(-gpu)、pytorch
2021-08-25 18:33:23
122946
26
原创 字符串str的split方法
字符串str的split方法filepath = r"H:\MyStudy\Unzip_Wa"count = 0for i, j, k in os.walk(filepath): if count == 0: print(i, j, k)# 得到结果如下:一个路径,一个文件夹名构成的list,一个不包含文件名的空list。H:/MyStudy/Unzip_Wa/ ['S2A_MSIL2A_20200214T185451_N0214_R113_T11TLM_20200214T2
2021-08-15 09:12:12
1487
转载 多用户远程访问Ubuntu18.04配置记录
多用户远程访问Ubuntu18.04配置记录一 在 Ubuntu 18.04 上安装 Xrdp 远程桌面服务1 安装方法12 安装方法23 解决安装后不能远程连接的问题4 远程连接xfce桌面无法打开terminal终端二 SSH远程连接Ubuntu18.04一 在 Ubuntu 18.04 上安装 Xrdp 远程桌面服务1 安装方法1参考:https://blog.youkuaiyun.com/u013554213/article/details/103397875Ubuntu设置打开设置-共享将允
2021-08-08 11:13:06
793
原创 同时安装 fiona,rasterio,geopandas
同时安装 fiona,rasterio,geopandas用conda install 安装即可。
2021-07-29 20:43:12
563
原创 Copernicus Open Access Hub哥白尼开放中心
Copernicus Open Access Hub哥白尼开放获取中心一 首页介绍1 Welcome to the Copernicus Open Access Hub1.1 Open Hub—Graphical User Interface图形用户界面1.2 API Hub—Application Programming Interface应用编程接口1.3 S-5P Pre-Ops1.4 POD Hub2 Latest News3 Data and Information Access Services
2021-07-10 16:38:05
7731
原创 数组array包含特定尺寸切片的容量的计算
数组array包含特定尺寸切片的容量的计算问题:卷积结果数组尺寸的计算数组array包含特定尺寸数组切片的容量的计算就是卷积的输出形状与输入形状的关系问题:需要对某个数组进行特定尺寸切片,这个数组包括该特定尺寸切片的个数是多少?卷积结果数组尺寸的计算实际上就是卷积结果像素数量有多少个?卷积的输出形状与输入形状的关系式为nH=⌊nHprev−f+2×padstride⌋+1 n_H = \lfloor \frac{n_{H_{prev}} - f + 2 \times pad}{stride}
2021-07-03 16:08:50
207
1
原创 Windowed reading and writing
Windowed reading and writingWindowsReadingWritingDecimation抽取Data windowsWindow transformsWindow utilitiesBlocks来源:https://rasterio.readthedocs.io/en/latest/topics/windowed-rw.htmlBeginning in rasterio 0.3, you can read and write “windows” of raster fil
2021-07-02 23:16:12
302
原创 rasterio Python Quickstart
rasterio Python QuickstartPython QuickstartOpening a dataset in reading modeDataset attributesDataset georeferencing数据集地理参考Reading raster dataSpatial indexingCreating dataOpening a dataset in writing modeSaving raster data来源:https://rasterio.readthedocs.i
2021-07-02 22:36:05
407
原创 读取/保存/写入 图像文件的shape格式
读取/保存/写入 图像文件的shape格式一 opencv-python二 rasterio一 opencv-pythonimport cv2import numpy as npimg = cv2.imread("./1.png")print(img.shape)# out: (359, 299, 3)# opencv-python读取数据——通道/波段在最后cv2.imwrite(('./2.png'),img)# out:Trueimg_1 = np.transpose(img, (
2021-07-02 19:47:08
1827
原创 用rasterio处理遥感影像异常值/rasterio.fill.fillnodata使用
用rasterio处理遥感影像异常值/rasterio.fill.fillnodata使用一 rasterio.fill.fillnodata官方文档二 举例说明一 rasterio.fill.fillnodata官方文档来源:https://rasterio.readthedocs.io/en/latest/api/rasterio.fill.htmlrasterio.fill moduleFill holes in raster dataset by interpolation from t
2021-07-02 17:37:11
1660
1
原创 linux中jupyter notebook使用时须更改内核
linux中jupyter notebook使用时须更改内核使用jupyter notebook在linux中与在windows中不同解决使用jupyter notebook在linux中与在windows中不同在windows在新建的conda环境下,如果没有安装jupyter notebook,就不能在这个conda环境中使用jupyter notebbok在linux在新建conda环境中,不需要新安装jupyter notebook就可以直接使用jupyter notebook。但是打开
2021-06-27 11:26:31
432
原创 pip使用
pip使用一 一般使用二 安装和卸载私有的包一 一般使用参考:https://www.yuanrenxue.com/python/pip-usage.html二 安装和卸载私有的包参考:安装私有的包:https://python3-cookbook.readthedocs.io/zh_CN/latest/c10/p13_installing_packages_just_for_yourself.html卸载私有的包:https://www.coder.work/article/19202对
2021-06-24 14:49:46
171
转载 图像的down-samplig 和up-sampling
这里写目录标题参考:https://www.cnblogs.com/jngwl/articles/image_sampling.html
2021-06-23 13:59:47
1233
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人