机器学习的 label 和 feature 的概念

2017-01-23
阅读 1 分钟
16.9k
摘录 reddit 链接上一段话The label is the name of some category. If you're building a machine learning system to distinguish fruits coming down a conveyor belt, labels for training samples might be "apple", " orange", "banana". The features are any kind of information you can extract about each sa...

Angular2 基础实践( 三 )- 模板语法: 事件和引用(含视频)

2016-11-15
阅读 1 分钟
3.1k
Angular2中的事件处理:用click事件作介绍,在你的html模板加入<button (click)="onClick()"></button>注意其中的小括号,小括号是注册事件的标记,与之对应的是中括号[],[]代表输入,可以把()理解为输出,你可以定义自己的输入输出(后面章节讲解)。

Angular2 基础实践( 二 )- 创建一个简单的组件(含视频)

2016-11-15
阅读 1 分钟
3.9k
Angular2的组件是这样的:你可以自定义html标签,比如simple-form组件(形如<simple-form></simple-form>)。