自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Abner

博观而约取,厚积而薄发,不可择焉不精,语焉不详!

  • 博客(54)
  • 资源 (83)
  • 收藏
  • 关注

原创 BUAACM 晴天小猪是点赞狂魔

简单题,并且数据还有问题!#include #include #include using namespace std;int main(){ int T; long long i, n; cin>>T; while (T--) { cin>>n; long long a; long long t = (n+1) * n / 2; long long k

2013-11-30 16:29:24 1268

原创 ZOJ1298, POJ1135 Domino Effect

题目大意:        你的任务是编写程序,给定多米诺骨牌游戏,计算最后倒下的是哪一张骨牌、在什么时间倒下。这些多米诺骨牌游戏包含一些“关键牌”,他们之间由一行普通骨牌连接。当一张关键牌倒下时,连接这张关键牌的所有行都开始倒下。当倒下的行到达其他还没倒下的关键骨牌时,则这些关键骨牌也开始倒下,同样也使得连接到它的所有行开始倒下。每一行骨牌可以从两个端点中的任何一张关键牌开始倒下,甚至两个端点

2013-11-29 21:36:53 825

原创 Dijkstra 算法介绍以及实现

Dijkstra算法的具体实现方法为:1. 设置两个顶点的集合T和S:a) S中存放已找到最短路径的顶点,初始时,集合S中只有一个顶点,即源点v0;b) T中存放当前还未找到最短路径的顶点;2.在T集合中选取当前长度最短的一条最短路径(v0,…,vk),从而将vk加入到顶点集合S中,并修改源点v0到T中各顶点的最短路径长度;重复这一步骤,直到所有的顶点都加入到集

2013-11-29 20:15:18 1541

原创 zoj 2048 Highways poj 1751

两题几乎就是一摸一样的,只是输入格式不一样。#include #include #include #include #include #include using namespace std;const int MAX = 1000;const int INF = 10000010;struct Point{ int x,y;} point[MAX];in

2013-11-28 13:04:42 966

原创 zoj 1914 poj 2349 Arctic Network

题目大意:    国防部想在北部的前哨之间建立一个无线网络连接这些前哨。在建立网络时使用了两种不同的通信技术:每个前哨有一个无线电收发器,有一些前哨还有一个卫星频道。    任何两个拥有卫星频道的前哨之间可以直接通过卫星进行通信,而且卫星通信跟距离和位置无关。否则,两个前哨之间通过无线电收发器进行通信,并且这两个前哨之间的距离不能超过D,这个D值取决于无线电收发器的功率。功率越大,D值也就

2013-11-28 11:24:31 717

原创 hdu 2089 不要62

#include #include #include using namespace std;int dp[10][3];int DP(int x){ bool flag = false; int s[15]; int idx = 0, sum = x, ans = 0; for(; x; x /= 10) s[++idx] = x % 10; s[idx+1] =

2013-11-27 21:50:02 664

原创 zoj 2158 poj 1789 Truck History (Prim)

题目大意:      高级货物运输公司ACM使用不同类型的卡车。有些卡车用来运蔬菜,有些用来运水果,还有一些用来运砖,等等。该公司对不同的卡车有自己的编码方法。卡车的编码为一个包含7个字符的字符串(每个位置上的字符都有特定的含义,但这一点对本题并不重要)。在ACM公司发展历史上的初期,只有一种卡车可供使用,只有一种卡车类型编码;后来又引进了新的一种卡车类型,新卡车的类型编码是从第一种卡车编码派

2013-11-27 19:56:53 865

原创 zoj 1586 QS Network (Prim)

#include #include using namespace std;const int MAXN = 1010;const int INF = 10000010;int Edge[MAXN][MAXN];int lowcost[MAXN];int adapter[MAXN];int n;void Inite(){ int i, j; cin>>n; me

2013-11-27 18:40:52 791

原创 Prim算法

