Coder Social home page Coder Social logo

Comments (4)

spencermountain avatar spencermountain commented on May 23, 2024 2

hey, yep that's right - compromise is tokenizing punctuation into pre-text, and post-text, and has some opinions on what term a punctuation should be on, or if it should hang on the left or the right of a term.

There's also the guesswork in .text() if it should print leading or trailing punctuation - sometimes it should and sometimes it shouldn't, and it decides based on how chopped-up the match is. I think that's what's happening in Ned Flanders examples.

That being said, this does appear to be a bug:

nlp('this is (kinda) messy').not('this').parentheses()

I'll take a look at all of these, if I can, today.
cheers

from compromise.

spencermountain avatar spencermountain commented on May 23, 2024 1

fixed in 14.12.0

nlp('this is (kinda) messy').not('this').parentheses() //'(kinda)'

cheers

from compromise.

track0x1 avatar track0x1 commented on May 23, 2024

I noticed this happens too.
Seems to be when not() is omitting text that occurs before punctuation. For me this has manifested when I pair not() with parentheses().

// Works as expected
> nlp('this is (kinda) messy').not('messy').parentheses().out('array')
[ '(kinda)' ]

// No results for parentheses()
> nlp('this is (kinda) messy').not('this').parentheses().out('array')
[]

// Multiple terms in parentheses are lost
> nlp('this is (kinda really) messy').not('this').parentheses().out('array')
[ '(kinda' ]

from compromise.

spencermountain avatar spencermountain commented on May 23, 2024

hey @Fdawgs - you may want to try .remove() which mutates the document, instead of .not(), which just changes the current match. It's a subtle difference, but .remove() will do some of the things you seek, regarding repairing sentence-punctuation, and things:

const text3 = 'The leftorium sells left-handed products, the owner is Ned Flanders!'
const result3 = nlp(text3).remove('Ned Flanders').text()
console.log(result3)
//The leftorium sells left-handed products, the owner is!

Please let me know if you spot .remove() mangling punctuation in unexpected ways. I don't think it's been tested very well. It would be fun to improve.

@track0x1 fix is on dev, will be part of next release, likely this week.
cheers

from compromise.

Related Issues (20)

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.