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
+82Lines changed: 82 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)
@@ -35,6 +37,7 @@ APIs and SDKs that use cognitive computing to solve complex problems.
35
37
*[Speech to Text](#speech-to-text)
36
38
*[Text to Speech](#text-to-speech)
37
39
*[Tradeoff Analytics](#tradeoff-analytics)
40
+
*[Visual Insights](#visual-insights)
38
41
*[Visual Recognition](#visual-recognition)
39
42
*[Running in Bluemix](#running-in-bluemix)
40
43
*[Debug](#debug)
@@ -124,6 +127,55 @@ alchemy_language.sentiment(params, function (err, response) {
124
127
});
125
128
```
126
129
130
+
### Alchemy Vision
131
+
[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) {
148
+
if (err)
149
+
console.log('error:', err);
150
+
else
151
+
console.log(JSON.stringify(keywords, null, 2));
152
+
});
153
+
```
154
+
155
+
### Alchemy Data News
156
+
[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.
157
+
Example: Get the volume data from the last 7 days using 12hs of time slice.
158
+
159
+
```javascript
160
+
var watson =require('watson-developer-cloud');
161
+
162
+
var alchemy_data_news =watson.alchemy_data_news({
163
+
api_key:'<api_key>'
164
+
});
165
+
166
+
var params = {
167
+
start:'now-1d',
168
+
end:'now'
169
+
};
170
+
171
+
alchemy_data_news.getNews(params, function (err, news) {
172
+
if (err)
173
+
console.log('error:', err);
174
+
else
175
+
console.log(JSON.stringify(news, null, 2));
176
+
});
177
+
```
178
+
127
179
## IBM Watson Services
128
180
The Watson Developer Cloud offers a variety of services for building cognitive
0 commit comments