# easyrec-code **Repository Path**: githubsync/easyrec-code ## Basic Information - **Project Name**: easyrec-code - **Description**: 基于最新的代码 https://sourceforge.net/p/easyrec/code/ci/master/tree/ git clone https://git.code.sf.net/p/easyrec/code easyrec-code - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2019-02-22 - **Last Updated**: 2022-07-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 推荐系统 easyrec https://sourceforge.net/p/easyrec/wiki/Home/ # 安装教程 https://sourceforge.net/p/easyrec/wiki/Installation%20Guide/ js API https://sourceforge.net/p/easyrec/wiki/API/ create database easyrec; grant index, create, select, insert, update, drop, delete, alter, lock tables on easyrec.* to 'easyrecuser'@'localhost' identified by 'password'; ### 1.0.2版本 create database easyrec102; grant index, create, select, insert, update, drop, delete, alter, lock tables on easyrec102.* to 'easyrecuser'@'localhost' identified by 'password'; mvn clean package -DskipTests 部署web war到tomcat http://localhost:8081/easyrec-web http://localhost:8081/easyrec-web-1.0.2 设置数据库连接方式 #see 数据字典介绍 1. https://blog.csdn.net/ksgt00016758/article/details/25249629 # 算法 ### slope one Slope One 算法是由 Daniel Lemire 教授在 2005 年提出的一个Item-Based 的协同过滤推荐算法。 和其它类似算法相比, 它的最大优点在于算法很简单, 易于实现, 执行效率高, 同时推荐的准确性相对较高。 https://blog.csdn.net/xidianliutingting/article/details/51916578 https://www.cnblogs.com/huangxincheng/archive/2012/11/22/2782647.html ### Apriori算法 ARM Association Rule Miner 关联规则挖掘器 主要用于购物车分析,查看用户 买了 看了的商品X 同时也买了和看了 商品Y. 这个算法试图标识这样的成对关联,他们明显的经常出现在不同的用户的购物车,经典的 尿不湿和啤酒的配对 通过对这些购物车(指定用户)不同的操作历史 去分析用户 https://sourceforge.net/p/easyrec/wiki/ARM/