一、Prim 算法的思想:    普里姆算法的基本思想是以顶点为主导地位:从起始顶点出发,通过选择当前可用的最小权值边依次把其他顶点加入到生成树当中来。设连通无向网为G(V, E),在普里姆算法中,将顶点集合V分成两个子集合T和T':T:当前生成树顶点集合,T':不属于当前生成树的顶点集合。很显然有:T∪T'= V。普里姆算法的具体过程为:1)  从连通无向网G中选择一

2013-11-27 05:07:57 2131

原创 poj 2421 Constructing Roads (Kruskal)

#include #include #include using namespace std;const int MAXM = 10050;const int MAXN = 110;struct Edge{ int u, v, w;};Edge edges[MAXM];int parent[MAXN];int n, m;void UFset(){ int

2013-11-27 03:31:35 783

原创 zoj 1372

#include #include #include #include #include #include #include #include #include #include #define Max(a,b) ((a)>(b)?(a):(b))#pragma comment(linker, "/STACK:16777216")using namespace std ;

2013-11-26 21:26:28 721

原创 zoj 1406 poj 1251 Jungle Roads

#include #include #include #include using namespace std;const int MAXN = 27;const int MAXM = 100;struct Edge{ int u, v, w;};Edge edges[MAXM];int parent[MAXN];int kcount[MAXN];int Max

2013-11-26 16:23:24 766

原创 poj 1861

#include #include #include using namespace std;const int MAXN = 1010;const int MAXM = 15010;struct Edge{ int u, v, w;};Edge edges[MAXM];int ans[MAXN];int parent[MAXN], kcount[MAXN];in

2013-11-26 13:52:40 649

原创 最小生成树 Kruskal

Kruskal思想是以边为主导地位,始终都是选择当前权值最小的边。具体算法步骤:   1)  设一个有n个顶点的连通网络为G(V, E),最初先构造一个只有n个顶点,没有边的非连通图T= { V, Ø },图中每个顶点自成一个连通分量。   2)  当在E中选择一条具有最小权值的边时,若该边的两个顶点落在不同的连通分量上,则将此边加入到T中;否则,即这条边的两个顶点落在同一个连通分量上,则

2013-11-26 11:37:15 908

原创 hdu 1575 Tr A

#include #include #include using namespace std;const int N = 10;const int modnum = 9973;struct Matrix{ int matrix[N][N];};Matrix A, I;int n, K;void Inite_Matrix(){ scanf("%d%d",&n, &

2013-11-25 21:30:46 682

原创 hdu 3065 病毒侵袭持续中 ac_automaton

用一个二维字符串数组存储,第i个病毒是什么,virus[i]代表的就是第i个病毒的数量,如果virus[i] != 0表明有这个病毒存在,printf( "%s: %d\n" ,s2[i], virus[i]);就是满足要求的输出。#include #include #include using namespace std;const int MAXN = 50010;stru

2013-11-25 01:39:29 881

原创 hdu 2896 病毒来袭 ac_automaton

本题输出的时候需要排序,其余的是跟上一题差不多,不过不是技术,而是查看是否存在,所以如果该病毒存在,则记录在一个数组里,并不改变结点的数据。#include #include #include #include using namespace std;const int MAXN = 10000010;struct Trie_Node{ int id; Trie_Nod

2013-11-25 00:37:09 748

原创 ac_automaton 模板

#include #include #include using namespace std;const int MAXN = 500010;struct Trie_Node{ Trie_Node* fail; Trie_Node* pNext[26]; int cnt; Trie_Node() { fail = NULL; cnt = 0; memset(

2013-11-24 21:54:39 845

原创 hdu 2222 Keywords Search (ac_automaton)

ac自动机:点击打开ac自动机资料#include #include #include using namespace std;const int MAXN = 500010;struct Trie_Node{ Trie_Node* fail; Trie_Node* pNext[26]; int kcount; Trie_Node()

2013-11-24 13:07:54 731

原创 hdu 2072

这个题对线段树来说有点坑! #include<iostream>#include<cstdio>#include<cstring>#include<algorithm>using namespace std;int sum;char s[100000];char st[500];struct node{ in...

