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
Copy file name to clipboardExpand all lines: README.md
+8-30Lines changed: 8 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,9 @@ Node.js client library to use the [Watson Developer Cloud][wdc] services, a coll
17
17
*[Questions](#questions)
18
18
*[Examples](#examples)
19
19
*[IBM Watson Services](#ibm-watson-services)
20
-
*[Alchemy Language](#alchemy-language)
21
-
*[Alchemy Vision](#alchemy-vision)
22
-
*[Alchemy Data News](#alchemy-data-news)
20
+
*[AlchemyLanguage](#alchemylanguage)
21
+
*[AlchemyVision](#alchemyvision)
22
+
*[AlchemyData News](#alchemydata-news)
23
23
*[Authorization](#authorization)
24
24
*[Concept Insights](#concept-insights)
25
25
*[Conversation](#conversation)
@@ -143,8 +143,8 @@ The [examples][examples] folder has basic and advanced examples.
143
143
The Watson Developer Cloud offers a variety of services for building cognitive
144
144
apps.
145
145
146
-
### Alchemy Language
147
-
[Alchemy Language][alchemy_language] offers 12 API functions as part of its text analysis service, each of which uses sophisticated natural language processing techniques to analyze your content and add high-level semantic information.
146
+
### AlchemyLanguage
147
+
[AlchemyLanguage][alchemy_language] offers 12 API functions as part of its text analysis service, each of which uses sophisticated natural language processing techniques to analyze your content and add high-level semantic information.
148
148
149
149
Use the [Sentiment Analysis][sentiment_analysis] endpoint to identify positive/negative sentiment within a sample text document.
150
150
@@ -167,32 +167,10 @@ alchemy_language.sentiment(params, function (err, response) {
167
167
});
168
168
```
169
169
170
-
### Alchemy Vision
171
-
[Alchemy Vision][alchemy_vision] uses deep learning innovations to understand a picture's content and context. It sees complex visual scenes in their entirety —without needing any textual clues— leveraging a holistic approach to understanding the multiple objects and surroundings.
170
+
### AlchemyVision
171
+
The AlchemyVision service has been replace by the [Visual Recognition](#visual-recognition) service. Existing users have until May 20, 2017 to migrate to the new service, and no new instances may be created.
172
172
173
-
Example: Extract keywords from an image.
174
-
175
-
```javascript
176
-
var AlchemyVisionV1 =require('watson-developer-cloud/alchemy-vision/v1');
alchemy_vision.getImageKeywords(params, function (err, keywords) {
188
-
if (err)
189
-
console.log('error:', err);
190
-
else
191
-
console.log(JSON.stringify(keywords, null, 2));
192
-
});
193
-
```
194
-
195
-
### Alchemy Data News
173
+
### AlchemyData News
196
174
[Alchemy Data News][alchemy_data_news] indexes 250k to 300k English language news and blog articles every day with historical search available for the past 60 days.
197
175
Example: Get the volume data from the last 7 days using 12hs of time slice.
0 commit comments