Source code for recbole.model.context_aware_recommender.fm

# -*- coding: utf-8 -*-
# @Time   : 2020/7/8 10:09
# @Author : Shanlei Mu
# @Email  : slmu@ruc.edu.cn
# @File   : fm.py

# UPDATE:
# @Time   : 2020/8/13,
# @Author : Zihan Lin
# @Email  : linzihan.super@foxmain.com

r"""
FM
################################################
Reference:
    Steffen Rendle et al. "Factorization Machines." in ICDM 2010.
"""

import torch.nn as nn
from torch.nn.init import xavier_normal_

from recbole.model.abstract_recommender import ContextRecommender
from recbole.model.layers import BaseFactorizationMachine


[docs]class FM(ContextRecommender): """Factorization Machine considers the second-order interaction with features to predict the final score.""" def __init__(self, config, dataset): super(FM, self).__init__(config, dataset) # define layers and loss self.fm = BaseFactorizationMachine(reduce_sum=True) self.sigmoid = nn.Sigmoid() self.loss = nn.BCEWithLogitsLoss() # parameters initialization self.apply(self._init_weights) def _init_weights(self, module): if isinstance(module, nn.Embedding): xavier_normal_(module.weight.data)
[docs] def forward(self, interaction): fm_all_embeddings = self.concat_embed_input_fields( interaction ) # [batch_size, num_field, embed_dim] y = self.first_order_linear(interaction) + self.fm(fm_all_embeddings) return y.squeeze(-1)
[docs] def calculate_loss(self, interaction): label = interaction[self.LABEL] output = self.forward(interaction) return self.loss(output, label)
[docs] def predict(self, interaction): return self.sigmoid(self.forward(interaction))