Giter Club home page Giter Club logo

Comments (3)

bear avatar bear commented on September 28, 2024

the nlp() routine tries all of the words to find out which one is a possible date/time to parse, so it found "Sunday" and went with it

from parsedatetime.

thadguidry avatar thadguidry commented on September 28, 2024

@bear Hmm. OK. Makes sense.

I was hoping for some kind of way now for parsedatetime to return to me a level of confidence that it has a Day, Month, and Year (Date without Time) within a very close string based on a Levenshtein distance ? I need to know "Hey, this is nearly most probably a Date, because I found a Day, Month, Year which are very close to one another in this string".

Perhaps having an option parameter for the parse() or nlp() where it would output nulls instead when not finding a Day or Month or Year ? The output would then look like:

OUTPUT:
((datetime.datetime(null, null, null, null, null, null), null, null, null, 'sunday'),)

or another option, returning 4 for "invalid Date, missing either a Day, or Month, or Year" and adding to the :
0 = not parsed at all
1 = parsed as a C{date}
2 = parsed as a C{time}
3 = parsed as a C{datetime}
4 = parsed as an invalid Date, missing either a Day, or Month, or Year

Thoughts?

from parsedatetime.

bear avatar bear commented on September 28, 2024

I've always wanted to add a new result to both parse() and nlp() that was a list of possibles with weights - so your Levenshtein distance value idea would be a perfect use case for this.

So nlp("Sunday I owe $300") would return something like:
[(2014, 11, 3, 12, 0, 0, 0, 0, 1), 2, "Sunday", 0),
(2014, 10, 29, 3, 0, 0, 2, 302, 1), 2, "$300", 5)]

So yea, something like the above being returned when a parameter is enabled ... +1 for sure

from parsedatetime.

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.