• 検索結果がありません。

Model

ドキュメント内 東北大学機関リポジトリTOUR (ページ 105-108)

4.4.1 Partially Labeled and Supervised Topic Model

Below, we define the partially labeled supervised LDA (PLS-LDA) model, which combines the labeled topic and supervised topic models.

First, we show how to determine the labeled topics using labeled words. Af-ter removing unnecessary words, we consider the total vocabulary, which included all words in customer reviews as text content. To make the topics interpretable, some representative words are selected from the total vocabulary of each topic, as discussed in the previous section; we call these wordslabeled wordsas follows. Si-multaneously, the remaining words with no predefined labels are callednonlabeled wordsand assigned to topics according to a specific distribution.

To develop the specific vocabulary of the topickfrom the total vocabulary avail-able, we employ a methodology from the existing literature such as labeled LDA (Ramage et al., 2009) or joint-sentiment LDA (Lin et al., 2012; Tirunillai and Tellis, 2014). We first generate the topic’stransformation matrix Λ(k) (Vk×V), conditional onλ1,λ2, . . . ,λVk, whereλi,i = 1, . . . ,Vk, is the sequence of the number of labeled words for topickand nonlabeled words,Vk andVrepresent the number of labeled words and nonlabeled words for topickand the number of total vocabulary in the dataset, respectively. For each rowi ∈ {1, 2, . . . ,Vk}and column j ∈ {1, 2, . . . ,V}, we set

Λ(ijk)=





1 ifλi =j 0 otherwise

(4.1)

In this model, the topic-vocabulary vector φk, called the word distribution, is as-sumed to follow the Dirichlet distribution, φk ∼ Dirichlet(βk), where βk is trans-formed from theV-dimensional hyper parameter βvia the transformation matrix, βk =Λ(k)β. Hence, the number of dimensions ofβk isVk.

The remaining LDA part of the model is not restricted and followed conventional LDA model procedure. That is, the topic assignment for then-th word in reviewd which consists ofNdwords without considering their order (bag-of-words assump-tion) is assumed to follow a categorical distribution,zdn ∼ categorical(θd), whereθd

4.4. Model 89 is a topic distribution that represents a topic proportion within the text of the review d and follows the Dirichlet prior distribution, θd ∼ Dirichlet(α). We assume that a word assigned to topick is generated from the corresponding word distribution, wdn|zdn= k∼categorical(φk).

Next, we develop the response function part of our model. We use two depen-dent variables: satisfaction score and helpfulness count. The satisfaction score re-flects the current evaluation of customers based on their past experiences that al-ready purchased the product and we assumed that the helpfulness count implied the interest in and expectations of the product by other consumers that might pur-chase it in the future. In addition, as discussed in the previous section, the labeled topics in customer reviews are directly built as covariates for the variations in sat-isfaction scores and as helpful product expectation references. For example, if one product feature is particularly satisfying to customer needs, we expect that the topic related to this feature co-occurs with a high satisfaction score in online customer re-views. Conversely, topics related to dissatisfying features should co-occur with low satisfaction scores. Regarding its connection with review helpfulness, a textual re-view is likely to be regarded as helpful by readers if it contains the topics in which they are interested.

Given the word-topic assignments,zdn,Ndl =nN=d1 = I{zdn =l}is the number of words assigned to topicl, which we use as covariates after logarithmic transfor-mation. Note that the number of covariates for these topic assignments is the same as the number of labeled topics,L(which is set to five in this study). However, the number of total topics can differ from the number of labeled topics. Let the number of total topics beKand the rest of the topics,K−L, are nonlabeled and do not in-clude any labeled words. Nonlabeled topics are extracted from the review text but are not considered as covariates for both object variables for the sake of manageabil-ity.

The number of total topics, K, is determined by model selection criteria of the deviance information criterion (DIC, Spiegelhalter et al., 2002) and the widely ap-plicable information criterion (WAIC, Watanabe, 2010), as demonstrated in Section 4.5. In addition to the labeled topic variables, some control variables also work as covariates. We use the following four status variables: purchase verification, top

contributor, top reviewer, and vine voice. The status badges are displayed next to the user icon if the user qualified for that status. Word count variables, which repre-sent the number of words included in the customer review, are also considered.

We assume that the satisfaction score, which was measured using a five-point scale, follows the ordered probit model and the helpfulness count with positive in-tegers follow the Poisson regression model. First, let the satisfaction score of a review dbeys,d, which follows the ordered probit model:

ys,d = r, ifτr1≤ ys,d <τr

ys,d =

L l=1

γs,l·log(Ndl+1) +

5 m=1

δs,m·xs,dm+ed; ed ∼N(0, 1). (4.2) In the above, the thresholds{τr}work for realizing discrete satisfaction scores through the latent continuous variable, ys,d, and the thresholds τ0 and τR (R = 5 in the Amazon dataset) are set to− and∞, respectively. xs,d is a vector of the control variables– purchase verification, top contributor, top reviewer, vine voice, and word counts. The error termed is assumed to follow a standard normal distribution and the model does not include the intercept term for identifyingR−1 thresholds.

Next, when the satisfaction rating score ys,d is given, we define the response model of the helpfulness countyh,dfor reviewdusing the Poisson regression model:

yh,d ∼ Poisson(yh,d) yh,d =

L l=1

γh,l·log(Ndl+1) +

5 m=1

δh,m·xh,dm+δh,6ys,d, (4.3) wherexh,d is common with satisfaction probit model, Equation (4.2) and ys,d is in-cluded by the findings of literature (e.g., Ho-Dac, Carson, and Moore, 2013; Mauri and Minazzi, 2013; Ludwig et al., 2013), which demonstrate that positive and nega-tive online customer reviews affect reader purchase intentions and expectations. We also explore the effect of the level of customer satisfaction on the perceived helpful-ness of readers.

Therefore, the satisfaction and helpfulness models in Equations (4.2) and (4.3) are sequentially connected by way of observationys,d to form the integrated PLS-LDA

4.5. Empirical Analysis 91

ドキュメント内 東北大学機関リポジトリTOUR (ページ 105-108)