magicpieh28 / Paper-Summary

1 stars 0 forks source link

Document-level Multi-aspect Sentiment Classification by Jointly Modeling Users, Aspects, and Overall Ratings(2018) #22

Open magicpieh28 opened 5 years ago

magicpieh28 commented 5 years ago

about this paper

Author: Junjie Li, Haitong Yang, Chengqing Zong Link: https://www.aclweb.org/anthology/C18-1079

各aspectに対しての各ユーザーのスコアを予測するタスク。 従来の研究はテキストの内容にのみフォーカスを当ててるけど、ユーザー・レビュースコア・アスペクト・レビューテキスト全体を重んじて、モデル(Hierarchical User Aspect Rating Network; HUARN)で処理する手法を提案。

aim

problem

従来のマルチタスク学習(Caruana, 1997; Collobert et al., 2011; Luong et al., 2016)は一つのレビュー(ドキュメント)に置いてそれぞれのaspectの違いが掴めなかった。

model

image

r = overall rating embedding u = user embedding a1, a2, ... , am = aspect embedding s = sentence representation d = review representation

パラメタは共有するけど、異なるsoftmaxを用いてマルチタスク学習を行う。

experiments

datasets

Yin et al (2017) が作ったTripDMSデータセットと、ユーザー・評価点などの情報を補充し新たに著者らが作ったTripOURデータセットを用いる。 image

setting

ユーザー一貫性は以下の式で計算する。 imageimage H_0 : v_s = v_r significance level α=0.01

results

image

code

https://github.com/Junjieli0704/HUARN

next