上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 106 下一页
摘要: 转自:https://blog.csdn.net/waitingwinter/article/details/105774720 1.对输入变量求导 要用到输出值对输入变量(不是Weights和Biases)求导,可以用pytorch 中的autograd.grad() 函数实现。 autograd 阅读全文
posted @ 2021-12-19 16:51 lypbendlf 阅读(251) 评论(0) 推荐(0)
摘要: 1.安装cuda https://developer.nvidia.cn/cuda-downloads,可查看安装版本: 下载 安装: wget https://developer.download.nvidia.com/compute/cuda/11.5.1/local_installers/cu 阅读全文
posted @ 2021-12-19 00:07 lypbendlf 阅读(498) 评论(0) 推荐(0)
摘要: 转自:https://www.cnblogs.com/ttop/p/4085414.html 1.umask掩码 umask是chmod配套的,总共为4位(gid/uid, 属主,组权,其它用户的权限),不过通常用到的是后3个,例如你用chmod 755 file(此时这文件的权限是属主读(4)+写 阅读全文
posted @ 2021-11-20 00:24 lypbendlf 阅读(639) 评论(0) 推荐(0)
摘要: 转自:https://blog.csdn.net/sinat_16643223/article/details/106077394 https://xie.infoq.cn/article/31fe8d982e52125e2cd6c08fb 1.路线 一. 基础阶段 c/c++编程语言 linux基 阅读全文
posted @ 2021-11-12 14:48 lypbendlf 阅读(360) 评论(0) 推荐(0)
摘要: 转自:https://discuss.pytorch.org/t/why-do-we-need-to-do-loss-cuda-when-we-we-have-already-done-model-cuda/91023/5 https://discuss.pytorch.org/t/move-the 阅读全文
posted @ 2021-11-11 22:28 lypbendlf 阅读(792) 评论(0) 推荐(0)
摘要: 转自:https://www.jb51.net/article/213149.htm 1.多个loss x = torch.tensor(2.0, requires_grad=True) y = x**2 z = x # 反向传播 y.backward() x.grad tensor(4.) z.b 阅读全文
posted @ 2021-11-11 22:20 lypbendlf 阅读(495) 评论(0) 推荐(0)
摘要: 1.训练报错 使用BCE损失时,出现的问题包括: 报错 参数batch_size | epoch | hidden_size | lr_D | lr_DZ | lr_Eref | lr_model | z_dim 'ViewBackward' returned nan values 8 | 50 | 阅读全文
posted @ 2021-11-11 20:01 lypbendlf 阅读(1608) 评论(0) 推荐(0)
摘要: 转自:https://towardsdatascience.com/avoid-data-leakage-split-your-data-before-processing-a7f172632b00 https://towardsdatascience.com/data-splitting-for- 阅读全文
posted @ 2021-11-07 17:18 lypbendlf 阅读(2384) 评论(0) 推荐(0)
摘要: 转自:https://blog.csdn.net/qq_32595453/article/details/80563142 1.URI URI,统一资源标志符(Uniform Resource Identifier, URI)。 URI通常由三部分组成: ①资源的命名机制; ②存放资源的主机名; ③ 阅读全文
posted @ 2021-10-30 18:11 lypbendlf 阅读(155) 评论(0) 推荐(0)
摘要: 转自:https://scanpy.readthedocs.io/en/stable/ 1.scanpy.pp.normalize_total scanpy.pp.normalize_total(adata, target_sum=None, exclude_highly_expressed=Fal 阅读全文
posted @ 2021-10-23 17:07 lypbendlf 阅读(199) 评论(0) 推荐(0)
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 106 下一页