吭哧吭哧埋头干
吭哧吭哧埋头干
全部文章
分类
Java(83)
JS(17)
Linux(35)
OJ(10)
PHP(31)
Python(14)
SQL数据库(13)
大数据云计算(2)
大数据分析(3)
安卓开发(7)
开发框架(4)
微信开发(3)
数据结构(4)
未归档(48)
机器学习(16)
神经网络(5)
算法设计(9)
网络爬虫(13)
论文笔记(31)
归档
标签
去牛客网
登录
/
注册
TopCoderのZeze
What You Want, Time Will Give You!
全部文章
(共348篇)
Python爬虫之Urllib库的基本使用
Python爬虫之Urllib库的基本使用 import urllib2 response = urllib2.urlopen("http://www.baidu.com") print response.read() 其实上面的urlopen参数可以传入一个re...
2017-04-14
0
546
GBDT 迭代决策树
GBDT(Gradient Boosting Decision Tree) 又叫 MART(Multiple Additive Regression Tree),是一种迭代的决策树算法,该算法由多棵决策树组成,所有树的结论累加起来做最终答案。它在被提出之初就和SVM一起被认为是泛化能力(gene...
2017-04-12
0
527
【网络爬虫】微信公众号采集
# WeixinCrawler 根据搜狗搜索 关键词采集 微信公众号和相应推文 采集策略:深度搜索采集 核心代码: package main; import java.io.File; import java.io.FileNotFoundException; import java...
2017-04-02
0
401
【爬虫】通用抽取网页URL
package model; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.InputStreamReader; import jav...
2017-04-01
0
438
【CNN】卷积神经网络
什么是卷积神经网络 卷积神经网络是一种特殊的、简化的深层神经网络模型,它的每个卷积层都是由多个卷积滤波器组成。它最先由lecun在LeNet[40]中提出,网络结构如下图所示。在cnn中,图像的一小部分(局部感受区域)作为层级结构的最低层的输入,信息再依次传输到不同的层,每层通过多个卷积滤波...
2017-03-31
0
1109
Machine Learning、Date Mining、IR&NLP 会议期刊论文推荐
核心期刊排名查询 http://portal.core.edu.au/conf-ranks/ http://portal.core.edu.au/jnl-ranks/ 1、机器学习推荐会议 ICML——很难读懂,值得一读 NIPS ——主要看文章摘要 ECML 2...
2017-03-29
0
614
Natural Language Processing, 2017, Mar.29, Weekly Report
Distributed Representations of Words and Phrases and their Compositionality T Mikolov, I Sutskever, K Chen, G Corrado, J Dean Advances in Neural Inf...
2017-03-29
0
428
【Turing Award】Robin Milner And Butler W. Lampson
1991 罗宾·米尔纳(Robin Milner) Robin Milner(13 January 1934 – 20 March 2010) Introduction : Milner was born in Yealmpton, near Plymouth, England into...
2017-03-28
0
919
【word2vec】Distributed Representation——词向量
Distributed Representation 这种表示,它最早是 Hinton 于 1986 年提出的,可以克服 one-hot representation 的缺点。 其基本想法是: 通过训练将某种语言中的每一个词映射成一个固定长度的短向量(当然这里的“短”是相对于 o...
2017-03-27
0
700
【Java】HashTable和HashMap区别
①继承不同 public class Hashtable extends Dictionary implements Map public class HashMap extends AbstractMap implements Map ②Hashtable 中的方法是同步的,而Ha...
2017-03-27
0
346
首页
上一页
7
8
9
10
11
12
13
14
15
16
下一页
末页