Source code for crslab.model.crs.tgredial.tg_policy

# @Time   : 2020/12/9
# @Author : Yuanhang Zhou
# @Email  : sdzyh002@gmail.com

# UPDATE:
# @Time   : 2021/1/7, 2020/12/15, 2021/1/4
# @Author : Xiaolei Wang, Yuanhang Zhou, Yuanhang Zhou
# @Email  : wxl1999@foxmail.com, sdzyh002@gmail, sdzyh002@gmail.com

r"""
TGReDial_Policy
===============
References:
    Zhou, Kun, et al. `"Towards Topic-Guided Conversational Recommender System."`_ in COLING 2020.

.. _`"Towards Topic-Guided Conversational Recommender System."`:
   https://www.aclweb.org/anthology/2020.coling-main.365/

"""

import os

import torch
from torch import nn
from transformers import BertModel

from crslab.config import PRETRAIN_PATH
from crslab.data import dataset_language_map
from crslab.model.base import BaseModel
from crslab.model.pretrained_models import resources


[docs]class TGPolicyModel(BaseModel): def __init__(self, opt, device, vocab, side_data): """ Args: opt (dict): A dictionary record the hyper parameters. device (torch.device): A variable indicating which device to place the data and model. vocab (dict): A dictionary record the vocabulary information. side_data (dict): A dictionary record the side data. """ self.topic_class_num = vocab['n_topic'] self.n_sent = opt.get('n_sent', 10) language = dataset_language_map[opt['dataset']] resource = resources['bert'][language] dpath = os.path.join(PRETRAIN_PATH, "bert", language) super(TGPolicyModel, self).__init__(opt, device, dpath, resource)
[docs] def build_model(self, *args, **kwargs): """build model""" self.context_bert = BertModel.from_pretrained(self.dpath) self.topic_bert = BertModel.from_pretrained(self.dpath) self.profile_bert = BertModel.from_pretrained(self.dpath) self.bert_hidden_size = self.context_bert.config.hidden_size self.state2topic_id = nn.Linear(self.bert_hidden_size * 3, self.topic_class_num) self.loss = nn.CrossEntropyLoss()
[docs] def forward(self, batch, mode): # conv_id, message_id, context, context_mask, topic_path_kw, tp_mask, user_profile, profile_mask, y = batch context, context_mask, topic_path_kw, tp_mask, user_profile, profile_mask, y = batch context_rep = self.context_bert( context, context_mask).pooler_output # (bs, hidden_size) topic_rep = self.topic_bert( topic_path_kw, tp_mask).pooler_output # (bs, hidden_size) bs = user_profile.shape[0] // self.n_sent profile_rep = self.profile_bert(user_profile, profile_mask).pooler_output # (bs, word_num, hidden) profile_rep = profile_rep.view(bs, self.n_sent, -1) profile_rep = torch.mean(profile_rep, dim=1) # (bs, hidden) state_rep = torch.cat((context_rep, topic_rep, profile_rep), dim=1) # [bs, hidden_size*3] topic_scores = self.state2topic_id(state_rep) topic_loss = self.loss(topic_scores, y) return topic_loss, topic_scores