compromise icon indicating copy to clipboard operation
compromise copied to clipboard

modest natural-language processing

Results 120 compromise issues
Sort by recently updated
recently updated
newest added

I am having to search through bodies of text for specific words which may be non-normalized; which is to (perhaps incorrectly) say they have the possibility of being plural, singular,...

hmmm
enhancement

The currency parser seems to need some work. Things like ("Five cents") or ("5 dollars") just return "5"... Plus we should be adding rules for all things like "(one|five|ten) (dollar|dollars)...

Another rule set. Can tags 75% + of this list. ```js let list = [ "Algoma District School Board", "Avon Maitland District School Board", "Bluewater District School Board", "District School...

There are still some issues with `#Month` - possibly related to #972 Tested on Compromise `v14.8.2` and also on `dev` branch on `2023-04-05`. It only seems to affect `March` and...

Another rule set - Probably can be expanded and more than likely should be checking for "and" in next word. If match found - do not match. As we may...

Hoping this get's done, but will be a big enough task. Would be nice to support added for this - ```js let lexicon = {"House":["ProperNoun"], "house":["Noun"] } nlp("I am watching...

hmmm

Again - another rule kit. ```js /** * Extracts government of country from a given text. * * @param {string} str - The input text to analyze. * @returns {string|false}...

Was working on this. Don't know where to submit it for PR. Feel free to mention any concerns or add any tweaks / boolean for your test suites etc (if...

Another rule kit - for things like "Bank of Canada". ```js /** * Extracts Bank of #Place from a given text. * * @param {string} str - The input text...

My overall goal is to identify PresentTense sentences with a #Person or #Pronoun subject. While troubleshooting, I ran into an issue with the following sentence. ```javascript nlp("She led a diverse...

bug