1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Watson Discovery:Content Miningの相関値をAPIで取得してみた

Posted at

Watson Discovery の Content Miner で Relevancy(相関)の値を取得する API を試してみました。

やりたいこと

以下の「Relevancy」(右側のオレンジは黄色の値)の値をAPIで取得したい。
image.png

結果

こうすればできました。

relevancy:true
response = discovery.query(
  project_id=project_id,
  query='オイル漏れ',
  aggregation='term(field:通称名,relevancy:true,count:100)',
  count=2
).get_result()

for relevancy_data in response['aggregations'][0]['results']:
    print(relevancy_data['key'] + " : " + str(relevancy_data['relevancy']))

結果のイメージ図
image.png

参考情報

製品マニュアル
aggregation パラメータの relevancytrue にすれば良いだけでした。
クエリAPIの構文

お断り

このサイトの掲載内容は私自身の見解であり、必ずしも所属会社の立場、戦略、意見を代表するものではありません。 記事は執筆時点の情報を元に書いているため、必ずしも最新情報であるとはかぎりません。 記事の内容の正確性には責任を負いません。自己責任で実行してください。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?