GithubHelp home page GithubHelp logo

Comments (3)

wooorm avatar wooorm commented on July 28, 2024

Thanks, @facundoolano, for reaching out and using retext-keywords.

Thing is, retext-keywords is based on parts of speech, not on stopwords.
The POS tags default to NN, which makes unknown words eligible for inclusion in the results, which is the reason this occurs.

Solving word detection

One fix would be to wait for dariusk/pos-js#21 to be PRd (I believe this is an issue there).

Another would be to create a retext plug-in which expands those elision examples (my preference), or alternatively preprocess the given input and expand them by regexes (easiest):

input.replace(/you[’']ve/, 'you have')/*...*/;
retext.process(input/*, ...*/);

The last method should fix this issue, as then the words will be recognised correctly.

Solving stop-words

Or, this project could start supporting given configurable stop-words. Would you be interested in working on a PR for that? I could help guide you through the project!

from retext-keywords.

facundoolano avatar facundoolano commented on July 28, 2024

Thanks for answering. From your explanation it sounds like a plugin that handles the expansions before processing would work better than introducing stopwords. I'll consider working in such plugin in the future, but for now I guess I'll keep on replacing by hand before processing, so I can move forward with my current project.

from retext-keywords.

wooorm avatar wooorm commented on July 28, 2024

It’s quite some work, and I’m not very interested in working on it currently.
If someone wants this: create a PR on dariusk/pos-js!

from retext-keywords.

Related Issues (18)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.