2013-11-23 19:11:12 742

原创 hdu 1800 Flying to the Mars

题目大意:        有一群士兵,给定这些士兵的等级,等级大的士兵可以作为教师教等级低的士兵,等级低的不能教等级高的,等级相同的也不可以互相教,每个士兵至多有一个教师(或者没有),每个教师至多有一个士兵(可以没有),问至少需要多少把扫帚? 分析:这个题可以用字典树做,因为如果等级不同,则至少需要一把,但是如果出现等级相同的,一个等级出现几个相同的,在每个等级出现相同的次数中选出一个最大...

2013-11-23 14:02:15 793

原创 hdu 1247 Hat'sWord

 #include <iostream>#include <cstring>#include <cstdio>using namespace std;const int MAXN = 50010;char word[MAXN][21];struct Trie{ bool flag; Trie* pNext[26]; Trie()...

2013-11-23 13:01:43 699

原创 hdu 1075 What Are You Talking About

    本文中有个函数islower()是用来检测该字符是否为小写字母的。    先建立火星文字典树,然后在每一个火星词的结束的那个字符,用来储存该火星词的英语意思。  #include <iostream>#include <cstring>#include <cstdio>using namespace std;const i...

2013-11-23 11:08:35 826

原创 1671 Phone List (Trie树)

点击打开题目    本题可以先插入,后查询,也可以便插入便查询。我用的是第二种思路。 #include <iostream>#include <cstring>#include <cstdio>using namespace std;struct Trie{ bool flag; Trie* pNext[10]; Trie()...

2013-11-21 17:41:54 774

原创 hdu 1251 统计难题 Trie

#include <iostream>#include <cstring>#include <cstdio>using namespace std;class Trie{ public: int num; Trie* pNext[26]; Trie() { num = 0; ...

2013-11-21 15:35:45 791

原创 poj 2528 Mayor's posters

