- 博客(30)
- 资源 (30)
- 收藏
- 关注
原创 google word2vec源码剖析
// Copyright 2013 Google Inc. All Rights Reserved.//// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You
2014-08-26 22:59:54
2321
原创 启发式搜索(Heuristic Search Methods)寻找问题的最优解
Three different heuristic search methods
2014-05-26 22:14:02
3978
原创 Two Sum
原题链接:http://oj.leetcode.com/problems/two-sum/Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the t
2014-05-14 15:01:37
680
原创 Valid Number(验证字符串是否表示数字)
Validate if a given string is numeric.Some examples:"0" => true" 0.1 " => true"abc" => false"1 a" => false"2e10" => true
2014-05-14 13:30:54
3698
原创 Attempt to set model object on null model of component
1.wicket开发web项目是遇到这个异常。
2014-05-10 01:44:03
1374
原创 Max Points on a Line
问题来自http://oj.leetcode.com/problems/max-points-on-a-line/Max Points on a LineGiven n points on a 2D plane, find the maximum number of points that lie on the same straight line.
2014-05-04 19:46:06
852
原创 wicket框架-ajax原理
1.question:what is ajax?Ajax is an acronym for Asynchronous JavaScript and XML
2014-04-28 03:04:38
2210
原创 MapReduce实验:Hive安装以及简单操作
2.Hive2.1.单机环境下Hive安装下载hive,链接http://apache.cs.utah.edu/hive/,最新版本为hive-0.13.0。解压tar –zxvf apache-hive-0.13.0.tar.gz,安装在hadoop目录下。配置环境变量,sudo gedit /etc/profile,如下所示:同样执行source /etc/profil
2014-04-22 20:51:20
2339
原创 MapReduce实验:HBase安装以及简单操作
MapReduce实验:HBase与Hive2014.4.21 牛力强 NJUCSMapReduce实验:HBase与Hive.11.HBase.11.1.单机环境下伪分布式HBase安装与操作示例...11.1.1.下载安装...11.1.2.配置环境变量...11.1.3.HBase配置文件...21.1.4.启动HBase.31
2014-04-22 15:34:57
1365
转载 Implementing a Principal Component Analysis (PCA) in Python step by step
Implementing a Principal Component Analysis (PCA) in Python step by step-- written by Sebastian Raschka on April 13, 2014Tweet In this article I want to explain how a Principal Component A
2014-04-18 12:30:55
1785
转载 An Introduction to Deep Learning (in Java)
An Introduction to Deep Learning (in Java)2014年04月16日 文章目录§ A Thirty Second Primer on Machine Learning§ Perceptrons§ Feedforward Neural Networks§ Autoencoders§ Restricted Boltzmann Machi
2014-04-16 13:29:03
2341
转载 代码面试最常用的10大算法-java
原文出自http://www.youkuaiyun.com/article/2014-04-10/2819237-Top-10-Algorithms-for-Coding-Interview
2014-04-11 18:00:39
3229
转载 Lucene in 5 minutes.
Lucene in 5 minutesfrom LuceneTutorial.comNow updated for Lucene 4.0!Lucene makes it easy to add full-text search capability to your application. In fact, its so easy, I'm going to
2013-12-18 19:57:05
864
转载 Linux下C语言编程 利用RPC(Remote Procedure Call)快速实现分布式系统
转载自http://zhoulifa.bokee.com/6129455.html一、概述在传统的编程概念中,过程是由程序员在本地编译完成,并只能局限在本地运行的一段代码,也即其主程序和过程之间的运行关 系是本地调用关系。因此这种结构在网络日益发展的今天已无法适应实际需求。总而言之,传统过程调用模式无法充分利用网络上其他主机的资源(如CPU、 Memory等),也无
2013-11-06 23:46:33
8023
1
转载 中文词性标注 符号表示
Definitions of Chinese Part-of-Speech中文词性标注(33) [1] AD 副词 Adverbs[2] AS 语态词 --- 了[3] BA 把[4] CC 并列连接词(coordinating conj)[5] CD 许多(many)
2013-10-23 20:54:23
5847
原创 复述抽取生成doc03-实现01
编程实现01定义一个句子类NewSentence,包含基本的句子,分词后的结果,以及句法分析树结果,以及句子中的锚点对象(命名实体)分词采用IKAnalyzer句法分析以及依存分析采用stanford parser(分析一个句子比较慢 加载汉语模型要1秒多)结果如下:*句子“我计划出去旅行。”:Loading parser from serialized file models/c
2013-10-21 18:42:15
1027
原创 复述抽取生成doc01-思路方法确立
经过近似一个月的各种看中文英文复述研究的论文,最终选定基于单个单语语料库,从中抽取复述patterns,用于新句子的复述生成。下载了搜狗实验室几百M的网页数据,发现这种单语的网页数据,从中找到复述句子对可能性非常小,而且代价很高。对于一个特定的句子,其中的复述句0.1%都不可能有。基于上面的考虑,决定采取搜索引擎,搜索与句子相关的数据作为训练复述pattern。在百度中自己验证了一下,基本上可以找
2013-10-21 18:38:52
1429
原创 C++ 学习 小细节 01数组指针篇
1.数组定义和初始化:数组的维数必须使用值大于等于1的常量表达式定义。只能包含整型字面值常量、枚举常量(枚举成员本身是一个常量表达式)或者用常量表达式初始化的整型const对象。非const变量以及到运行阶段才能知道其值得const变量都不能用于定义数组的维数。const unsigned size1 = 100;int size2 = 10;const unsigned size
2013-10-20 21:20:35
717
原创 收集各种文章资料的URL 不断更新
3.2.1.使用 HttpClient 和 HtmlParser 实现简易爬虫:http://www.ibm.com/developerworks/cn/opensource/os-cn-crawler/#ibm-pcon2013年10月17日 01:27:18 开始
2013-10-17 01:27:41
931
原创 像船
时间里的船几岁时,一切似乎都是漫长,未知,唯是期待。十几岁时,一起经历着,有酸有甜,共同诉说着誓言。如今或许以后,隔着千层,无法感受。原来,相信有着不变的承诺,一切依旧。发现,时间给的,却不是。就像,搁浅万年的船,抛锚时,漂浮已是妄想。BY NIULIQIANG 20
2013-10-13 11:07:51
774
原创 基于数据(语料库)的复述粗略综述
基于数据(语料库)的复述粗略综述By牛力强 2013年9月24日NLP CS NJUEmail:simpleniulq2013@gmail.com1.复述1.1复述(paraphrase):在与原句表达相同的语义内容,同一种语言下的原句的替代形式。1.2复述产生的层次(level):词汇复述(lexical paraphrase):个别词汇(individual l
2013-10-06 20:48:42
5702
原创 org.apache.wicket.core.request.handler.ComponentNotFoundException原因
2013年9月3日14:49:31在使用wicket框架开发轻量级网站时遇到org.apache.wicket.core.request.handler.ComponentNotFoundException这个异常。原因:页面一块面板Ajax响应采用了定时器,因此当点击面板中的某一动作执行时,由于定时器的刷新,原来的面板内容已经不存在,执行动作找不到原来的对象,因此发生异常。解决方案:
2013-09-03 14:55:31
1462
原创 hello world
hello world. this is my first day start to wirting blog artical.that is all.2013年8月1日15:20:31
2013-08-01 15:21:19
579
Statistical Models Theory and Practice
2014-10-12
Neural Networks for Pattern Recognition
2014-06-29
An Introduction to Information Retrieval
2013-12-23
维特比算法
2013-07-18
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人