上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 107 下一页
摘要: 1.BCELoss和CrossEntropyLoss 区别 https://blog.csdn.net/f156207495/article/details/88874911 BCELoss是针对二分类的,CrossEntropyLoss是针对多分类的: 也就是使用的分类函数不同。二分类使用sigm 阅读全文
posted @ 2021-07-02 14:01 lypbendlf 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/xiexu911/article/details/80820028 1.torch.squeeze() 只会去掉维度为1的那个维度。它只会去掉维度为1的维度,像下面的没有为1的维度,就不会改变: >>> aaa=np.ones((3,2)) >>> 阅读全文
posted @ 2021-06-22 15:18 lypbendlf 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1.SC3 https://bioconductor.org/packages/release/bioc/html/SC3.html https://bioconductor.org/packages/release/bioc/vignettes/SC3/inst/doc/SC3.html#run- 阅读全文
posted @ 2021-06-20 19:35 lypbendlf 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/ranyonsue/p/8918908.html 1.概览 Web 缓存大致可以分为:数据库缓存、服务器端缓存(代理服务器缓存、CDN 缓存)、浏览器缓存。 浏览器缓存也包含很多内容: HTTP 缓存、indexDB、cookie、localst 阅读全文
posted @ 2021-06-18 23:53 lypbendlf 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 转自:https://zhidao.baidu.com/question/568487385.html 1.刷新原理不同 F5触发的HTTP请求的请求头中通常包含了If-Modified-Since 或 If-None-Match字段,或者两者兼有; CTRL+F5触发的HTTP请求的请求头中没有上 阅读全文
posted @ 2021-06-18 23:12 lypbendlf 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/liuzhenbo/p/11027197.html 1.gcc与GCC gcc 和 GCC 是两个不同的东西 GCC: GNU Compiler Collection(GUN 编译器集合),它可以编译C、C++、JAV、Fortran、Pasca 阅读全文
posted @ 2021-06-18 12:45 lypbendlf 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 1.位数 int a=1; long b=1; long long c=1; cout<<sizeof(a)<<"\n"; cout<<sizeof(b)<<"\n"; cout<<sizeof(c)<<"\n"; //输出 4 4 8 以上的代码结果表明,int和long都是32位的,只有long 阅读全文
posted @ 2021-06-18 12:16 lypbendlf 阅读(1298) 评论(0) 推荐(0) 编辑
摘要: 转自:http://t.zoukankan.com/lizhanwu-p-4303410.html 1.拉链法代码实现 所想插入的类型: char* names[]={"First Name","Last Name","address","phone","k101","k110"}; char* d 阅读全文
posted @ 2021-06-15 20:32 lypbendlf 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 1.带外数据 转自:https://www.cnblogs.com/c-slmax/p/5553857.html 传输层协议使用带外数据(out-of-band,OOB)来发送一些重要的数据,如果通信一方有重要的数据需要通知对方时,协议能够将这些数据快速地发送到对方。 TCP协议没有真正意义上的带外 阅读全文
posted @ 2021-06-15 18:02 lypbendlf 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 1.LSGANs(最小二乘GAN) 转自:https://blog.csdn.net/u013289254/article/details/97302883 https://zhuanlan.zhihu.com/p/25768099 LSGANs是用来解决原始GAN的两个缺陷:生成的图片质量不高以及 阅读全文
posted @ 2021-06-15 13:42 lypbendlf 阅读(249) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 107 下一页