创新实训八

逻辑回归(LR)
我们设计的酒店推荐系统在初阶段,数据量和特征量都比较少,所以我考虑采用LR模型
LR模型的优点:可以通过模型的权重大小,解释权重的重要性;同时LR支持增量更新

拟合一个包含距离、评分、评论数和价格四个无交互效应的特征的Logistic回归模型:
ln(p/(1-p) = β0 +β1 距离+β2* 评分+β3* 评论数+β4价格

import numpy as np
import matplotlib.pyplot as plt
from dataProcessing import *
import math
'''
由于初始数据量较少,故使用逻辑回归模型对用户的点击情况进行反馈从而拟合用户的喜好
逻辑回归中y为定性变量,故y=0或1
1为点击,0为未点击
训练矩阵为:
x[ x1 x2 x3 x4],分别代表距离,评分,评论,价格,共m行
y[ y1 y2 y3 y3]
theta[ theta1 theta2 theta3 theta4]
构造预测函数为h(xi)=g(theta xi)=1/(1+e(-theta xi))
损失函数为J(theta)=-(1/m)l(theta)
训练结束之后将权重矩阵存储起来,以供查询时使用
'''

#预测函数
#输入下一次搜索得到的的数据矩阵x和已经训练出的权重矩阵,计算出可能被用户点击的概率
#矩阵x的形式为[距离,评分,评论,价格]
def prediction(x,theta):
   #输出矩阵形式:[距离,评分,评论,价格,综合评分]
   #构造输出矩阵
   outlist = [[0 for i in range(5)] for i in range(len(x))]
   for i in range(len(x)):
      for j in range(4):
         outlist[i][j]=x[i][j]
      #计算出theta*xi
      temp1=x[i][0]*theta[0]+x[i][1]*theta[1]+x[i][2]*theta[2]+x[i][3]*theta[3]
      temp2=1+math.exp(-temp1)
      outlist[i][4]=1/temp2
   return outlist

#损失函数
def loss(h,y):
   m=len(h)
   temp1=0
   for i in range(m):
      temp1=temp1+y[i]*np.log(h[i])
   temp2=0
   for i in range(m):
      for j in range(len(h)):
         for k in range(4):
            h[j][k]=1-h[j][k]
      temp2=temp2+(1-y[i])*np.log(h[i])
   loss=-(temp1+temp2)/m
   return loss

#参数梯度
def gradient(x,h,y):
   m=len(h)
   temp=[]
   for j in range(4):
      temp.append(0)
      for i in range(m):
         temp[j]=temp[j]+(h[i]-y[i])*x[i][j]
      temp[j]=temp[j]/m
   return temp

def LR(x,y):
   #初始theta矩阵为零矩阵
   theta=[0,0,0,0]
   alpha=1
   i=1000   #迭代次数
   loss_array=[]
   for _ in range(i):
      h=prediction(x,theta)
      loss_=loss(theta,h,y)
      gradient_=gradient(x,h,y)
      theta=theta-np.multiply(gradient_,alpha)
      loss_array.append(loss_)
   #将得到的权重矩阵传出
   #同时将权重存入数据库
   update_weights(theta)
   return theta
   #对下一组酒店数据进行前向预测


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值