# Recommender **Repository Path**: wyx0100/Recommender ## Basic Information - **Project Name**: Recommender - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2019-12-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Recommender 运行环境配置: ```shell pip install -r requirements.txt ``` 运行项目代码: ```shell python ./Item-based_recommender/run.py ``` 输出 - customer_order [list]:程序模拟用户点单的菜品 ID 列表 - prediction_order [list]:算法推荐的套餐菜品 ID 列表 - Rate of coverage [float]:覆盖率 - Profit gap [float]:利润提升额 项目开发环境是 Visual studio 2019. 如何封装调用: - 封装 run.py 的 main 函数。传参为:用餐人数、用户 ID(手机号),分别对应 run.py 中的 customer_num 和 phone_number。 - 利润比值 alpha 参数对应的是 recommend.py 中的 profit_rate,默认取值 0.5。