Dear Prof.Choi:

My research interest is mainly the application and optimization of big data and artificial intelligence technology in recommendation system. Recommendation system is a subclass of information filtering system, which presents items that users may be interested in according to their preferences and behaviors. The recommendation system tries to predict what you like about an item, thus recommending an item that you are likely to like.

In March 1995, Robert mstrong et al. from Carnegie Mellon university proposed the personalized navigation system Web Watcher at the American association for artificial intelligence, and MarkoBalabanovic et al. from Stanford university launched the personalized recommendation system LIRA at the same conference. After more than 20 years of rapid development, it has now realized the personalized recommendation of information and products that users are interested in to users based on their information needs and interests.

Recommendation system mainly has three important modules: User modeling module, recommendation object modeling module and recommendation algorithm module.The recommendation system matches the information of interest demand in the user model with the feature information in the recommendation object model, and at the same time uses the corresponding recommendation algorithm to carry out calculation and screening,find the recommendation object that the user may be interested. And through the following five recommendation methods: (1) content based recommendation (2) collaborative filtering recommendation (3) association rules based recommendation (4) utility based recommendation (5) knowledge based recommendation, to present the items that users may be interested in.

The results of the existing recommendation system have low computational credibility and insufficient interpretability, making it difficult to convince users. The system processing object complexity is high, scalability is not good. When the number of new users increases, the recommendation record will be inaccurate. It brings a lot of inconvenience to our life experience. I plan to add hybrid recommendation methods to the existing recommendation system to make up for the shortcomings of each algorithm. The hybrid approach I plan to use is as follows:

(1)   Weighted fusion: the results calculated by multiple recommendation technologies are Weighted and blended to generate recommendations.

(2)   Switch: different recommended technologies are adopted according to the background of the problem and the actual situation.

(3)   Mix: Mix the results recommended by various recommendation algorithms together, and the difficulty is how to reorder them.

(4)   Feature Combination: combine features from different recommendation data sources and use another recommendation technique.

(5)   Cascade: use the latter recommendation method to optimize the former one.

(6)   Feature Augmentation: the output of the former recommendation method serves as the input of the latter, and it differs from the cascade type in that it produces, instead of direct recommendation results, certain features of the recommendation of the following level.

(7)   Meta-level hybrid: it deeply integrates different recommendation models at the model level, rather than just taking one output as the input of another.

Through the study and research of the above mixed recommendation methods, the existing recommendation system will be made more intelligent and more humanized. At the same time, I will actively learn English, improve their English listening, speaking, reading, writing level, and use the fastest time to adapt to the learning environment. I hope professor Choi can give me a chance to learn. I will actively publish the same paper as my research plan and actively cooperate with team members in the team.

I hope professor Choi can give me an opportunity to study in your laboratory.

Yours Chen Fei

Recommendation system的更多相关文章

  1. 海量数据挖掘MMDS week4: 推荐系统Recommendation System

    http://blog.csdn.net/pipisorry/article/details/49205589 海量数据挖掘Mining Massive Datasets(MMDs) -Jure Le ...

  2. PAT1129:Recommendation System

    1129. Recommendation System (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue ...

  3. A1129. Recommendation System

    Recommendation system predicts the preference that a user would give to an item. Now you are asked t ...

  4. PAT A1129 Recommendation System (25 分)——set,结构体重载小于号

    Recommendation system predicts the preference that a user would give to an item. Now you are asked t ...

  5. 1129 Recommendation System

    1129 Recommendation System (25 分) Recommendation system predicts the preference that a user would gi ...

  6. PAT甲级 1129. Recommendation System (25)

    1129. Recommendation System (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue ...

  7. PAT 1129 Recommendation System[比较]

    1129 Recommendation System(25 分) Recommendation system predicts the preference that a user would giv ...

  8. PAT 甲级 1129 Recommendation System

    https://pintia.cn/problem-sets/994805342720868352/problems/994805348471259136 Recommendation system ...

  9. 1129 Recommendation System (25 分)

    Recommendation system predicts the preference that a user would give to an item. Now you are asked t ...

  10. PAT 1129 Recommendation System

    Recommendation system predicts the preference that a user would give to an item. Now you are asked t ...

随机推荐

  1. JS模拟CSS3动画-贝塞尔曲线

    一.什么是贝塞尔曲线 1962年,法国工程师皮埃尔·贝塞尔(Pierre Bézier),贝塞尔曲线来为为解决汽车的主体的设计问题而发明了贝塞尔曲线.如今,贝赛尔曲线是计算机图形学中相当重要的一种曲线 ...

  2. CAD与用户互在图面上得到一个矩形框(com接口VB语言)

    主要用到函数说明: MxDrawXCustomFunction::ExApp_CutDwg 与用户互在图面上得到一个矩形框,详细说明如下: 参数 说明 IN DOUBLE dX1 保存范围的左下角位置 ...

  3. java_IO_2

    1.字节流  InputStream(抽象类) package ioStudy; import java.io.File; import java.io.FileInputStream; import ...

  4. jenkins自动部署测试环境

    构建脚本如下: echo "当前目录":$(pwd)echo "当前时间":$(date +%Y-%m-%d_%H:%M)find ./ -type f -na ...

  5. linux shell脚本学习笔记一

    一.文件比较运算符-e filename 如果 filename存在,则为真 [ -e /var/log/syslog ]-d filename 如果 filename为目录,则为真 [ -d /tm ...

  6. jquery 时间戳转日期

    搜了一下发现这个时间戳转时间的代码很好用,附上实践的代码 结果如下 / * * 时间戳转日期 * @param timestamp * @returns {*} */ function timesta ...

  7. <MyBatis>入门七 缓存机制

    缓存机制 MyBatis包含强大的查询缓存特性,它可以非常方便的定制和配置.缓存可以极大的提升查询效率. MyBatis默认定义了两级缓存:一级缓存和二级缓存 1.默认情况下,只有一级缓存(sqlSe ...

  8. Python学习-while循环语句

    Python 编程中 while 语句用于循环执行程序,即在某条件下,循环执行某段程序,以处理需要重复处理的相同任务.即重复性的做一件事情 语法形式如下: while 判断条件: 条件满足执行语句…… ...

  9. WebStorm 格式化代码快捷键

    原文链接:https://kaifazhinan.com/webstorm-formatting-code-shortcuts/ 现在平时都是使用 VS Code 作为日常开发工具,偶尔会打开 Web ...

  10. 洛谷 3959 宝藏 NOIP2017提高组Day2 T2

    [题解] 状压DP. f[i]表示现在的点是否连接的状态是i. #include<cstdio> #include<cstring> #include<algorithm ...