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

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

内容简介:样本代码:使用 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 服务分析文本》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

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

HTML网页设计参考手册

HTML网页设计参考手册

张金霞 / 清华大学 / 2006-9 / 39.00元

本书由最基本的HTML语法开始讲解网页设计的基础技术,详细介绍了各种网页制作的标记;然后介绍如何运用CSS控制网页画面中文字与图片的样式;接下来讲解了JavaScript语言与网页特效的制作;最后以应用最广泛的Drcamweaver为例,介绍网页设计的方法。在讲解中配有大量范例,使读者在实际操作中学习制作网页。   HTML语言是制作网页的基础语言。作为一个网页制作爱好者或者专业的网......一起来看看 《HTML网页设计参考手册》 这本书的介绍吧!

URL 编码/解码
URL 编码/解码

URL 编码/解码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具