Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md to mention new data model, +build-essential to ubuntu deps #91

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Before using the Python bindings, you must install the libpostal C library. Make

**On Ubuntu/Debian**
```
sudo apt-get install curl autoconf automake libtool python-dev pkg-config
sudo apt-get install curl autoconf automake libtool python-dev pkg-config build-essential
```
**On CentOS/RHEL**
```
Expand Down Expand Up @@ -54,6 +54,16 @@ To install the Python library, just run:
pip install postal
```

**Senzing Data Model**

There is an improved, regularly updated [parsing model](https://github.com/openvenues/libpostal?tab=readme-ov-file#installation-with-an-alternative-data-model) from Senzing. "Accuracy improvements averaged more than 4% for all countries, but improvements in specific countries were as high as 87%." 27 nations have 10% or greater improvements in accuracy.

To build Libpostal with the new model, alter the `configure` command above:

```bash
./configure --datadir=[...some dir with a few GB of space...] MODEL=senzing
```

Compatibility
-------------

Expand Down