Skip to content

Commit ad8ab03

Browse files
authored
Clarify AlchemyVision status
Also correcting spacing of Alchemy* service names. Relates to #308 [ci skip]
1 parent 75ab716 commit ad8ab03

1 file changed

Lines changed: 8 additions & 30 deletions

File tree

README.md

Lines changed: 8 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Node.js client library to use the [Watson Developer Cloud][wdc] services, a coll
1717
* [Questions](#questions)
1818
* [Examples](#examples)
1919
* [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)
2323
* [Authorization](#authorization)
2424
* [Concept Insights](#concept-insights)
2525
* [Conversation](#conversation)
@@ -143,8 +143,8 @@ The [examples][examples] folder has basic and advanced examples.
143143
The Watson Developer Cloud offers a variety of services for building cognitive
144144
apps.
145145

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.
148148

149149
Use the [Sentiment Analysis][sentiment_analysis] endpoint to identify positive/negative sentiment within a sample text document.
150150

@@ -167,32 +167,10 @@ alchemy_language.sentiment(params, function (err, response) {
167167
});
168168
```
169169

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.
172172

173-
Example: Extract keywords from an image.
174-
175-
```javascript
176-
var AlchemyVisionV1 = require('watson-developer-cloud/alchemy-vision/v1');
177-
var fs = require('fs');
178-
179-
var alchemy_vision = new AlchemyVisionV1({
180-
api_key: '<api_key>'
181-
});
182-
183-
var params = {
184-
image: fs.createReadStream('src/test/resources/obama.jpg')
185-
};
186-
187-
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
196174
[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.
197175
Example: Get the volume data from the last 7 days using 12hs of time slice.
198176

0 commit comments

Comments
 (0)