上传者: 38601364
|
上传时间: 2022-02-13 10:47:07
|
文件大小: 81KB
|
文件类型: -
本文实例为大家分享了python3实现基于用户协同过滤的具体代码,供大家参考,具体内容如下
废话不多说,直接看代码。
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#20170916号协同过滤电影推荐基稿
#字典等格式数据处理及直接写入文件
##from numpy import *
import time
from math import sqrt
##from texttable import Texttable
class CF:
def __init__(self, movies, ratings, k=5, n=20):
self