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
+54Lines changed: 54 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,8 @@ APIs and SDKs that use cognitive computing to solve complex problems.
20
20
*[Getting the Service Credentials](#getting-the-service-credentials)
21
21
*[Alchemy Services](#alchemy-services)
22
22
*[Alchemy Language](#alchemy-language)
23
+
*[Alchemy Vision](#alchemy-vision)
24
+
*[Alchemy Data News](#alchemy-data-news)
23
25
*[IBM Watson Services](#ibm-watson-services)
24
26
*[Authorization](#authorization)
25
27
*[Concept Expansion](#concept-expansion)
@@ -124,6 +126,55 @@ alchemy_language.sentiment(params, function (err, response) {
124
126
});
125
127
```
126
128
129
+
### Alchemy Vision
130
+
[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.
alchemy_vision.getImageKeywords(params, function (err, keywords) {
147
+
if (err)
148
+
console.log('error:', err);
149
+
else
150
+
console.log(JSON.stringify(keywords, null, 2));
151
+
});
152
+
```
153
+
154
+
### Alchemy Data News
155
+
[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.
156
+
Example: Get the volume data from the last 7 days using 12hs of time slice.
157
+
158
+
```javascript
159
+
var watson =require('watson-developer-cloud');
160
+
161
+
var alchemy_data_news =watson.alchemy_data_news({
162
+
api_key:'<api_key>'
163
+
});
164
+
165
+
var params = {
166
+
start:'now-1d',
167
+
end:'now'
168
+
};
169
+
170
+
alchemy_data_news.getNews(params, function (err, news) {
171
+
if (err)
172
+
console.log('error:', err);
173
+
else
174
+
console.log(JSON.stringify(news, null, 2));
175
+
});
176
+
```
177
+
127
178
## IBM Watson Services
128
179
The Watson Developer Cloud offers a variety of services for building cognitive
129
180
apps.
@@ -598,6 +649,9 @@ See [CONTRIBUTING](https://github.com/watson-developer-cloud/nodejs-wrapper/blob
0 commit comments