use of com.ibm.watson.developer_cloud.natural_language_understanding.v1.model.EmotionOptions in project java-sdk by watson-developer-cloud.
the class NaturalLanguageUnderstandingIT method analyzeTextForEmotionsWithoutTargetsIsSuccessful.
/**
* Analyze input text for emotions without targets.
*
* @throws Exception the exception
*/
@Test
public void analyzeTextForEmotionsWithoutTargetsIsSuccessful() throws Exception {
String text = "But I believe this thinking is wrong. I believe the road of true democracy remains the better path." + " I believe that in the 21st century, economies can only grow to a certain point until they need to open up" + " -- because entrepreneurs need to access information in order to invent; young people need a global" + " education in order to thrive; independent media needs to check the abuses of power.";
EmotionOptions emotion = new EmotionOptions.Builder().build();
Features features = new Features.Builder().emotion(emotion).build();
AnalyzeOptions parameters = new AnalyzeOptions.Builder().text(text).features(features).returnAnalyzedText(true).build();
AnalysisResults results = service.analyze(parameters).execute();
assertNotNull(results);
assertNotNull(results.getAnalyzedText());
assertNotNull(results.getEmotion());
assertNotNull(results.getEmotion().getDocument());
assertNotNull(results.getEmotion().getDocument().getEmotion());
EmotionScores scores = results.getEmotion().getDocument().getEmotion();
assertNotNull(scores.getAnger());
assertNotNull(scores.getDisgust());
assertNotNull(scores.getFear());
assertNotNull(scores.getJoy());
assertNotNull(scores.getSadness());
assertNull(results.getEmotion().getTargets());
}
use of com.ibm.watson.developer_cloud.natural_language_understanding.v1.model.EmotionOptions in project java-sdk by watson-developer-cloud.
the class NaturalLanguageUnderstandingTest method testModelOptions.
/**
* Test some of the model constructors. pump up the code coverage numbers
*
* @throws InterruptedException the interrupted exception
*/
@Test
public void testModelOptions() throws InterruptedException {
Features features = new Features.Builder().concepts(null).categories(null).emotion(null).entities(null).keywords(null).metadata(null).relations(null).semanticRoles(null).sentiment(null).build();
// AnalyzeOptions
AnalyzeOptions analyzeOptions = new AnalyzeOptions.Builder().text("text").html("html").url("url").features(features).clean(true).xpath("xpath").fallbackToRaw(false).returnAnalyzedText(true).language("language").build();
assertEquals(analyzeOptions.text(), "text");
assertEquals(analyzeOptions.html(), "html");
assertEquals(analyzeOptions.url(), "url");
assertEquals(analyzeOptions.features(), features);
assertEquals(analyzeOptions.clean(), true);
assertEquals(analyzeOptions.xpath(), "xpath");
assertEquals(analyzeOptions.fallbackToRaw(), false);
assertEquals(analyzeOptions.returnAnalyzedText(), true);
assertEquals(analyzeOptions.language(), "language");
analyzeOptions.newBuilder();
// CategoriesOptions
CategoriesOptions categoriesOptions = new CategoriesOptions();
assertNotNull(categoriesOptions);
// EmotionOptions
List<String> emotionOptionsTargets = new ArrayList<>(Arrays.asList("target1", "target2"));
EmotionOptions emotionOptions = new EmotionOptions.Builder().document(true).targets(emotionOptionsTargets).addTargets("target3").build();
emotionOptionsTargets.add("target3");
assertEquals(emotionOptions.document(), true);
assertEquals(emotionOptions.targets(), emotionOptionsTargets);
emotionOptions.newBuilder();
// EntitiesOptions
EntitiesOptions entitiesOptions = new EntitiesOptions.Builder().emotion(true).limit(10).model("model").sentiment(false).mentions(false).build();
assertEquals(entitiesOptions.emotion(), true);
assertEquals(entitiesOptions.limit(), 10, 0);
assertEquals(entitiesOptions.model(), "model");
assertEquals(entitiesOptions.sentiment(), false);
assertEquals(entitiesOptions.mentions(), false);
entitiesOptions.newBuilder();
// Features
assertEquals(features.categories(), null);
assertEquals(features.concepts(), null);
assertEquals(features.emotion(), null);
assertEquals(features.entities(), null);
assertEquals(features.keywords(), null);
assertEquals(features.metadata(), null);
assertEquals(features.relations(), null);
assertEquals(features.semanticRoles(), null);
assertEquals(features.sentiment(), null);
features.newBuilder();
// KeywordsOptions
KeywordsOptions keywordsOptions = new KeywordsOptions.Builder().emotion(true).limit(10).sentiment(false).build();
assertEquals(keywordsOptions.emotion(), true);
assertEquals(keywordsOptions.limit(), 10, 0);
assertEquals(keywordsOptions.sentiment(), false);
keywordsOptions.newBuilder();
// MetadataOptions
MetadataOptions metadataOptions = new MetadataOptions();
assertNotNull(metadataOptions);
// RelationsOptions
RelationsOptions relationsOptions = new RelationsOptions.Builder().model("model").build();
assertEquals(relationsOptions.model(), "model");
relationsOptions.newBuilder();
// SemanticRolesOptions
SemanticRolesOptions semanticRolesOptions = new SemanticRolesOptions.Builder().entities(true).keywords(false).limit(10).build();
assertEquals(semanticRolesOptions.entities(), true);
assertEquals(semanticRolesOptions.keywords(), false);
assertEquals(semanticRolesOptions.limit(), 10, 0);
semanticRolesOptions.newBuilder();
// SentimentOptions
List<String> optionsTargets = new ArrayList<>(Arrays.asList("target1", "target2"));
SentimentOptions sentimentOptions = new SentimentOptions.Builder().document(true).targets(optionsTargets).addTargets("target3").build();
optionsTargets.add("target3");
assertEquals(sentimentOptions.document(), true);
assertEquals(sentimentOptions.targets(), optionsTargets);
sentimentOptions.newBuilder();
}
Aggregations