上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 106 下一页
摘要: 转自: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 阅读(66) 评论(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 阅读(4301) 评论(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 阅读(678) 评论(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 阅读(1054) 评论(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 阅读(7167) 评论(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 阅读(518) 评论(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 阅读(640) 评论(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 阅读(802) 评论(0) 推荐(1)
摘要: 转自:https://blog.csdn.net/DLUTBruceZhang/article/details/9050467 https://www.cnblogs.com/yc3110/p/10440613.html 1.用户与操作系统关系 在用户空间中的进程要通过系统调用才能访问系统资源。系统 阅读全文
posted @ 2021-05-25 09:17 lypbendlf 阅读(1892) 评论(3) 推荐(0)
摘要: 转自:https://blog.csdn.net/qq_31815507/article/details/115673210 1.阻塞与非阻塞 阻塞IO,指的是需要内核IO操作彻底完成后,才返回到用户空间执行用户的操作。阻塞指的是用户空间程序的执行状态。传统的IO模型都是同步阻塞IO。 非阻塞是忙、 阅读全文
posted @ 2021-05-24 21:36 lypbendlf 阅读(121) 评论(0) 推荐(0)
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 106 下一页