Home

Awesome

Overview

This page contains work concerning libpostal done by Senzing.

Libpostal is an open source address parser library written in C. It has true global coverage, is fast and renders parses of high accuracy. It is used by Senzing in its Senzing API product. You can find libpostal here: https://github.com/openvenues/libpostal.

Senzing data model

Senzing has been working on updates of the libpostal data model for some time. The source data used is the same as libpostal uses, i.e. Open Street Map and OpenAddresses and newest data from both sources are being used. We do adjustments to the training data to correct errors and improve parses based on customer feedback. We have included regular updates to the model in our Senzing API product. We are now making our data models available to broader audience.

Version 1.1.0

This version is composed of 3 files

To download click on the links below and the browser with download them for you:

or you can use curl

curl https://public-read-libpostal-data.s3.amazonaws.com/v1.1.0/language_classifier.tar.gz -o language_classifier.tar.gz
curl https://public-read-libpostal-data.s3.amazonaws.com/v1.1.0/libpostal_data.tar.gz -o libpostal_data.tar.gz
curl https://public-read-libpostal-data.s3.amazonaws.com/v1.1.0/parser.tar.gz -o parser.tar.gz

To install extract the file in the libpostal data directory:

tar -zxvf ../language_classifier.tar.gz
tar -zxvf ../libpostal_data.tar.gz
tar -zxvf ../parser.tar.gz

Changes and improvements from version 1.0.0

Quality

We have made some modification to our test data set to improve variations of address and test for improvements we made in this version. It now has 12951 addresses from 89 countries. The over all parsing accuracy improved by 1.09%. We had improved statistics for 33 countries and had regression with 10. You can find statistical comparison of the tests here. The bulk of the test data we used is located here. We removed about 100 records from the test set, because we don't have permissions to publish them.

Training data

The data we used for creating the data model is availabe for download. There are total over 1.7 billion lines in 8 files. To download click the links below:

Once downloaded, extract them with

tar -zxvf <file name>

Version 1.0.0

This version is composed of 3 files

To download click on the links below and the browser with download them for you:

or you can use curl

curl https://public-read-libpostal-data.s3.amazonaws.com/v1.0.0/language_classifier.tar.gz -o language_classifier.tar.gz
curl https://public-read-libpostal-data.s3.amazonaws.com/v1.0.0/libpostal_data.tar.gz -o libpostal_data.tar.gz
curl https://public-read-libpostal-data.s3.amazonaws.com/v1.0.0/parser.tar.gz -o parser.tar.gz

To install extract the file in the libpostal data directory:

tar -zxvf ../language_classifier.tar.gz
tar -zxvf ../libpostal_data.tar.gz 
tar -zxvf ../parser.tar.gz

Since the data from the 2 first files is already in the libpostal data directory, only the last file really needs to be downloaded and extracted.

What this version addresses

Here are some of the improvements this model offers:

Quality

We have a data set of 12950 addresses from 89 countries that we use to test and verify the quality of our models. The data set was generated using random addresses from OSM, minimally 50 per country. Hard-to-parse addresses were gotten from Senzing support team and customers and from the libpostal github page and added to this set. We ran this data through and compared the results to the default libpostal model. You can find statistical comparison of the tests here.

A spreadsheet with more details about the results can be downloaded here: Parsing_comparison.xls.