自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(63)
  • 收藏
  • 关注

原创 关于SentiBank detectors的matlab中getmapping函数的修正

最近在做论文复现的时候抽取特征需要用到SentiBank detectors来进行图像的特征生成,然后运行起来就会报assumtype错误,其实这是由于matlab内置的bitshift已经进行了改动,源代码是根据matlab2013a运行的。如果没有特殊需求,只需要下一个8.1版本的MCR运行binary文件夹中的Binconcept.exe即可,链接如下:我找到解决方案的链接:https...

2020-02-24 15:49:04 919 5

原创 An Overview of Multi-Task Learning in Deep Neural Networks

论文链接:https://arxiv.org/pdf/1706.05098.pdf参考链接两篇译文:https://mp.weixin.qq.com/s?__biz=MzA3MzI4MjgzMw==&mid=2650728311&idx=1&sn=62b2dcc82657d1ce3bf91fd6a1197699https://www.cnblogs.com/shu...

2019-08-05 18:08:58 405 2

原创 Modeling Task Relationships in Multi-task Learning with Multi-gate Mixture-of-Experts [KDD 2018] [MM

论文链接::http://delivery.acm.org/10.1145/3230000/3220007/p1930-ma.pdf?ip=203.12.205.218&id=3220007&acc=OA&key=4D4702B0C3E38B35.4D4702B0C3E38B35.4D4702B0C3E38B35.5945DC2EABF3343C&acm=1564...

2019-08-04 18:47:29 1028

原创 Multitask Learning(MTL)

论文链接:https://link.springer.com/content/pdf/10.1023/A:1007379606734.pdf主要内容单任务学习STL多任务学习MTL图1. 四个输入相同的任务的单任务后向传播、图2展示了一个输入与图1中的四个网络一致的单一网络,但该网络有四个输出,每个输出对应图1中的一个任务。需要注意的是,这些输出可以连接他们共享的一个隐层的所有神经元...

2019-08-04 18:08:09 326

原创 Deep Neural Networks for YouTube Recommendations

论文链接:https://static.googleusercontent.com/media/research.google.com/zh-CN//pubs/archive/45530.pdf系统框架主要问题1.如何利用DNN作召回(候选集生成)2.如何利用DNN作ranking候选集生成u为用户兴趣向量,v为视频词向量,p表示用户u在场景c观看视频i的可能性P(wt=i∣U,C)...

2019-08-04 16:13:25 130

原创 Wide & Deep Learning for Recommender Systems

主要内容提到CTR预估,最经典的应该是LR模型了,LR模型简单、快速并且模型具有可解释,有着很好的拟合能力,但是LR模型是线性模型,表达能力有限,泛化能力较弱,需要做好特征工程,尤其需要交叉特征,才能取得一个良好的效果,然后工业中,特征的数量会很多,可能达到成千上万,甚至数十万,这时特征工程就很难做,并且特征工程是一项很枯燥乏味的工作,搞得算法工程师晕头转向,还不一定能取得更好的效果。DNN模...

2019-08-01 22:34:18 171

原创 DeepFM: A Factorization-Machine based Neural Network for CTR Prediction

论文链接:https://arxiv.org/pdf/1703.04247.pdf主要内容DeepFM结合了FM与Deep Learning,进行了特征自动提取,利用了FM难以有效利用的高阶特征。借助FNN的思想,利用FM进行embedding,之后的wide和deep模型共享embedding之后的结果。DNN的输入完全和FNN相同(这里不用预训练,直接把embedding层看作一层的N...

2019-08-01 22:10:46 192 5

原创 Field-aware Factorization Machines for CTR Prediction

论文链接:https://www.csie.ntu.edu.tw/~cjlin/papers/ffm.pdf主要内容Field-aware Factorization Machines(FFM)场感知分解机是FM的变种,FM的变体称为成对相互作用张量因子化(PITF)被提出用于个性化标签推荐。在2012年KDD杯中,PITF被称为“因子模型”的概括由Team Opera提出。因为这个术语太笼...

2019-07-31 23:03:56 168

原创 Factorization Machines

论文链接:https://www.csie.ntu.edu.tw/~b97053/paper/Rendle2010FM.pdf主要内容Factorization Machines (FM)结合了Support Vector Machines (SVM) 和factorization models(分解模型)的优点,解决了数据稀疏的情况下,特征怎样组合的问题FM至少有以下三个优点:1.稀疏...

2019-07-31 21:24:20 210

原创 Crowd Counting using Deep Recurrent Spatial-Aware Network

1.核心思想提出了Deep Recurrent Spatial-Aware Network的网络架构 ,以传统方法忽略人在图像中旋转效果为出发点,主要提出了两个功能模块全局特征提取部分(GFE)和 Recurrent Spatial-Aware Refinement(RSAR)。其中GFE模块将整个图像作为输入,进行特征提取。RSAR模块通过Spatial Transformer Networ...

2019-07-18 14:57:21 135 1

原创 模板

快速读入freadnamespace fastIO { #define BUF_SIZE 100000 bool IOerror = 0; inline char nc() { static char buf[BUF_SIZE], *p1 = buf + BUF_SIZE, *pend = buf + BUF_SIZE; if(p1 ==

2017-08-31 10:49:07 336

原创 HDU4117-GRE Words(AC自动机+DFS序+区间修改线段树)

GRE WordsTime Limit: 30000/15000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 4506 Accepted Submission(s): 435Problem DescriptionRecently George is preparing f

2017-08-25 20:18:03 1134

原创 HDU6168-Numbers(离散|哈希)

NumbersTime Limit: 4000/2000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 603 Accepted Submission(s): 318Problem Description zk has n numbers a1,a2,…,an. Fo

2017-08-23 14:35:25 205

原创 HDU6162-Ch’s gift((离线+树链剖分)或(在线+树上主席树))

Ch’s giftTime Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 693 Accepted Submission(s): 241Problem Description Mr. Cui is working off-campus a

2017-08-23 11:51:19 439

原创 CodeForces - 572A Arrays(贪心)

A. Arrays time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output You are given two arrays A and B consisting of integers, sorted in non-decreas

2017-08-16 15:06:24 278

原创 CodeForces - 551C GukiZ hates Boxes(二分)

C. GukiZ hates Boxes time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output Professor GukiZ is concerned about making his way to school, because

2017-08-16 15:03:16 159

原创 HDU-3333-Turing Tree(离线+哈希+树状数组|线段树)

Turing TreeTime Limit: 6000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 5508 Accepted Submission(s): 1967Problem Description After inventing Turing Tree

2017-08-16 15:00:04 226

原创 ACdream - 1417Numbers(贪心构造)

Numbers Time Limit: 2000/1000MS (Java/Others) Memory Limit: 128000/64000KB (Java/Others) Submit Statistic Next Problem Problem Description Consider numbers from 1 to n. You have to find the small

2017-08-16 14:52:51 190

原创 HDU - 2492Ping pong(树状数组|权值线段树)

Ping pongTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 5424 Accepted Submission(s): 2020Problem Description N(3<=N<=20000) ping pong play

2017-08-16 14:47:39 306

原创 HihoCoder - 1546集合计数(计数)

1546 : 集合计数时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 给定一个包含N个整数的集合S={A1, A2, … AN},以及一个给定的整数K,请计算有多少个S的子集满足其中的最大值与最小值的和小于等于K。例如对于S={4, 2, 5, 8}以及K=7,满足的条件的子集有以下4个:{2}, {2, 4}, {2, 5}, {2, 4, 5}。输入 第一

2017-08-16 14:44:30 258

原创 HDU1166:敌兵布阵(线段树单点修改)

Problem Description C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了。A国在海岸线沿直线布置了N个工兵营地,Derek和Tidy的任务就是要监视这些工兵营地的活动情况。由于采取了某种先进的监测手段,所以每个工兵营地的人数C国都掌握的一清二楚,每个工兵营地的人数都有可能发生变动,可能增加或减少若干人手,但这些都逃不过C国的监视。

2017-08-15 17:37:08 147

原创 POJ-2528Mayor's posters(离散+线段树区间覆盖)

Mayor’s posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 67536 Accepted: 19511 DescriptionThe citizens of Bytetown, AB, could not stand that the candidates in the mayor

2017-08-15 17:32:10 129

原创 POJ-3468A Simple Problem with Integers(线段树区间修改)

A Simple Problem with Integers Time Limit: 5000MS Memory Limit: 131072K Total Submissions: 116429 Accepted: 36174 Case Time Limit: 2000MS DescriptionYou have N integers, A1, A2, … , AN.

2017-08-15 17:24:43 143

原创 HDU5775-Bubble Sort(逆序对)

Bubble SortTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 1542 Accepted Submission(s): 811Problem Description P is a permutation of the in

2017-08-14 13:58:13 170

原创 HDU2852-KiKi's K-Number(树状数组+二分|权值线段树)

KiKi’s K-NumberTime Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 4163 Accepted Submission(s): 1878Problem Description For the k-th number, we

2017-08-14 13:54:02 293

原创 hihocoder1336-Matrix Sum(二维树状数组)

1336 : Matrix Sum时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 You are given an N × N matrix. At the beginning every element is 0. Write a program supporting 2 operations:Add x y value: Add value to the

2017-08-14 13:47:41 205

原创 51Nod-1711平均数(二分+树状数组|线段树)

1711 平均数 基准时间限制:4 秒 空间限制:131072 KB 分值: 80 难度:5级算法题 LYK有一个长度为n的序列a。 他最近在研究平均数。 他甚至想知道所有区间的平均数,但是区间数目实在太多了。 为了方便起见,你只要告诉他所有区间(n*(n+1)/2个区间)中第k大的平均数就行了。 Input 第一行两个数n,k(1<=n<=100000,1<=k<=n*(n+1)/2

2017-08-14 13:44:03 341

原创 51Nod - 1107 斜率小于0的连线数量(逆序对)

1107 斜率小于0的连线数量 基准时间限制:1 秒 空间限制:131072 KB 分值: 40 难度:4级算法题 二维平面上N个点之间共有C(n,2)条连线。求这C(n,2)条线中斜率小于0的线的数量。 二维平面上的一个点,根据对应的X Y坐标可以表示为(X,Y)。例如:(2,3) (3,4) (1,5) (4,6),其中(1,5)同(2,3)(3,4)的连线斜率 < 0,因此斜率小于0的连

2017-08-14 13:36:45 265

原创 CSUOJ-1770按钮控制彩灯实验(区间覆盖)

1770: 按钮控制彩灯实验 Submit Page Summary Time Limit: 1 Sec Memory Limit: 128 Mb Submitted: 295 Solved: 106 Description 应教学安排,yy又去开心的做电学实验了。实验的内容分外的简单一串按钮通过编程了的EEPROM可以控制一串彩灯。然而选择了最low的

2017-08-14 13:30:21 375

原创 POJ-2352Stars(BIT|归并排序求逆序对)

Stars Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 48588 Accepted: 20999 DescriptionAstronomers often examine star maps where stars are represented by points on a plane and

2017-08-14 13:23:46 221

原创 POJ-2299Ultra-QuickSort(BIT|归并排序求逆序对)

Ultra-QuickSort Time Limit: 7000MS Memory Limit: 65536K Total Submissions: 62659 Accepted: 23342 DescriptionIn this problem, you have to analyze a particular sorting algorithm. The algor

2017-08-14 13:20:05 132

原创 UVA 10652 Board Wrapping(凸包+向量旋转)

UVA 10652 Board Wrapping(凸包) The small sawmill in Mission, British Columbia, has developed a brand new way of packaging boards for drying. By fixating the boards in special moulds, the board can dry

2017-08-13 19:18:52 165

原创 POJ-1654Area(求多边形面积)

Area Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 20510 Accepted: 5594 DescriptionYou are going to compute the area of a special kind of polygon. One vertex of the polygon

2017-08-13 19:10:40 242

原创 POJ-1066Treasure Hunt(计算几何线段相交)

Treasure Hunt Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 7319 Accepted: 3024 DescriptionArcheologists from the Antiquities and Curios Museum (ACM) have flown to Egypt to exa

2017-08-13 19:06:17 252

原创 HDU6092-Rikka with Subset(背包)

Rikka with SubsetTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 1540 Accepted Submission(s): 779Problem Description As we know, Rikka is p

2017-08-12 13:20:42 222

原创 CSUOJ-1980: 不堪重负的树(区间DP)

1980: 不堪重负的树 Submit Page Summary Time Limit: 1 Sec Memory Limit: 128 Mb Submitted: 8 Solved: 2 Description 小X非常喜欢树,然后他生成了一个大森林给自己玩。 玩着玩着,小X陷入了沉思。一棵树由N个节点组成,编号为i的节点有一个价值Wi。 假设从树

2017-08-12 13:12:36 322

原创 CSUOJ-1978: LXX的图论题(Flyod)

1978: LXX的图论题 Submit Page Summary Time Limit: 1 Sec Memory Limit: 128 Mb Submitted: 3 Solved: 2 Description 由于lxx的图论和数据结构太弱了,大佬Z决定为lxx补一补。于是大佬Z为lxx出了一道题目,题目如下:给出一张有向图,图中有n个点,m条边,

2017-08-12 13:06:19 254

原创 1977: Bit-reversal Permutation(递归)

1977: Bit-reversal Permutation Submit Page Summary Time Limit: 1 Sec Memory Limit: 128 Mb Submitted: 7 Solved: 3 Description A fast Fourier transform (FFT) algorithm computes the

2017-08-12 13:01:37 734

原创 CSUOJ-1976: 搬运工小明(二分)

1976: 搬运工小明 Submit Page Summary Time Limit: 2 Sec Memory Limit: 128 Mb Submitted: 3 Solved: 2 Description 作为老人的小明非常忧伤,因为他马上要被流放到本部去了,住进全左家垅最有历史感的11舍真是一件非常荣幸的事情。 搬行李是个体力活,小明发现自己的

2017-08-12 12:58:01 351

原创 CodeForces - 702C Cellular Network(二分)

C. Cellular Network time limit per test3 seconds memory limit per test256 megabytes inputstandard input outputstandard output You are given n points on the straight line — the positions (x-coordin

2017-08-09 13:08:13 253

空空如也

空空如也

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

TA关注的人

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