Advertisement
Guest User

Untitled

a guest
Jan 27th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. var watson = require('watson-developer-cloud');
  2. var language_translator = watson.language_translator({
  3. username: 'fc15a4b5-c336-4de9-bd72-bc9d3928371c',
  4. password: 'IDJdrL2Zj5TQ',
  5. version: 'v2'
  6. });
  7. language_translator.identify({ text: '@SenSanders will join @FaceTheNation tomorrow morning. Well ask him about the current immigration debate and the electoral outlook for Democrats. Tune in!'},
  8. function(err, identifiedLanguages) {
  9. if (err)
  10. console.log(err);
  11. else {
  12. identifiedLanguages.languages.forEach(function(lang) {
  13. if (lang.language === 'en')
  14. if (lang.confidence > '.8') //if its over .8 certainty
  15. console.log(lang.confidence); //prints english confidence
  16. });
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement