You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wrapper to use the [Watson Developer Cloud][wdc] services.
4
-
A collection of REST APIs and SDKs that use cognitive computing
5
-
to solve complex problems.
3
+
Java code wrappers to quickly get started with the various [Watson Developer Cloud][wdc] services - A collection of REST APIs and SDKs that use cognitive computing to solve complex problems.
6
4
7
5
## Table of Contents
8
6
*[Watson Developer Cloud][wdc]
@@ -42,7 +40,7 @@ or [Stack Overflow](http://stackoverflow.com/questions/ask?tags=ibm-watson).
42
40
43
41
## Installation
44
42
45
-
Download the [jar][releases] and add it to your project.
43
+
Download the [jar][releases], and add it to your project.
46
44
Now, you are ready to see some [examples](https://github.com/watson-developer-cloud/java-wrapper/tree/master/src/main/examples/java/com/ibm/watson/developer_cloud).
47
45
48
46
##### Maven
@@ -61,7 +59,7 @@ Now, you are ready to see some [examples](https://github.com/watson-developer-cl
61
59
62
60
## Usage
63
61
64
-
The examples below assume that you already have service credentials. If not,
62
+
The examples below assumes that you already have service credentials. If you don't have service credentials,
65
63
you will have to create and bind the service in [Bluemix][bluemix].
66
64
67
65
If you are running your application in Bluemix, you don't need to specify the
@@ -74,16 +72,16 @@ The credentials for the services are stored in the
74
72
[VCAP_SERVICES][vcap_environment] environment variable. To get them, you need
75
73
to first create and bind the service to your application.
76
74
77
-
You will need the `username` and `password` credentials for each service these are *not* your Bluemix credentials, and are found in the VCAP_SERVICES variable on Bluemix for each service.
75
+
You will need the `username` and `password` credentials for each service these are *not* your Bluemix credentials, and are found in the VCAP_SERVICES variable on Bluemix, and they are different for each service.
78
76
79
77
## IBM Watson Services
80
78
The Watson Developer Cloud offers a variety of services for building cognitive
81
-
apps.
79
+
applications.
82
80
83
81
### Concept Expansion
84
82
Map euphemisms or colloquial terms to more commonly understood phrases using
85
83
the [Concept Expansion][concept_expansion] service.
86
-
Example: Create a job, wait for it to finish, and retrieve results.
84
+
Example: Create a job, wait for it to finish, and then retrieve results.
Select a domain, then identify or select the language of text, and then translate the text from one supported language to another.
128
+
129
129
Example: Translate 'hello' from English to Spanish using the [Language Translation][language_translation] service.
130
130
131
131
```java
@@ -153,6 +153,8 @@ System.out.println(response);
153
153
```
154
154
155
155
### Message Resonance
156
+
Send a word and Watson responds with the resonance scoring for the word, allowing you to enhance the effectiveness of your language for the intended audience.
157
+
156
158
Example: Get resonance information for individual words in a sentence from the [Message Resonance][message_resonance] service.
0 commit comments