题目大意:    往墙上贴海报,可以互相覆盖,问最终可以看到多少张海报?露出一部分的也算可以看到。分析:    由于本题数据比较大,因此处理时需要离散化,离散化是一种压缩区间的手段,可以降低复杂度。例如:[100,1000],[1010, 2012],[880, 2013];我们所需要的数据也就是100,1000,1010,2010,880,2013,对于[-∞,99],[101,87

2013-11-20 13:09:24 833

原创 poj 3468 A Simple Problem with Integers

#include #include #include using namespace std;#define lson l, m, rt << 1#define rson m+1, r, rt << 1 | 1typedef __int64 LL;const int MAXN = 100010;LL add[MAXN<<2];LL sum[MAXN<<2];void P

2013-11-20 08:37:10 775

原创 1698 Just a Hook 线段树区间更新

线段树区间更新,有个懒惰标记,每次更新不进行到底,,用懒惰标记使得更新延迟到下次需要更新或者询问到的时候。#include #include #include #include #define lson l, m, rt << 1#define rson m+1, r, rt << 1 | 1using namespace std;const int MAXN = 20002

2013-11-19 20:52:45 888

原创 hdu 2795 Billboard 线段树

#include #include #include #include #define lson l, m, rt << 1#define rson m+1, r, rt << 1 | 1using namespace std;const int MAXN = 222222;int h, w, n;int MAX[MAXN<<2];void PushUp(int rt)

2013-11-19 01:21:07 910

原创 1394 Minimum Inversion Number 线段树

题目大意:给定数列a[1]、a[2]··········a[n],每次将移动首项移动到末尾,每移动一次,计算数列的逆序数,在一系列移动之后,求最小的逆序数。分析:   首先求出输入序列的逆序数,然后每次取其与移动一次之后的逆序数的最小值。n-1表示最大数,n-1 - x[i]表示首项x[i]移动到数列末尾后会产生几个逆序,但是当x[i]作为首项时,会有x[i]个逆序,因此,n-1-x[i]

2013-11-18 17:48:47 848

原创 hdu 1754 I Hate It 线段树Test

#include #include using namespace std;#define lson l , m , rt << 1#define rson m + 1 , r , rt << 1 | 1const int maxn = 222222;int MAX[maxn<<2];void PushUP(int rt) { MAX[rt] = max(MAX[rt<<1] ,

2013-11-18 12:48:09 895

原创 hdu 1166 敌兵布阵 线段树

#include #include #include #include #define lson l, m, rt << 1#define rson m+1, r, rt << 1 | 1using namespace std;const int MAXN = 50010;int sum[MAXN<<2];void PushUp(int rt){ sum[rt

2013-11-18 01:39:23 832

原创 HOJ 2686 Magic-Box

三维树状数组,关键是更新时,空间想象比二维复杂些。其原理都是相同的!#include #include #include #include using namespace std;const int MAXN =210;int c[MAXN][MAXN][MAXN];inline int lowbit(int x){ return x & (-x);}v

2013-11-17 15:08:08 919

原创 poj 2029 Get Many Persimmon Trees

本题可以二维树状数组的思想来解决,暴力好像也可以,数据比较小。用二维树状数组,就是枚举指定长宽的矩阵内*号的个数,并求出数目最大的。#include #include #include #include using namespace std;const int MAXN = 110;int c[MAXN][MAXN];int lowbit(int x){ r

2013-11-17 13:38:20 818

原创 poj 2481 Cows

题目大意:        给定你一些区间,去判断每个区间是其他区间真子集的个数。分析:        本题与Stars有点类似。首先对E从大到小排序,如果Ei  = Ej 则让S从小到大排序,然后就是stars类型。就是求cow[i].S前比他小的个数。 #include #include #include #include using namespace std;

2013-11-17 11:38:15 834

原创 poj 2299 Ultra-QuickSort

本题就是求逆序数,在一个排列中,如果一对数的前后位置与大小顺序相反,即前面的数大于后面的数,那么它们就称为一个逆序。一个排列中逆序的总数就称为这个排列的逆序数。    令t[i]表示逆序对(a[j],i)的个数,即排在i的左边且比i大的数的个数,则逆序数为t[1]+t[2]+···t[n]       例l设n=8,a={3,2,l,5,8,4,6,7},t[1] = 2 ,t[2]

2013-11-16 21:04:59 789

原创 poj 3067 Japan

#include #include #include #include using namespace std;const int MAXN = 1010;long long c[MAXN];struct Node{ int x, y;}node[MAXN*MAXN];int lowbit( int x ){ return x & (-x);}

2013-11-16 16:00:57 803

原创 poj 1019 Number Squence

题目大意:      给定N组数字串,每个数字串都是从1,2······按升序排列的正整数,例如:1 12 123 1234 12345 123456·····,问第n位所指的数字是几?例如:1 12 123 1234 12345······ 第3位是2,第六位是3,第8位是2。 分析:    如果是1--9的数字,每一个数占一位,10--99每个数字占2位,100--999每个数

2013-11-15 21:44:55 632

原创 HOJ Stars 2678

这个题与poj的思路有点类似 点击打开poj Stars#include #include #include using namespace std;const int MAXN = 1010;int c[MAXN][MAXN];struct Node{ int x, y, z;}stars[15010];int cmp(Node a, Node b){ i

2013-11-14 21:49:42 976

原创 poj Stars 2352

#include #include #include using namespace std;const int MAXN = 32010;int c[MAXN];int lowbit( int x ){ return x&(-x);}void UFset(int pos, int data){ while(pos < MAXN) {

2013-11-14 18:41:55 898

xshell+xftp免费版

之前上传的那个xshell+xftp没办法使用了,所以又重新上传了一个,亲测可用

2019-01-12

图像的风格迁移

风格迁移示例,仅作为学习下载,有需要的请自行下载。

2018-12-18

keras2.0中文文档 高清 带书签.pdf

最新keras2.0中文文档,高清,带书签,有需要的自行下载。

2018-12-08

从Word Embedding到Bert模型—自然语言处理中的预训练技术发展史

从Word Embedding到Bert模型—自然语言处理中的预训练技术发展史,用于资料备份,便与查阅。

2018-11-19

word2vec系列资料

仅用于资料备份,便与查阅。 word2vec 中的数学原理详解.pdf Word2Vec-语言模型的前世今生PDF word2vec Parameter Learning Explained.pdf

2018-11-19

word2vec 中的数学原理详解

PDF出处:https://blog.csdn.net/itplus/article/details/37969519,本着查阅方便,无法设置免积分下载,有需要的请自行下载

2018-11-01

CRF++0.58-Linux+Windows

CRF++0.58-Linux+Windows,里面包含了Linux版CRF++-0.58.tar.gz,和Windows版CRF++-0.58.rar,这两个版本本,亲自测试可用,有需要请自行下载。

2018-09-29

npp++32位+NPPTextFx.dll

npp++ 32位,从官网下载的,因为处理文本需要,TextFx插件,但是这个插件只支持32位的。 该压缩包包含: npp++ 32位 PluginManager TextFX.v0.26.unicode.bin

2018-09-27

李航-《统计学习方法》高清完整版(带书签)

之前积分被修改的太高了,重新传一次吧,《统计学习方法》是计算机及其应用领域的一门重要的学科。《统计学习方法》全面系统地介绍了统计学习的主要方法,特别是监督学习方法,包括感知机、k近邻法、朴素贝叶斯法、决策树、逻辑斯谛回归与最大熵模型、支持向量机、提升方法、EM算法、隐马尔可夫模型和条件随机场等。除第1章概论和最后一章总结外,每章介绍一种方法。叙述从具体问题或实例入手,由浅入深,阐明思路,给出必要的数学推导,便于读者掌握统计学习方法的实质,学会运用。为满足读者进一步学习的需要,书中还介绍了一些相关研究,给出了少量习题,列出了主要参考文献。

2018-09-17

中文同义词词库-同义词词库-access版本

中文同义词词库-同义词词库-access版 本 有需要的请自行下载

2018-09-15

自用xshell软件

XshellXftpPortable 备份一份软件,以供以后使用方便。

2018-09-03

LDA数学八卦-带书签

讲解LDA模型,相当经典的文档,里面的数学推理严谨。自制书签,方便查阅。有需要的自行下载。

2018-08-30

数论概论 第三版(中文)

《数论概论》是2008年机械工业出版社出版的图书,作者是JosephH.Silverman。本书介绍了有关数论大量的知识,以及数论的一般方法和应用等.

2018-08-29

Stanford NLP note - Christopher Manning教授-完整吧

之前的少了几章,这个是完整版。授课老师是大名鼎鼎的Christopher Manning教授,他是两本书的第一作者:一本是《统计自然语言处理基础》(Foundations of Statistical Natural Language Processing),另一本是《信息检索导论》(Introduction to Information Retrieval),都是相应领域的入门经典。

2018-08-08

Stanford NLP note - Christopher Manning教授

授课老师是大名鼎鼎的Christopher Manning教授,他是两本书的第一作者:一本是《统计自然语言处理基础》(Foundations of Statistical Natural Language Processing),另一本是《信息检索导论》(Introduction to Information Retrieval),都是相应领域的入门经典。

2018-08-08

21天学通Java-第7版-超清带书签.pdf

《21天学通Java》是超清晰版本,带书签,压缩包内还有一个第6版,有需要的请自行下载。 《21天学通Java:20小时多媒体语音视频教学》是Java语言的入门教程,由浅入深,循序渐进地讲授如何使用Java语言进行程序开发。全书内容包括Java开发环境、Java基本语法知识、Java面向对象特点、Java界面开发,以及Java数据库开发和网络编程开发。为了便于读者学习,《21天学通Java》最后一章对一个完整学生管理系统进行了分析。具体讲解了学生模块和老师模块,以及其他各个模块的功能分析。《21天学通Java》旨在为Java语言的初学者和大中专学生提供易于入门,便于全面了解和掌握Java编程技术的教辅资料,同时对有一定经验的Java编程者和学习者也有一定的参考价值。《21天学通Java》附赠DVD光盘1张,内容包括超大容量手把手视频、电子教案(PPT)、编程参考宝典电子书、源代码及各章习题答案。

2018-07-27

计算机统计自然语言处理PDF

哈工大 关毅老师主编的教材,pdf,我自己简答插了书签,有需要的请自行下载。 本书分为基础、原理和应用3个篇章。基础篇论述了自然语言处理技术的数学基础和中文语言处理特有的自动分词技术; 原理篇论述了基于统计和基于语言学规则的语言处理技术的基本原理; 应用篇论述了在音字转换、自动文摘、信息检索、手写体识别等应用领域中的实用语言处理方法。

2018-07-26

统计自然语言处理基础PDF(中英文-带书签)

统计自然语言处理基础PDF,包含中英文两版,带书签。统计自然语言处理 第二版 宗成庆。有需要的请自行下载。

2018-07-25

pytorch+cuda9.0

torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl 官网总是打不开,再次备份一份,有需要的请自行下载

2018-04-10

Tensorflow 实战Google深度学习框架-清晰-带书签

TensorFlow是谷歌2015年开源的主流深度学习框架,目前已在谷歌、优步(Uber)、京东、小米等科技公司广泛应用。《Tensorflow实战》为使用TensorFlow深度学习框架的入门参考书,旨在帮助读者以最快、最有效的方式上手TensorFlow和深度学习。书中省略了深度学习繁琐的数学模型推导,从实际应用问题出发,通过具体的TensorFlow样例程序介绍如何使用深度学习解决这些问题。《Tensorflow实战》包含了深度学习的入门知识和大量实践经验,是走进这个最新、最火的人工智能领域的首选参考书。

2018-01-17

TensorFlow Machine Learning Cookbook.pdf

Explore machine learning concepts using the latest numerical computing library — TensorFlow — with the help of this comprehensive cookbook About This Book Your quick guide to implementing TensorFlow in your day-to-day machine learning activities Learn advanced techniques that bring more accuracy and speed to machine learning Upgrade your knowledge to the second generation of machine learning with this guide on TensorFlow Who This Book Is For This book is ideal for data scientists who are familiar with C++ or Python and perform machine learning activities on a day-to-day basis. Intermediate and advanced machine learning implementers who need a quick guide they can easily navigate will find it useful. What You Will Learn Become familiar with the basics of the TensorFlow machine learning library Get to know Linear Regression techniques with TensorFlow Learn SVMs with hands-on recipes Implement neural networks and improve predictions Apply NLP and sentiment analysis to your data Master CNN and RNN through practical recipes Take TensorFlow into production In Detail TensorFlow is an open source software library for Machine Intelligence. The independent recipes in this book will teach you how to use TensorFlow for complex data computations and will let you dig deeper and gain more insights into your data than ever before. You’ll work through recipes on training models, model evaluation, sentiment analysis, regression analysis, clustering analysis, artificial neural networks, and deep learning – each using Google’s machine learning library TensorFlow. This guide starts with the fundamentals of the TensorFlow library which includes variables, matrices, and various data sources. Moving ahead, you will get hands-on experience with Linear Regression techniques with TensorFlow. The next chapters cover important high-level concepts such as neural networks, CNN, RNN, and NLP. Once you are familiar and comfortable with the TensorFlow ecosystem, the last chapter will show you how to take it to production. Style and approach This book takes a recipe-based approach where every topic is explicated with the help of a real-world example.

2018-01-17

Automatic Speech Recognition A Deep Learning Approach

解析深度学习-语音识别实践-英文版,没有找到中文版的

2017-11-07

最大熵模型与自然语言处理

最大熵模型与自然语言处理.有需要的请自行下载。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。

2017-09-01

Baum-Welch

Baum-Welch,隐马尔可夫学习算法,自己备份。

2017-08-29

Deep Learning for Hybrid Unit Selection Synthesis - Apple

TTS,语音合成

2017-08-24

google-chrome-stable_current_amd64.deb

google浏览器需要的,请自行下载。

2017-08-11

Speech_Synthesis_Paul_Taylor.pdf

Speech Synthesis Paul Taylor.

2017-07-28

cudnn 5.1 for CUDA 8.0 Linux

cuDNN v5.1 Library for Linux. cuDNN v5.1 (Jan 20, 2017), for CUDA 8.0。

2017-07-05

Speech_Synthesis_Paul_Taylor

TTs

2017-06-17

matplotlib tutorial-(原版)

matplotlib tutorial,matplotlib教程,英文版,需要的自行下载

2017-03-27

机器学习.算法原理与编程实践+代码

机器学习.算法原理与编程实践,加代码,有需要的,自行下载。

2017-03-20

鱼c小甲鱼零基础学python全套课后题

前50课,需要的自行下载

2017-03-16

Scikit-learn 使用手册中文高清完整版.pdf

Scikit-learn 使用手册中文版,有需要的自行下载。

2017-03-09

scikit-learn.user_guide

scikit-learn.user_guide,英文版

2017-03-09

李宏毅 一天搞懂深度学习.ppt版下载

本文是2016 台湾资料科学年会前导课程“一天搞懂深度学习”的全部讲义PPT(共268页),由台湾大学电机工程学助理教授李宏毅主讲。作者在文中分四个部分对神经网络的原理、目前存在形态以及未来的发展进行了介绍。深度学习的每一个核心概念在文中都有相关案例进行呈现,通俗易懂。一天的时间搞懂深度学习?其实并不是没有可能。 需要的,请自行下载

2017-02-23

算法导论第三版答案(完整版)

网上的 算法导论(第三版)答案都不完整,这个是完整版答案,分每章一个单独pdf格式的文件,易于查阅。有需要的请自行下载。

2017-01-11

李航博士《统计学习方法》课件

清华大学深圳研究生院的袁春老师为《统计学习方法》一书制作了完整的课件。感谢袁老师,同时推荐大家使用。

2016-11-13

机器学习实战(中文带书签+英文+源代码)

本书第一部分主要介绍机器学习基础,以及如何利用算法进行分类,并逐步介绍了多种经典的监督学习算法,如k近邻算法、朴素贝叶斯算法、Logistic回归算法、支持向量机、AdaBoost集成方法、基于树的回归算法和分类回归树(CART)算法等。第三部分则重点介绍无监督学习及其一些主要算法:k均值聚类算法、Apriori算法、FP-Growth算法。第四部分介绍了机器学习算法的一些附属工具。

2016-10-26

《机器学习》----[Tom M. Mitchell]--带书签

《机器学习》展示了机器学习中核心的算法和理论,并阐明了算法的运行过程。《机器学习》综合了许多的研究成果,例如统计学、人工智能、哲学、信息论、生物学、认知科学、计算复杂性和控制论等,并以此来理解问题的背景、算法和其中的隐含假定。《机器学习》可作为计算机专业 本科生、研究生教材,也可作为相关领域研究人员、教师的参考书。

2016-10-16

《统计学习方法》李航-带书签高清完整PDF版

《统计学习方法》是计算机及其应用领域的一门重要的学科。《统计学习方法》全面系统地介绍了统计学习的主要方法,特别是监督学习方法,包括感知机、k近邻法、朴素贝叶斯法、决策树、逻辑斯谛回归与最大熵模型、支持向量机、提升方法、EM算法、隐马尔可夫模型和条件随机场等。除第1章概论和最后一章总结外,每章介绍一种方法。叙述从具体问题或实例入手,由浅入深,阐明思路,给出必要的数学推导,便于读者掌握统计学习方法的实质,学会运用。为满足读者进一步学习的需要,书中还介绍了一些相关研究,给出了少量习题,列出了主要参考文献。

2016-10-16

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除