上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 107 下一页
摘要: 1.复制 https://qastack.cn/superuser/61611/how-to-copy-with-cp-to-include-hidden-files-and-hidden-directories-and-their-contents cp -r /etc/skel/* /home/ 阅读全文
posted @ 2021-05-27 14:04 lypbendlf 阅读(406) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/yusiguyuan/article/details/15027821 阅读全文
posted @ 2021-05-27 13:51 lypbendlf 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 转自:https://zhuanlan.zhihu.com/p/119400472 https://zhuanlan.zhihu.com/p/187463036 1.相关函数 #include <sys/epoll.h> int epoll_create(int size); int epoll_c 阅读全文
posted @ 2021-05-27 13:34 lypbendlf 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 1.作图 https://www.cnblogs.com/zpc1001/p/13322902.html # 每一个epoch,记录各层权重、梯度 for name, param in net.named_parameters(): # 返回网络的 writer.add_histogram(name 阅读全文
posted @ 2021-05-27 12:35 lypbendlf 阅读(3322) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.jianshu.com/p/4818a1a4b5bd 1.介绍 Dataset类是为torch.utils.data.DataLoader做准备,支持两种类型的访问 * map-style datasets #__getitem__() * iterable-style 阅读全文
posted @ 2021-05-27 12:22 lypbendlf 阅读(633) 评论(0) 推荐(0) 编辑
摘要: 1.UMAP降维 https://zhuanlan.zhihu.com/p/150788883 在使用UMAP时不需要像t-sne那样先通过AE/PCA降到一定的维度再去第二次降维, https://zhuanlan.zhihu.com/p/109584077 阅读全文
posted @ 2021-05-27 01:33 lypbendlf 阅读(1014) 评论(0) 推荐(0) 编辑
摘要: 1.pytorch 的nn.Linear 参数初始化方法 m=nn.Linear(3, 4) print(m.weight) print(m.bias) #输出 Parameter containing: tensor([[ 1.7056e-01, -4.5271e-01, 1.5907e-01], 阅读全文
posted @ 2021-05-26 16:14 lypbendlf 阅读(6472) 评论(0) 推荐(1) 编辑
摘要: 转自:https://www.huaweicloud.com/articles/64e2a426a2d4fe45b7be305791fe2839.html 1.表示范围 https://blog.csdn.net/u013760665/article/details/98520702 正整数用原码表 阅读全文
posted @ 2021-05-26 12:30 lypbendlf 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 1.描述符表与socket 每个socket都有一个描述符,指向对应socket的结构,但是对这个sockfd的读写是怎么和缓冲区以及文件连接起来的呢? 数据结构: https://www.kernel.org/doc/htmldocs/networking/API-struct-socket.ht 阅读全文
posted @ 2021-05-25 13:35 lypbendlf 阅读(602) 评论(0) 推荐(0) 编辑
摘要: 转自:https://murphypei.github.io/blog/2019/08/socket-ready https://blog.csdn.net/kyang_823/article/details/79496303 0.socket缓冲区 https://blog.csdn.net/ta 阅读全文
posted @ 2021-05-25 12:00 lypbendlf 阅读(671) 评论(0) 推荐(1) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 107 下一页