设计 任务书 文档 开题 答辩 说明书 格式 模板 外文 翻译 范文 资料 作品 文献 课程 实习 指导 调研 下载 网络教育 计算机 网站 网页 小程序 商城 购物 订餐 电影 安卓 Android Html Html5 SSM SSH Python 爬虫 大数据 管理系统 图书 校园网 考试 选题 网络安全 推荐系统 机械 模具 夹具 自动化 数控 车床 汽车 故障 诊断 电机 建模 机械手 去壳机 千斤顶 变速器 减速器 图纸 电气 变电站 电子 Stm32 单片机 物联网 监控 密码锁 Plc 组态 控制 智能 Matlab 土木 建筑 结构 框架 教学楼 住宅楼 造价 施工 办公楼 给水 排水 桥梁 刚构桥 水利 重力坝 水库 采矿 环境 化工 固废 工厂 视觉传达 室内设计 产品设计 电子商务 物流 盈利 案例 分析 评估 报告 营销 报销 会计
 首 页 机械毕业设计 电子电气毕业设计 计算机毕业设计 土木工程毕业设计 视觉传达毕业设计 理工论文 文科论文 毕设资料 帮助中心 设计流程 
垫片
您现在所在的位置:首页 >>计算机毕业设计 >> 文章内容
                 
垫片
   我们提供全套毕业设计和毕业论文服务,联系微信号:biyezuopin QQ:2922748026   
基于知识图谱的图书智能推荐系统 毕业论文+答辩PPT+项目源码+文献资料
文章来源:www.biyezuopin.vip   发布者:毕业作品网站  

摘  要

推荐系统旨在为用户推荐智能化的在线商品或信息,其广泛应用于众多Web场景之中,来处理海量信息数据所导致的信息过载问题,以此提升用户体验。鉴于推荐系统强大的实用性,自20世纪90年代中期以来,研究者针对其方法与应用两方面,进行了大量广泛的研究.近年来,很多工作发现知识图谱中所蕴含的丰富信息可以有效地解决推荐系统中存在的一系列关键问题,例如数据稀疏、冷启动、推荐多样性等。

近几年随着数字图书馆的高速发展,其数字资源馆藏已实现了海量增长,读者对资源的需求越来越智能化,这些因素推动着图书馆推荐系统应用的普及和深化。知识图谱技术是现今图书馆学的研究热点,据此,对基于知识图谱的图书馆推荐系统进行了研究,并将其与传统的基于ALS的协同过滤算法进行比较.结果显示,基于知识图谱的MKR推荐算法可以取得较好的图书推荐效果,能够助力今后智能化图书馆推荐系统的建设。

本次图书智能推荐系统前端采用Bootstrap框架,后台采用Java的SSM框架和Mysql数据库,将系统分为了三层:Web层、服务与模块层、数据层,并对每层的结构与需要完成的功能做了定义。并建立了图书智能推荐系统所需的数据库,该数据库的数据共分为三个部分:原始数据、清洗后数据和用户数据。设计了图书智能推荐系统的页面,主要包括首页、搜索、展示、登录、注册等页面。经过后期的数据库优化与功能测试,系统与同类网站相比,性能良好。

关键词:知识图谱;个性化;智能化;图书推荐;SSM

Abstract

A recommendation system is designed to recommend intelligent online goods or information for users. It is widely used in many Web scenarios to deal with the information overload caused by massive information data so as to enhance the user experience. In view of the strong practicability of the recommendation system, since the mid-1990s, researchers have carried out a lot of extensive research on its methods and applications. in recent years, many works have found that the rich information contained in the knowledge map can effectively solve a series of key problems existing in the recommendation system, such as data sparsity, cold start, recommendation diversity and so on.

In recent years, with the rapid development of digital library, its digital resource collection has achieved a massive growth, readers' demand for resources is becoming more and more intelligent, these factors promote the popularization and deepening of the application of library recommendation system. According to the research focus of library science, the knowledge map-based library recommendation system is studied and compared with the traditional ALS-based collaborative filtering algorithm. Results show that the MKR recommendation algorithm based on knowledge map can achieve better book recommendation effect and help the construction of intelligent library recommendation system in the future.

The front end of this book intelligent recommendation system adopts Bootstrap framework, and the background adopts Java SSM framework and Mysql database. The system is divided into three layers: Web layer, service and module layer, data layer, and the structure of each layer and the functions to be completed are defined. and the database needed for the book intelligent recommendation system is established. the data of this database is divided into three parts: raw data, data after cleaning and user data. Design the book intelligent recommendation system page, mainly including home page, search, display, login, registration and other pages. After the later database optimization and function test, the system has good performance compared with similar websites.

Keywords: knowledge map; individuation; intelligence; book recommendation; SSM


目  录

摘  要 I

Abstract II

1 引言 1

1.1选题背景及意义 1

1.1选题背景 1

1.2选题意义 2

1.2研究现状 2

1.3 论文研究内容 3

1.4 论文的组织结构 4

2 关键技术介绍 5

2.1推荐技术 5

2.2知识图谱 5

2.3 Web开后端技术 6

2.3.1 Maven介绍 6

2.3.2 MVC模式与Spring Framework框架 7

2.3.3 MyBatis介绍 11

2.3.4 Bootstrap介绍 12

2.3.5 Mysql 13

2.4 小结 13

3 基于知识图谱的图书智能推荐系统设计 14

3.1 系统总体设计 14

3.1.1 总体功能描述 14

3.1.2 系统模块组成 14

3.2 模块详细设计 16

3.2.1 数据库设计 16

3.2.2 页面原型设计 21

3.3 小结 22

4 基于知识图谱的图书智能推荐系统实现 23

4.1 环境的搭建 23

4.1.1 数据库的建立与数据的导入 23

4.1.2 工程建立 23

4.1.3 版本控制 25

4.1.4 MyBatis配置 25

4.2 数据的清洗 26

4.3 系统开发 28

4.3.1 控制器类 28

4.3.2 模块类 30

4.3.3 视图类 31

4.4 分析及调优 32

4.6 小结 34

5 系统测试 35

5.1 软件测试的目的和原则 35

5.2 性能测试 36

结  论 38

参考文献 39

致  谢 41

















  全套毕业设计论文现成成品资料请咨询微信号:biyezuopin QQ:2922748026     返回首页 如转载请注明来源于www.biyezuopin.vip  

                 

打印本页 | 关闭窗口
本类最新文章
基于JSP+SSM的物流快递管理 基于JSP+SSM+MySQL的 基于JSP+SSM的图书借阅管理
基于JSP+SSH的网上宠物交易 基于VUE+SSM+MySQL的 基于Cisco Packet T
| 关于我们 | 友情链接 | 毕业设计招聘 |

Email:biyeshejiba@163.com 微信号:biyezuopin QQ:2922748026  
本站毕业设计毕业论文资料均属原创者所有,仅供学习交流之用,请勿转载并做其他非法用途.如有侵犯您的版权有损您的利益,请联系我们会立即改正或删除有关内容!