样本代码:使用 Watson Personality Insights 服务分析文本

栏目: Java · 发布时间: 6年前

内容简介:样本代码:使用 Watson Personality Insights 服务分析文本

import java.util.List;

import com.google.gson.JsonObject; import com.google.gson.JsonParser;

import com.ibm.watson.developer_cloud.personality_insights.v3.PersonalityInsights; import com.ibm.watson.developer_cloud.personality_insights.v3.model.Profile; import com.ibm.watson.developer_cloud.personality_insights.v3.model.Trait;

public class GetInsights {

private static String textToAnalyze = "Call me Ishmael.Some years ago-never mind how long precisely-having " + "little or no money in my purse, and nothing particular to interest " + "me on shore, I thought I would sail about a little and see the " + "watery part of the world.It is a way I have of driving off the " + "spleen and regulating the circulation.Whenever I find myself " + "growing grim about the mouth; whenever it is a damp, drizzly " + "November in my soul; whenever I find myself involuntarily pausing " + "before coffin warehouses, and bringing up the rear of every " + "funeral I meet; and especially whenever my hypos get such an upper " + "hand of me, that it requires a strong moral principle to prevent " + "me from deliberately stepping into the street, and methodically " + "knocking people's hats off-then, I account it high time to get to " + "sea as soon as I can.This is my substitute for pistol and ball." + "With a philosophical flourish Cato throws himself upon his sword; " + "I quietly take to the ship.There is nothing surprising in this." + "If they but knew it, almost all men in their degree, some time or " + "other, cherish very nearly the same feelings towards the ocean " + "with me.There now is your insular city of the Manhattoes, belted " + "round by wharves as Indian isles by coral reefs-commerce surrounds " + "it with her surf.Right and left, the streets take you waterward.";

private static String data = "{"textToAnalyze":"" + textToAnalyze + ""," + " "username" :""," + " "password" :""," + " "endpoint" :"https://sandbox-watson-proxy.mybluemix.net/personality-insights/api"," + " "skip_authentication" :"true"}";

public static void main(String[] args) { JsonParser parser = new JsonParser(); JsonObject jsonArgs = parser.parse(data).getAsJsonObject(); main(jsonArgs); }

public static JsonObject main(JsonObject args) { JsonParser parser = new JsonParser();

PersonalityInsights service = new
  PersonalityInsights(PersonalityInsights.VERSION_DATE_2016_10_19);
service.setUsernameAndPassword(args.get("username").getAsString(),
                               args.get("password").getAsString());

if (args.get("endpoint") != null)
  service.setEndPoint(args.get("endpoint").getAsString());

if (args.get("skip_authentication") != null)
  service.setSkipAuthentication((args.get("skip_authentication")
    .getAsString() == "true") ? true : false);

Profile result =
  service.getProfile(args.get("textToAnalyze").getAsString()).execute();

System.out.println("Watson's analysis\n\nComment:" +
                   result.getWordCountMessage() + "\n");

System.out.println("Personality traits:");
List<Trait> traits = result.getPersonality();
for (Trait nextTrait : traits) {
  System.out.println("- " + nextTrait.getName() + " - (" +
                     (int) (nextTrait.getPercentile() * 100) +
                     " percentile)");
}
System.out.println("\nEmotional needs:");
List<Trait> needs = result.getNeeds();
for (Trait nextNeed : needs) {
  System.out.println("- " + nextNeed.getName() + " - (" +
                     (int) (nextNeed.getPercentile() * 100) +
                     " percentile)");
}
System.out.println("\nPersonal values:");
List<Trait> values = result.getValues();
for (Trait nextValue : values) {
  System.out.println("- " + nextValue.getName() + " - (" +
                     (int) (nextValue.getPercentile() * 100) +
                     " percentile)");
}

JsonObject returnObject = parser.parse(result.toString()).getAsJsonObject();
return returnObject;

} }


以上所述就是小编给大家介绍的《样本代码:使用 Watson Personality Insights 服务分析文本》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

腾讯之道

腾讯之道

艾永亮、刘官华、梁璐 / 机械工业出版社 / 2016-7-19 / 59

放眼整个中国乃至全球,腾讯都是一家成功的互联网企业,它代表中国企业在世界互联网版图中竖起了一面高高的旗帜。腾讯为何能取得如此大的成就,它的成功方法和商业逻辑是什么?你是不是和无数中国企业和商界人士一样,都想向腾讯取取经,但是又不得其门而入? 腾讯一直以低调、务实著称,所 以腾讯及其内部员工都极少对外界分享他们的经验;加之腾讯的商业模式多元、业务繁多且交叉、体量又极其庞大,使得从外部来系统研究......一起来看看 《腾讯之道》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试