1. 21 % -5; // machine-dependent: result is 1 or -4 21 / -5; // machine-dependent: result -4 or -5 2. 溢出 3. bool 类型可转换为任何算术类型——bool 值false 用 0 表示,而 tr ...
分类:
其他好文 时间:
2020-06-11 00:42:03
阅读次数:
45
编译完成后,内核image、文件系统rootfs、设备树dtb、启动项uboot/barebox, 会放在build目录的/deploy/images/MACHINE/下面, 这里MACHINE需要可能为空(对于老版本的poky/yocto),也可能是你的板子名字,例如sabresd。 对于tool ...
分类:
其他好文 时间:
2020-06-10 21:32:10
阅读次数:
106
1. Gradient Checking 你被要求搭建一个Deep Learning model来检测欺诈,每当有人付款,你想知道是否该支付可能是欺诈,例如该用户的账户可能已经被黑客掉。 但是,反向传播实现起来非常有挑战,并且有时有一些bug,因为这是一个mission-critical应用,你公司 ...
分类:
其他好文 时间:
2020-06-10 12:52:53
阅读次数:
60
Regularization Deep Learning models have so much flexibility and capacity that overfitting can be a serious problem,if the training dataset is not big ...
分类:
其他好文 时间:
2020-06-09 18:29:42
阅读次数:
53
一、前言 Newman是Postman的命令行集合运行器。可以直接运行接口集合脚本。 安装Newman这里不概述,自行百度安装。注意:安装前需安装Node.js Newman更多用法见:https://learning.getpostman.com/docs/postman/collection_r ...
分类:
其他好文 时间:
2020-06-09 16:17:04
阅读次数:
75
1.Book https://blog.floydhub.com/best-deep-learning-books-updated-for-2019/ grokking-deep-reinforcement-learning https://livebook.manning.com/book/gro ...
分类:
其他好文 时间:
2020-06-09 12:55:08
阅读次数:
74
Windows Registry Editor Version 5.00 ;如需还原去除上语句前减号即可 ;取消我的电脑"视频"文件夹 [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer ...
Give this: We have a wrongn classified point, how to move the line to come closer to the points? We apply learning rate and since wrong point is in po ...
分类:
其他好文 时间:
2020-06-08 00:57:01
阅读次数:
82
常用类 Arrays Arrays 类包含用于操作数组的各种方法(例如排序和搜索)。还包含一个静态工厂,允许将数组转为 List。 方法 描述 List asList(T... a) 返回由指定数组构造的 List void sort(Object[] a) 对数组进行排序 void fill(Ob ...
分类:
编程语言 时间:
2020-06-07 21:25:44
阅读次数:
107
名词解释: JVM ,JRE ,JDK: JVM :是 Java Virtual Machine JRE : 是 Java Runtime Environment JRE 包含 JVM, JDK: 是 Java Development Kit , JDK包含JRE 和 其他开发用的工具,例如 编译工 ...
分类:
编程语言 时间:
2020-06-07 12:55:51
阅读次数:
70