pytorch
mathematican
学习使我快乐,学习时我快乐
展开
-
Pytorch模型保存和加载
pytorch加载和保存模型原创 2023-03-02 13:18:33 · 355 阅读 · 0 评论 -
gcc-11.3 +cudatoolkit-11.6版本匹配问题
gcc, cudatoolkit匹配问题原创 2022-12-28 19:57:11 · 1752 阅读 · 0 评论 -
conda 创建、激活、查看、删除env
conda 创建、删除envconda 创建环境命令conda create -n xxx python=3.7conda 删除环境命令conda remove -n xxx --all原创 2021-07-05 17:48:53 · 3211 阅读 · 0 评论 -
Deep Image Prior (DIP)代码的conda环境配置
配置conda环境原创 2022-08-19 09:15:15 · 799 阅读 · 0 评论 -
检查GPU的可用性
安装完深度学习环境后需要检查GPU是否可用,方法如下TensorFlowimport tensorflow as tfprint(tf.test.is_gpu_available())PyTorchimport torchprint(torch.cuda.is_available())原创 2022-05-16 21:40:17 · 1009 阅读 · 0 评论 -
pytorch layer normalization如何使用
层归一化的调用命令:torch.nn.LayerNorm(normalized_shape, eps=1e-05, elementwise_affine=True, device=None, dtype=None)在CV中的应用案例Image Example N, C, H, W = 20, 5, 10, 10 input = torch.randn(N, C, H, W) # input data # Normalize over the last three dimensions (i.原创 2022-02-14 09:00:32 · 1628 阅读 · 0 评论 -
RTX3080+cuda 11.0
使用最新的卡RTX3080,需要安装11.3 cudatoolkit原创 2021-06-23 20:28:16 · 5387 阅读 · 6 评论 -
RTX3090安装pytorch和图像处理相关模块
pytorch,tqdm,matplotlib,h5py,scikit-image原创 2022-01-17 13:46:53 · 2880 阅读 · 0 评论 -
pytorch中normal_的含义
代码如下torch.FloatTensor((2,3,4)).normal_(mean=0, std=1)解释:初始化一个shape为(2,3,4)的网络参数,初始化值取自标准正态分布。原创 2021-08-10 22:06:40 · 1727 阅读 · 0 评论