摘要:
最近看了一篇协同过滤的文章"A Guide to Singular Value Decomp osition forCollaborative Filtering",主要为协同过滤设计了一种有效的svd算法,V是偏好分数矩阵,I{i,j}=1代表用户i对item j 有偏好,否则为I{i, j}=0... 阅读全文
摘要:
def permutate(s): if not s: return [s] r = [] for i in range(len(s)): for m in permutate(s[:i] + s[i+1:]): r.append(s[i:i+1] + m) return r 阅读全文