自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

欢迎来到小丁的技术空间

小丁目前研二,研究方向为推荐系统,该博客主要记录平时写代码,学习遇到的一些问题的总结,欢迎一起交流

  • 博客(17)
  • 资源 (5)
  • 收藏
  • 关注

原创 【工具使用】设置Spyder的缓冲区域大小

每次想要看完整的输出内容,而sypder的输出框不能够完全显示出来,所以可以设置它的缓冲区域大小设置上面这个地方,然后重启运行就OK

2019-09-30 11:56:04 1692

原创 【代码问题集锦】服务器运行代码出现ModuleNotFoundError: No module named 'Utility'

代码在本地的IDE上运行没有出错,但是在服务器端出现了ModuleNotFoundError: No module named 'Utility’错误,后来发现原因是因为我的代码里面引入了其他文件的包,是import那个语句出现错误。错误的原因是因为路径的原因,服务器端的路径和我们本地的路径不一样显示,所以解决这个问题,可以在自己代码的顶端加入以下代码import sysimport os...

2019-09-30 11:53:56 2903

原创 【代码问题集锦】UnicodeDecodeError: 'utf-8' codec can't decode bytes in position 0-1: invalid continuati

我代码里面出现这个问题的原因是,我读取的文件不是utf-8编码格式,后来我用notepad++打开,在编码格式里面把这个文件的格式改成utf-8之后就好了

2019-09-30 11:50:40 4342

原创 【论文阅读】Slim: Sparse linear methods for top-n recommender systems

Ning X, Karypis G. Slim: Sparse linear methods for top-n recommender systems[C]//2011 IEEE 11th International Conference on Data Mining. IEEE, 2011: 497-506.这一篇论文是2011年发表在ICDM上的一篇工作。论文的提出主要是为了提升推荐的...

2019-09-24 16:11:53 1161

原创 【论文阅读】 Leveraging Distrust Relations to Improve Bayesian Personalized Ranking

Xu, Y.; Xu, K.; Cai, Y.; Min, H. Leveraging Distrust Relations to Improve Bayesian Personalized Ranking. Information 2018, 9, 191.这一篇工作同样是在BPR算法上的改进,在以往的算法中往往都只考虑了利用信任信息,比如前一篇文章BPRDR,而没有人利用过用户之间的不信...

2019-09-24 16:11:03 288 2

原创 【论文阅读】Improving Item Ranking by Leveraging Dual Roles Influence

Xu K, Xu Y, Min H, et al. Improving Item Ranking by Leveraging Dual Roles Influence[J]. IEEE Access, 2018, 6: 57434-57446.这一篇工作是实验室老师在2018年发表的,作者把信任网络加入到了BPR猜想中,因为作者认为用户选择某一个物品不仅仅会受自己信任的人所影响,也会受自己不...

2019-09-24 16:10:09 211

原创 【论文阅读】Leveraging Social Connections to Improve Personalized Ranking for Collaborative Filtering

Zhao T, Mcauley J, King I, et al. Leveraging Social Connections to Improve Personalized Ranking for Collaborative Filtering[C]. conference on information and knowledge management, 2014: 261-270.这篇论...

2019-09-24 16:09:20 585 1

原创 【论文阅读】BPR: Bayesian personalized ranking from implicit feedback

Rendle S, Freudenthaler C, Gantner Z, et al. BPR: Bayesian personalized ranking from implicit feedback[C]//Proceedings of the twenty-fifth conference on uncertainty in artificial intelligence. AUAI Pr...

2019-09-24 16:07:41 1146

原创 【论文阅读】Top-N Trustee Recommendation with Binary User Trust Feedback

Xu K, Cai Y, Min H, et al. Top-N Trustee Recommendation with Binary User Trust Feedback[C]//International Conference on Database Systems for Advanced Applications. Springer, Cham, 2018: 269-279.在信任...

2019-09-24 16:06:57 154

原创 【论文阅读】Improving user recommendation by extracting social topics and interest topics of users in uni-

Xu K, Zheng X, Cai Y, et al. Improving user recommendation by extracting social topics and interest topics of users in uni-directional social networks[J]. Knowledge-Based Systems, 2018, 140: 120-133....

2019-09-24 16:06:09 241 2

原创 【论文阅读】Community-based user recommendation in uni-directional social networks

Zhao G, Lee M L, Hsu W, et al. Community-based user recommendation in uni-directional social networks[C]//Proceedings of the 22nd ACM international conference on Information & Knowledge Management...

2019-09-24 16:05:12 339

原创 【论文阅读】Collaborative filtering for implicit feedback datasets

Hu Y, Koren Y, Volinsky C. Collaborative filtering for implicit feedback datasets[C]//2008 Eighth IEEE International Conference on Data Mining. Ieee, 2008: 263-272.IF-MF这篇工作也是一篇非常经典的工作,是上一篇论文的同一个作者...

2019-09-24 16:04:01 375

原创 【论文阅读】Matrix factorization techniques for recommender systems

Koren Y, Bell R, Volinsky C. Matrix factorization techniques for recommender systems[J]. Computer, 2009 (8): 30-37.这一篇文章是关于矩阵分解的一篇很经典的文章,发表在2009年,MF的提出是为了缓解用户物品矩阵的数据稀疏性以及为了提升推荐的准确性。该方法把用户物品评分矩阵拆解成...

2019-09-24 16:00:39 1505 1

原创 【论文阅读】UIS-LDA: a user recommendation based on social connections and interests of users in uni-direc

Xu K, Cai Y, Min H, et al. UIS-LDA: a user recommendation based on social connections and interests of users in uni-directional social networks[C]//Proceedings of the International Conference on Web I...

2019-09-24 15:44:09 246

原创 【论文阅读】Social-network analysis using topic models

Cha Y, Cho J. Social-network analysis using topic models[C]//Proceedings of the 35th international ACM SIGIR conference on Research and development in information retrieval. ACM, 2012: 565-574.这是20...

2019-09-24 15:42:51 483 1

原创 【论文阅读】使用LDA进行用户推荐

Blei D M, Ng A Y, Jordan M I. Latent dirichlet allocation[J]. Journal of machine Learning research, 2003, 3(Jan): 993-1022.Latent dirichlet allocation 是发表于2003年的一篇非常经典的工作,该方法名称可以简写为LDA,当然我这里看这一篇论文不...

2019-09-24 15:41:13 934

原创 【论文阅读】最近看的一些关于推荐系统的论文(共13篇)

写在前面下面是我最近看的一些论文,论文主要是关于:1、利用LDA进行社交网络的用户推荐;2、BPR的一些改进算法;3、MF的一些改进算法每一篇论文都用一页PPT来进行总结,总结的很简单,所以在每一页PPT下面加上了想表达的备注。(本来是准备和导师讲的,但是导师没空,所以想说还是把内容总结出来吧,不然过段时间就忘了~)完整的PPT可以在文末找到下载链接~P1这一页是目录,是我下面要...

2019-09-07 12:19:39 7938

最近看的关于推荐系统方面的论文小结.pptx

最近看的关于推荐系统方面的论文,共14篇。

2019-09-07

reuters.pkl

reuters.pkl

2019-08-04

推荐系统实践

项亮的《推荐系统实践》~

2018-11-14

哈夫曼树课程设计

有学弟来要我去年做的课程设计,所以把东西整理好了,也给大家参考参考。

2016-12-23

蓝桥杯试题及测试

2016-12-04

空空如也

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

TA关注的人

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