样本代码:使用 Watson Tone Analysis 服务识别书面文本的语气

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

内容简介:样本代码:使用 Watson Tone Analysis 服务识别书面文本的语气

import java.util.List;

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

import com.ibm.watson.developer_cloud.tone_analyzer.v3.ToneAnalyzer; import com.ibm.watson.developer_cloud.tone_analyzer.v3.model.ElementTone; import com.ibm.watson.developer_cloud.tone_analyzer.v3.model.ToneAnalysis; import com.ibm.watson.developer_cloud.tone_analyzer.v3.model.ToneCategory; import com.ibm.watson.developer_cloud.tone_analyzer.v3.model.ToneScore;

public class CheckTheTone {

private static String textToAnalyze = "I know the times are difficult!Our sales have been " + "disappointing for the past three quarters for our data analytics " + "product suite.We have a competitive data analytics product " + "suite in the industry.But we need to do our job selling it!" + "We need to acknowledge and fix our sales challenges." + "We can't blame the economy for our lack of execution!" + "We are missing critical sales opportunities." + "Our product is in no way inferior to the competitor products." + "Our clients are hungry for analytical tools to improve their " + "business outcomes.Economy has nothing to do with it.";

private static String data = "{"textToAnalyze":"" + textToAnalyze + ""," + " "username" :""," + " "password" :""," + " "endpoint" :"https://sandbox-watson-proxy.mybluemix.net/tone-analyzer/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();

ToneAnalyzer service = new ToneAnalyzer("2016-05-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);

ToneAnalysis result =
    service.getTone(args.get("textToAnalyze").getAsString(), null).
    execute();

ElementTone elementTone = result.getDocumentTone();
List<ToneCategory> toneCategories = elementTone.getTones();
for (ToneCategory nextCategory : toneCategories) {
  System.out.println("Analysis for " + nextCategory.getName());

  List<ToneScore> toneScores = nextCategory.getTones();
  for (ToneScore nextScore : toneScores) {
    System.out.println("    " + nextScore.getName() + " = " +
                       (int)(nextScore.getScore() * 100) + "%");
  }
  System.out.println();
}

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

} }


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

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

程序员面试宝典

程序员面试宝典

欧立奇、刘洋、段韬 / 电子工业出版社 / 2006-7 / 39.00元

本书取材于各大IT公司历年面试真题(包括笔试题、口试题、电话面试、英语面试,以及逻辑测试和智商测试)。通过精确详细的分类,把在应聘程序员(含网络、测试等)过程中所遇见的常见考点分为21章。不仅对传统的C系语言考点做了详尽的解说,包括面向对象问题、sizeof问题、const问题、数据结构问题等。还根据外企出题最新特点,针对设计模式问题、C#问题、网络问题、数据库问题、NET问题等,做了深入的说明。......一起来看看 《程序员面试宝典》 这本书的介绍吧!

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

在线XML、JSON转换工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具