Giter Site home page Giter Site logo

Comments (4)

jdemaris avatar jdemaris commented on May 12, 2024

Easiest route from my experience is:

{k: v for (v, k) in parse_address('330 11th Ave Apt 1')}

from pypostal.

antimirov avatar antimirov commented on May 12, 2024

Yes, that's what I did. What I first did not see was that the order of the output tuple was always the same. The issue is solved, thank you!

from pypostal.

albarrentine avatar albarrentine commented on May 12, 2024

Hi @antimirov, yes, the dictionary comprehension should do the trick.

As a quick background on why it's formatted this way, the underlying sequence model takes an array of tokens like this:

['1010', 'easy', 'st', 'ottawa', 'k1a', '0b1']

and predicts an equal-length array of labels, one per token, like this:

['house_number', 'road', 'road', 'city', 'postcode', 'postcode']

For convenience, we roll those up into phrases wherever there's a contiguous sequence of the same label. However, a dictionary would make an implicit assumption that there's only one of each address component.

Most of the time, and for most components, this is true. The output roughly corresponds to fields that one might store in a database or search index. It's usually a parser mistake when there are duplicate components, but in, say, India, the UK, Ireland, etc. it's possible to see something like "{venue/company name} {road} {house name}" in which case there might be two different legitimate components tagged house. While a dictionary is more convenient to work with, we try not to lose any information from the response, so it was either a dictionary of lists or a list of tuples. Decided on the latter as it used less memory and can be converted easily to a dict as needed.

Note: the address parser client from the C library prints something that looks like JSON, but it's not necessarily valid, as there can be duplicate keys. It's just easier to visualize the output as pseudo-JSON on the command line.

from pypostal.

adriangb avatar adriangb commented on May 12, 2024

Would it be possible to return the tuples in the opposite order? If the keys come first you can do dict(parse_address('330 11th Ave Apt 1')) which is both more succinct and performant.

On a related topic, it might be nice to think of this as a multi-dict. This is pretty common in the web world, e.g. for headers.
It's essentially a data structure with both references to the dictionary and list of tuples. When accessed as a dictionary duplicate keys are either dropped or merged. When iterated over duplicates are preserved.

from pypostal.

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.