use of com.ibm.watson.developer_cloud.natural_language_understanding.v1.model.Features in project java-sdk by watson-developer-cloud.
the class NaturalLanguageUnderstandingIT method analyzeTextForSemanticRolesIsSuccessful.
/**
* Analyze input text for semantic roles.
*
* @throws Exception the exception
*/
@Test
public void analyzeTextForSemanticRolesIsSuccessful() throws Exception {
SemanticRolesOptions options = new SemanticRolesOptions.Builder().limit(7).keywords(true).entities(true).build();
Features features = new Features.Builder().semanticRoles(options).build();
AnalyzeOptions parameters = new AnalyzeOptions.Builder().text(text).features(features).returnAnalyzedText(true).build();
AnalysisResults results = service.analyze(parameters).execute();
assertNotNull(results);
assertEquals(results.getAnalyzedText(), text);
assertEquals(results.getLanguage(), "en");
assertNotNull(results.getSemanticRoles());
for (SemanticRolesResult result : results.getSemanticRoles()) {
assertEquals(result.getSentence(), text);
if (result.getSubject() != null) {
assertNotNull(result.getSubject().getText());
}
if (result.getAction() != null) {
assertNotNull(result.getAction().getText());
}
if (result.getObject() != null) {
assertNotNull(result.getObject().getText());
}
}
}
use of com.ibm.watson.developer_cloud.natural_language_understanding.v1.model.Features 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.Features in project java-sdk by watson-developer-cloud.
the class NaturalLanguageUnderstanding method analyze.
/**
* Analyze text, HTML, or a public webpage.
*
* Analyzes text, HTML, or a public webpage with one or more text analysis features.
*
* @param analyzeOptions the {@link AnalyzeOptions} containing the options for the call
* @return a {@link ServiceCall} with a response type of {@link AnalysisResults}
*/
public ServiceCall<AnalysisResults> analyze(AnalyzeOptions analyzeOptions) {
Validator.notNull(analyzeOptions, "analyzeOptions cannot be null");
String[] pathSegments = { "v1/analyze" };
RequestBuilder builder = RequestBuilder.post(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments));
builder.query(VERSION, versionDate);
final JsonObject contentJson = new JsonObject();
if (analyzeOptions.text() != null) {
contentJson.addProperty("text", analyzeOptions.text());
}
if (analyzeOptions.html() != null) {
contentJson.addProperty("html", analyzeOptions.html());
}
if (analyzeOptions.url() != null) {
contentJson.addProperty("url", analyzeOptions.url());
}
contentJson.add("features", GsonSingleton.getGson().toJsonTree(analyzeOptions.features()));
if (analyzeOptions.clean() != null) {
contentJson.addProperty("clean", analyzeOptions.clean());
}
if (analyzeOptions.xpath() != null) {
contentJson.addProperty("xpath", analyzeOptions.xpath());
}
if (analyzeOptions.fallbackToRaw() != null) {
contentJson.addProperty("fallback_to_raw", analyzeOptions.fallbackToRaw());
}
if (analyzeOptions.returnAnalyzedText() != null) {
contentJson.addProperty("return_analyzed_text", analyzeOptions.returnAnalyzedText());
}
if (analyzeOptions.language() != null) {
contentJson.addProperty("language", analyzeOptions.language());
}
if (analyzeOptions.limitTextCharacters() != null) {
contentJson.addProperty("limit_text_characters", analyzeOptions.limitTextCharacters());
}
builder.bodyJson(contentJson);
return createServiceCall(builder.build(), ResponseConverterUtils.getObject(AnalysisResults.class));
}
use of com.ibm.watson.developer_cloud.natural_language_understanding.v1.model.Features in project java-sdk by watson-developer-cloud.
the class NaturalLanguageUnderstanding method listModels.
/**
* List models.
*
* Lists available models for Relations and Entities features, including Watson Knowledge Studio custom models that
* you have created and linked to your Natural Language Understanding service.
*
* @param listModelsOptions the {@link ListModelsOptions} containing the options for the call
* @return a {@link ServiceCall} with a response type of {@link ListModelsResults}
*/
public ServiceCall<ListModelsResults> listModels(ListModelsOptions listModelsOptions) {
String[] pathSegments = { "v1/models" };
RequestBuilder builder = RequestBuilder.get(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments));
builder.query(VERSION, versionDate);
if (listModelsOptions != null) {
}
return createServiceCall(builder.build(), ResponseConverterUtils.getObject(ListModelsResults.class));
}
use of com.ibm.watson.developer_cloud.natural_language_understanding.v1.model.Features in project java-sdk by watson-developer-cloud.
the class NaturalLanguageUnderstandingIT method analyzeTextForConceptsIsSuccessful.
/**
* Analyze given test input text for concepts.
*
* @throws Exception the exception
*/
@Test
public void analyzeTextForConceptsIsSuccessful() throws Exception {
String text = "In remote corners of the world, citizens are demanding respect" + " for the dignity of all people no matter their gender, or race, or religion, or disability," + " or sexual orientation, and those who deny others dignity are subject to public reproach." + " An explosion of social media has given ordinary people more ways to express themselves," + " and has raised people's expectations for those of us in power. Indeed, our international" + " order has been so successful that we take it as a given that great powers no longer" + " fight world wars; that the end of the Cold War lifted the shadow of nuclear Armageddon;" + " that the battlefields of Europe have been replaced by peaceful union; that China and India" + " remain on a path of remarkable growth.";
ConceptsOptions concepts = new ConceptsOptions.Builder().limit(5).build();
Features features = new Features.Builder().concepts(concepts).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.getConcepts());
for (ConceptsResult concept : results.getConcepts()) {
assertNotNull(concept.getText());
assertNotNull(concept.getDbpediaResource());
assertNotNull(concept.getRelevance());
}
}
Aggregations