自定义博客皮肤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

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

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

原创 nyoj 151 Biorhythms

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=151#include #include #include #include using namespace std;void ExGcd(int a, int b, int &x, int &y){ if(b == 0) { x = 1

2014-04-30 20:45:51 852

原创 poj 1017 Packets

题目来源:http://poj.org/problem?id=1017

2014-04-30 18:12:23 683

原创 nyoj 143 第几是谁?

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=143参考:

2014-04-30 18:08:09 673 3

原创 nyoj 139 我排第几个

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=139康托展开,可以参考百度百科!

2014-04-29 22:00:00 1375

原创 Nyoj 105 九的余数

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=105

2014-04-29 18:08:08 842

原创 Nyoj 102 次方求模

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=102

2014-04-29 17:33:05 715

原创 Nyoj 97 兄弟郊游问题

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=97

2014-04-29 13:06:09 814

原创 Nyoj 954 N!

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=954计算n!

2014-04-29 12:40:09 1041

原创 Nyoj 70 阶乘因式分解(二)

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=70#includeusing namespace std;int main(){ int T; int n, m, num; cin >> T; while(T--) { num = 0; cin >>n

2014-04-28 22:02:50 626

原创 Nyoj 64 鸡兔同笼

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=64

2014-04-28 21:25:29 753

原创 poj 2654 Rock-Paper-Scissors Tournament

题目来源:http://poj.org/problem?id=2654#include #include #include using namespace std;const int MAXN = 210;int main(){ char m1[10], m2[10]; int iWin[MAXN], iLose[MAXN], p1, p2, i, n, m,

2014-04-28 21:15:18 1243

原创 poj 1298 The Hardest Problem Ever

题目来源:http://poj.org/problem?id=1298#include #include #include #include #include #include using namespace std;int main(){ string str; int i; while( cin>>str ) { cin

2014-04-28 20:07:40 725

原创 poj 2612 Mine Sweeper

题目来源:http://poj.org/problem?id=2612

2014-04-28 19:27:28 899

原创 Nyoj 56 阶乘因式分解(一)

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=56

2014-04-28 18:26:05 603

原创 Nyoj 46 最少乘法次数

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=46这里用到的是快速取幂

2014-04-27 21:52:48 995 2

原创 nyoj 40 公约数和公倍数

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=40

2014-04-27 21:28:24 665

原创 nyoj 34 韩信点兵

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=34这水题,

2014-04-27 21:23:28 822

原创 nyoj 23 取石子(一)

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=23简单的巴什博奕,

2014-04-27 21:13:46 669

原创 Nyoj 22 素数求和问题

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=22#include #include #include using namespace std;const int MAXN = 1010;int IsPrime[MAXN];void Check_Prime(){ int i, j; for(i

2014-04-27 21:04:45 793

原创 Nyoj 7 街区最短路径问题

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=7坑爹的题!居然

2014-04-27 20:36:12 618

原创 Nyoj 24 素数距离问题

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=24

2014-04-27 20:09:16 712

原创 UVA 10894 - Save Hridoy

题目来源:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1835模拟!

2014-04-27 16:20:54 765

原创 Light oj 1007 - Mathematically Hard

题目来源:http://www.lightoj.com/volume_showproblem.php?problem=1007这个题就是欧拉函数,

2014-04-27 14:56:05 677

原创 poj 2339 Rock, Scissors, Paper

题目来源:http://poj.org/problem?id=2339小模拟,注意字母的

2014-04-27 10:16:24 727

原创 Common Divisors

题目来源:http://codeforces.com/contest/182/problem/D D. Common Divisorstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputVasya has...

2014-04-25 12:49:46 1031

原创 Huffman编码

#include #include #include #include using namespace std;typedef int ElemType;struct BTreeNode{ ElemType data; BTreeNode* left; BTreeNode* right;};BTreeNode* CreateHuffman(Elem

2014-04-24 21:12:30 818

原创 NYoj 60 谁获得了最高奖学金

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=60#include #include #include #include using namespace std;const int MAXN = 110;struct studentNode{ char name[21]; int average;

2014-04-24 21:10:57 795

原创 Nyoj 586 疯牛

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=586分析

2014-04-22 18:07:20 1131

原创 Nyoj 寻找最大数 448

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=448分析:

2014-04-22 17:04:02 745

原创 poj The Unique MST

题目来源:http://poj.org/problem?id=1679

2014-04-21 22:03:00 752

原创 UVA 11729 - Commando War

题目来源:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=117&page=show_problem&problem=2829这个题把

2014-04-21 20:53:17 818

原创 Nyoj 364 田忌赛马

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=364

2014-04-21 20:25:34 897

原创 hdu 4503 湫湫系列故事——植树节

题目来源:http://acm.hdu.edu.cn/showproblem.php?pid=4503

2014-04-21 20:18:44 603

原创 hdu 4502 吉哥系列故事——临时工计划

题目来源:http://acm.hdu.edu.cn/showproblem.php?pid=4502本题是动态规划,dp[i]表示到今天所能挣到最多的钱,dp[i] = MAX(dp[i], dp[j] + a[j+1][i]);其中a[i][j]表示:从i到j天的工资! #include <iostream>#include <cstdio>#incl...

2014-04-21 20:15:46 820

原创 nyoj 287 Radar

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=287#include #include #include #include #include #include using namespace std;const int MAXN = 1010;int main(){ int n, r, i, kca

2014-04-20 18:19:27 715

原创 Nyoj 30 Gone Fishing

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=30这题有必要叙述一下

2014-04-20 13:31:56 874

原创 nyoj 220 推桌子

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=220

2014-04-19 20:38:33 866

原创 编程之美 活动中心

时间限制:12000ms单点时限:6000ms内存限制:256MB描述A市是一个高度规划的城市,但是科技高端发达的地方,居民们也不能忘记运动和锻炼,因此城市规划局在设计A市的时候也要考虑为居民们建造一个活动中心,方便居住在A市的居民们能随时开展运动,锻炼强健的身心。城市规划局希望活动中心的位置满足以下条件:1. 到所有居住地的总距离最小。2. 为

2014-04-19 18:14:06 1109

原创 编程之美 焦距

描述一般来说,我们采用针孔相机模型,也就是认为它用到的是小孔成像原理。在相机坐标系下,一般来说,我们用到的单位长度,不是“米”这样的国际单位,而是相邻像素的长度。而焦距在相机坐标系中的大小,是在图像处理领域的一个非常重要的物理量。假设我们已经根据相机参数,得到镜头的物理焦距大小(focal length),和相机胶片的宽度(CCD width),以及照片的横向分辨率(image wid

2014-04-19 18:12:08 803

原创 Nyoj 16 背包问题

题目来源:

2014-04-19 11:35:03 704

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关注的人

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