0

1) TextGetTargetedSentiment の機能について説明してください。

2) TextGetTargetedSentiment を呼び出す Java コード スニペットを提供してください。

編集

API 情報は http://www.alchemyapi.com/api/sentiment/textc.html#targetedsentimentにあります。

以下のザックの回答によると、AlchemyAPI によって提供されるコード スニペットは次のとおりです。

        AlchemyAPI_TargetedSentimentParams sentimentParams = new AlchemyAPI_TargetedSentimentParams();
        sentimentParams.setShowSourceText(true);
        doc = alchemyObj.TextGetTargetedSentiment("This car is terrible.", "car", sentimentParams);
        System.out.print(getStringFromDocument(doc));

結果は

    :
 <totalTransactions>1</totalTransactions>
<language>english</language>
<text>This car is terrible.</text>
<docSentiment>
    <score>-0.776261</score>
    <type>negative</type>
</docSentiment>

ステートメントを次のように変更すると、

「この車は素晴らしいです。」すると結果は

:
<totalTransactions>1</totalTransactions>
<language>english</language>
<text>This car is superb.</text>
<docSentiment>
    <score>0.695491</score>
    <type>positive</type>
</docSentiment>

すべてのファイル

4

1 に答える 1