内容简介:样本代码:使用 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 服务分析文本》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 样本代码:使用 Watson Tone Analysis 服务识别书面文本的语气
- 文本也有攻防战:清华大学开源对抗样本必读论文列表
- python数据分析于实现,单样本体检验、独立样本体检验、相关分析、列联表分析!
- 鬼影样本分析
- 恶意样本分析手册——文件封装篇
- 利用ngrok传播样本挖矿
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
游戏编程权威指南
Mike McShaffry 麦克沙福瑞、David “Rez” Graham 格雷海姆 / 师蓉、李静、李青翠 / 人民邮电 / 2016-3 / 99.00元
全书分为4个部分共24章。首部分是游戏编程基础,主要介绍了游戏编程的定义、游戏架构等基础知识。 第二部分是让游戏跑起来,主要介绍了初始化和关闭代码、主循环、游戏主题和用户界面等。 第三部分是核心游戏技术,主要介绍了一些*为复杂的代码 示例,如3D编程、游戏音频、物理和AI编程等。 第四部分是综合应用,主要介绍了网络编程、多道程序设计和用C#创建工具等,并利用前面所讲的 知识开发出......一起来看看 《游戏编程权威指南》 这本书的介绍吧!