Machine Learning(1)Collect Documents
1. Introduction
Input Data —> Feature Representation —>Learning Algorithm
Deep Learning —> UnsupervisedFeature Learning
Example from Picture Learning, how to judge that is A Bike
Sparse Coding Algorithm
Sum_k(a[k] * S[k]) —> T
pixels —> edges —> object parts ( combination of edges) —> object models
words —> terms —> topic —> doc
Basic Deep Learning
I => S1 => S2 => … => Sn => O
Shallow Learning => Deep Learning
Linear Regression with Multiple Variable
http://blog.csdn.net/abcjennifer/article/details/7700772
Size(feet) Number of Bedrooms Number of floors Age of Home Price
x1 x2 x3 x4 y
…. for example m = 4
Feature Scaling
Make sure features are on a similar scala.
x1 = size(0-2000 feet) x1 = size(feet) / 2000
x2 = number of bedrooms (1 -5) x2 = number of bedrooms / 5
Put average value
x1 = (size -1000)/2000,
x2 = (bedrooms -2 ) /5
decision tree
http://blog.csdn.net/abcjennifer/article/details/20905311
References:
https://github.com/ty4z2008/Qix/blob/master/dl.md
http://article.yeeyan.org/view/22139/410514
http://blog.csdn.net/zouxy09/article/details/8775360
http://blog.csdn.net/zouxy09/article/details/8775488
http://blog.csdn.net/zouxy09/article/details/8781396
http://blog.csdn.net/zouxy09/article/details/8781543
spark
https://spark.apache.org/docs/latest/mllib-guide.html
http://www.fuqingchuan.com/2015/03/500.html
http://www.cnblogs.com/LeftNotEasy/archive/2011/03/07/random-forest-and-gbdt.html
http://www.cnblogs.com/LeftNotEasy/archive/2011/05/02/basic-of-svm.html
http://blog.csdn.net/abcjennifer/article/category/1173803
https://class.coursera.org/ml-005/lecture/preview
Stanford
http://blog.csdn.net/abcjennifer/article/details/7691571
http://blog.csdn.net/abcjennifer/article/details/7700772
http://blog.csdn.net/abcjennifer/article/details/7706581 matlab
http://blog.csdn.net/abcjennifer/article/details/7716281
note for decision tree
http://www.cnblogs.com/LeftNotEasy/archive/2011/03/07/random-forest-and-gbdt.html
http://www.cnblogs.com/LeftNotEasy/archive/2011/05/02/basic-of-svm.html
Spark
http://www.fuqingchuan.com/2015/03/500.html
https://spark.apache.org/docs/latest/mllib-guide.html
https://github.com/apache/spark/tree/master/examples/src/main/scala/org/apache/spark/examples/mllib example
分享到:
相关推荐
Machine learning is rapidly becoming a fixture in our data-driven world....machine learning to collect, analyze, and act on massive quantities of data in an approachable, no-nonsense manner.
- **RDD 操作**:PySpark 提供了多种 RDD 操作,包括转换(如 map, filter, reduceByKey 等)和行动(如 count, collect, saveAsTextFile 等)。这些操作可以帮助用户进行数据处理和分析。 #### 五、使用 PySpark ...
google-collect-1.0-rc1.jar
MachineLearning&LandUse 随着学习材料的增多,我们试图以一种简便有效的方式将相关材料整理汇总,以便进一步研究。下面的材料是近一段时间以来关于机器学习及其在遥感图像的应用的方面的论文和代码材料汇总。 ...
fetch bulk collect into 的使用格式是:fetch some_cursor collect into col1, col2 limit xxx。其中,col1、col2 是声明的集合类型变量,xxx 为每次取数据块的大小(记录数),相当于缓冲区的大小,可以不指定 ...
In particular, deep learning frameworks like TensorFlow, Theano, and Torch allow nonexperts to construct complex neural networks to solve their own machine learning problems. This has turned a task ...
在ABAP编程中,`collect`关键字用于对内表中的数据进行分类聚合,通常用于统计特定列的数值。本篇文章将详细介绍`collect`的用法并提供实例。 首先,理解`collect`的基本概念。`collect`操作是基于一个或多个关键列...
《谷歌集合库jar包详解——以google-collect-1.0-rc1.jar为例》 在Java编程领域,Google提供了一系列强大的工具集,其中就包括`com.google.common.collect`包,它为Java开发者提供了丰富的集合操作和数据结构,极大...
##### 1. 在SELECT INTO语句中使用BULK COLLECT ```plsql DECLARE TYPE sal_list IS TABLE OF emp.sal%TYPE; sals sal_list; BEGIN -- 限制结果集大小为100行 SELECT sal BULK COLLECT INTO sals FROM emp ...
1. **数组操作**:`collect.js`提供了丰富的数组方法,如`push`, `pop`, `shift`, `unshift`, `splice`, `concat`, `slice`, `filter`, `map`, `reduce`, `find`, `findIndex`等,这些都是基于JavaScript原生数组...
1. **在 select into 语句中使用 bulk collect**: 在这个示例中,我们创建了一个名为 SalList 的表类型,用于存储 EMP 表中的薪水(sal)数据。然后,我们通过 BULK COLLECT INTO 一次性将满足条件(ROWNUM )的前...
在Java编程领域,`com.google.common.collect`是一个非常重要的包,它是Google的Guava库的一部分。Guava是一个广泛使用的开源库,提供了许多实用的集合框架、缓存、原生类型支持、并发工具、字符串处理等功能。`...
com.google.common.collect.Lists的jar包
《Visual C++ 开发工具深度探索——以"Collect"项目为例》 在IT领域,Visual C++是一款由微软公司推出的高效能、面向对象的编程环境,尤其适合Windows平台的应用程序开发。它集成了编译器、调试器以及丰富的类库,...
DTC_Collect.c
SET column1 = quotes(i).symbol, column2 = quotes(i).bid WHERE id = quotes(i).id; ``` 在这个例子中,FORALL循环会根据quotes数组中的每一项更新对应记录。 记录(Record)是PL/SQL中的复合数据类型,它...
详细介绍了使用 BULK COLLECT 进行批量操作 提高sql的执行效率 使用MERGE INTO USING 一条sql搞定 新增和修改 使用connect by 进行递归树查询