ARC Pro

Upgrade to ARC Pro

ARC Pro is your gateway to a community of like-minded robot enthusiasts and professionals, all united by a passion for advanced robot programming.

PRO
USA
#2  

@DJ You are Awesome! I am now going to try and work with an NLP library to process and analyze speech. Thank you

#3  

Which NLP are you going to use? I'm being nosey.

PRO
Synthiam
#4  

ARC isn't a web browser, so i'm not sure how that will work.

PRO
USA
#5  

@DJ It works GREAT!

@Justin I am using Compromise. here is a link https://github.com/spencermountain/compromise

In the Builds folder, I am using the compromise.js


var doc = nlp('the quick brown fox jumped over the lazy dog')
 var str = doc.nouns().out('text')
var ccc = doc.match('#Adjective fox').out('text')
var vrb = doc.verbs().out('text')
var frstn = doc.nouns().first().out('text')
print(ccc)
print(vrb)
print(frstn)
print(str)

and the output of this is:


Started
 brown fox
 jumped
 fox
 fox dog
Done (took: 00:00:00.1420776)

PRO
USA
#6  

Don't judge the coding, Keep in mind I am just learning JavaScript.

PRO
USA
#8  

This should take my Simple Robot Brain to the next level. After I get a better handle on JavaScript.