- 浏览: 13601 次
最新评论
文章列表
http://hunch.net/~vw/
https://issues.apache.org/jira/browse/MAHOUT-228
http://blog.csdn.net/dcraw/article/details/6846599
http://www.win-vector.com/blog/2010/12/large-data-logistic-regression-with-example-hadoop-code/
large scale logisitc regression
http://bickson.blogspot.com/2011/05/large-scal ...
阅读笔记
beta分布·
http://isip.buaa.edu.cn/lichen/?p=348
多值变量
http://isip.buaa.edu.cn/lichen/?p=376
The Dirichlet distribution
http://isip.buaa.edu.cn/lichen/?p=389
http://www.cnblogs.com/plwang1990/tag/%E6%A8%A1%E5%BC%8F%E8%AF%86%E5%88%AB%E4%B8%8E%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0/
large scale logi ...
中文blog:
http://www.jiangfeng.me/
漫谈有指导学习之判别模型
http://www.jiangfeng.me/blog/174
梯度下降
http://blog.csdn.net/zimohuakai/article/details/6918590
http://www.cvchina.info/2011/06/29/online-learning-part/
白话模拟退火算法
http://www.cnblogs.com/heaad/archive/2010/12/20/1911614.html
Pascal Large Scale Learning C ...
http://stackoverflow.com/questions/3519901/get-values-for-keys-within-a-range-in-java
http://www.zhizhihu.com/html/y2011/2848.html
杂想:
1.正交
X1,X2分别不能区分Y,但是如果X1*X2在4个象限内可以区分Y
2.概率和概率密度
就像是质量和密度的关系,现实生活中,大部分都是均概率密度,因为这样其实不存在随机的问题。比如汽车轮子的造型。
1.code template 更改名字
在eclipse.ini中增加:
-Duser.name=your names
2.@kde
gdb错误解决:
Basically, it is to use an older gdb protocol that supports deferred breakpoints. Using the "Standard Create Process Launcher" instead of "GDB (DSF) Create Process Launcher" from Debug Configurations and ...
http://www.bytemining.com/2011/08/hadoop-fatigue-alternatives-to-hadoop/
twister http://www.iterativemapreduce.org/userguide.html
haloop http://code.google.com/p/haloop/
http://dongxicheng.org/mapreduce/iterative-mapreduce-intro/
http://kb.cnblogs.com/page/94920/
插件的安装
建议安装在dropins下面,有问题了,不用那么麻烦搞来搞去,直接重新解压eclipse的程序,覆盖好了。
ref:
http://qa.taobao.com/?p=8980
http://tech.e800.com.cn/articles/2009/83/1249263423686_1.html
常用插件:
checkstyle
findbugs
http://www.missyu.cn/2011/05/findbugs/
http://sourceforge.net/projects/findbugs/files/findbugs%20eclipse%20plugi ...
1.最直观的,根据AUC这个名称,我们知道,计算出ROC曲线下面的面积,就是AUC的值。事实上,这也是在早期Machine Learning文献中常见的AUC计算方法。由于我们的测试样本是有限的。我们得到的AUC曲线必然是一个阶梯状的。因此,计 ...
The Mahout Collections library is a set of container classes that address some limitations of the standard collections in Java. This presentation describes a number of performance problems with the standard collections.
Mahout collections addresses two of the more glaring:
the lack of support for p ...
org.uncommons
The Uncommons Maths library provides five easy-to-use, statistically sound, high-performance pseudorandom number generators (RNGs). They are:
http://maths.uncommons.org/
在http://blog.uncommons.org/2008/04/06/a-java-programmers-guide-to-random-numbers-part-2-not-just-coins-and-dice/ ...
可以说 Java Collections Framework 满足了我们大多数情况下使用集合的要求,但是当遇到一些特殊的情况我们的代码会比较冗长,比较容易出错。Guava Collections 可以帮助你的代码更简短精炼,更重要是它增强了代码的可读性。看看 Guava Collections 为我们做了哪些很酷的事情。
Immutable Collections: 还在使用 Collections.unmodifiableXXX() ? Immutable Collections 这才是真正的不可修改的集合
Multiset: 看看如何把重复的元素放入一个集合
Multimaps: 需要在一 ...
package lq.test;
import java.io.*;
import java.util.*;
//*********创建型模式***************
//factory method 1
//1具体的构造算法,和2构造出的具体产品由子类实现
interface Product {
}
//或者我也提供一个工厂的接口,由这个抽象类来继承它
abstract clas ...