码迷,mamicode.com
首页 >  
搜索关键字:ng2    ( 393个结果
成绩转换
/* xuejineng2016@163.com 2020年5月6日 */ #include<stdio.h> int main(void) { int score; char grade; scanf("%d", &score); switch (score / 10) { case 10: ca ...
分类:其他好文   时间:2020-05-06 20:03:51    阅读次数:72
C - Command Line Arguments
It is possible to pass some values from the command line to your C programs when they are executed. These values are called command line arguments and ...
分类:其他好文   时间:2020-05-01 10:45:42    阅读次数:72
TypeError: can't pickle dict_values objects
Future major versions of TensorFlow will allow gradients to flowinto the labels input on backprop by default. See @{tf.nn.softmax_cross_entropy_with_l ...
分类:其他好文   时间:2020-04-11 12:59:46    阅读次数:124
Linux LVDS 参数配置
参考: https://blog.csdn.net/u014770862/article/details/76274951 找到 LVDS datasheet 的屏幕参数表格,如下: 由上图我们可以看到 在 Linux devicetree 里面,关于 LVDS 的配置如下 ...
分类:系统相关   时间:2020-04-01 11:16:11    阅读次数:113
解析 Linux 内核可装载模块的版本检查机制
https://www.ibm.com/developerworks/cn/linux/l-cn-kernelmodules/index.html 解决方法 https://blog.csdn.net/hbcbgcx/article/details/88192223 http://blog.chin ...
分类:系统相关   时间:2020-03-30 16:18:54    阅读次数:102
2019暑假内容复习
1. 静态库和动态库定义 <1>.链接静态库的时候,会将库中函数实现的代码直接搬移到可执行文件中,生成的可执行文件体积大,运行的时候不需要库的支持。 <2>.链接动态库的时候,只是记录可执行文件所依赖的库名,生成的可执行文件体积小, 运行的时候需要库的支持 (1)查看可执行文件依赖的动态库 read ...
分类:其他好文   时间:2020-03-28 17:41:25    阅读次数:78
bean通过反射重写toString
思路1: 网上一大把,通过this.getClass().getDeclaredFields();获得所有属性,禁掉访问限制,最终输出属性值 // public String toString2() {// System.out.println("enter sourceObj toString.. ...
分类:其他好文   时间:2020-03-17 19:19:28    阅读次数:64
DBeaver 连接MySql报错
DBeaver 连接MySql 报错 Unable to load authentication plugin 'caching_sha2_password'. 网上查资料说的是mysql5.x 版本和 8.x版本的区别; 5.7版本是:default_authentication_plugin=m ...
分类:数据库   时间:2020-03-09 13:35:41    阅读次数:260
一份简明的 Base64 原理解析
书接上回,在 [记一个 Base64 有关的 Bug][1] 一文里,我们说到了 Base64 的编解码器有不同实现,交叉使用它们可能引发的问题等等。 这一回,我们来对 Base64 这一常用编解码技术的原理一探究竟。 1. Base64 是什么 Base64 是一种基于 64 个可打印字符来表示二 ...
分类:其他好文   时间:2020-03-08 14:22:57    阅读次数:78
经典网络复现(0)多层感知机和lenet
对于mnist数据集,我实现了一些简单的网络,同样在20epochs训练获得的loss和acc序号网络结构loss和acc2model = Sequential()model.add(Dense(units = 121,input_dim = 28 * 28))model.add(Activatio... ...
分类:Web程序   时间:2020-02-29 11:33:40    阅读次数:124
393条   上一页 1 2 3 4 5 6 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!