Skip to main content

Natural Language Generation library for Python

Project description

Current Status build

This is just a starting point - an alpha version - mainly a wrapper around SimpleNLG.

Although it is possible to go from first order logic to text, there is no sophistication in how things are processed. The library is still missing basics like aggregation or referring expression generation.

Installation

Either download the code from the repository and run python setup.py install or use pip: pip install nlglib.

Intro

NLGlib is a library for natural language generation (NLG) written in Python. It seeks to fill a gap in the NLG field. There are currently no off-the-shelf libraries that one could take and incorporate into other projects. The aim of this library is to be useful for general projects that would like to add a bit of text generation to their capabilities.

Audience

The library should be usable by programmers with no prior linguistic knowledge. Given that the aim of the library is language generation, some linguistic knowledge is necessary but you should be able to pick it up from the examples.

Scope

The aim of the library is to create a base for NLG system starting from content selection all the way to realisation. The library will cover document structuring tools, lexicalisation, referring expression generation and aggregation. Realisation will be done using other realisation libraries (SimpleNLG or pynlg).

History

NLGlib started as a part of the EPSRC project Scrutable Autonomous Systems (SAsSy): www.scrutable-systems.org When the project finished, the code was moved to this repository to create a stand-alone re-usable library.

Example

from nlglib.realisation.simplenlg.realisation import Realiser
from nlglib.microplanning import *

realise_en = Realiser(host='nlg.kutlak.info', port=40000)
realise_es = Realiser(host='nlg.kutlak.info', port=40001)


def main():
    p = Clause("María", "perseguir", "un mono")
    p['TENSE'] = 'PAST'
    # expected = 'María persigue un mono.'
    print(realise_es(p))
    p = Clause(NP("la", "rápida", "corredora"), VP("perseguir"), NP("un", "mono"))
    subject = NP("la", "corredora")
    objekt = NP("un", "mono")
    verb = VP("perseguir")
    subject.premodifiers.append("rápida")
    p.subject = subject
    p.predicate = verb
    p.object = objekt
    # expected = 'La rápida corredora persigue un mono.'
    print(realise_es(p))
    p = Clause(NP('this', 'example'), VP('show', 'how cool simplenlg is'))
    # expected = This example shows how cool simplenlg is.
    print(realise_en(p))


if __name__ == '__main__':
    main()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nlglib-0.2.1.tar.gz (55.0 kB view details)

Uploaded Source

Built Distribution

nlglib-0.2.1-py3-none-any.whl (3.3 MB view details)

Uploaded Python 3

File details

Details for the file nlglib-0.2.1.tar.gz.

File metadata

  • Download URL: nlglib-0.2.1.tar.gz
  • Upload date:
  • Size: 55.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.0.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.5

File hashes

Hashes for nlglib-0.2.1.tar.gz
Algorithm Hash digest
SHA256 1bc4f9fc03efd9e744f0ddaadd324a13e61da47ac238427f25094e6164d5617f
MD5 4992ba1ec0963bf6fe1d6efa8196c3ca
BLAKE2b-256 8b7e6ec0cab56865c6ad845118d88f9c1e7a95e4769e9dc3c400fd8bbc720fbd

See more details on using hashes here.

File details

Details for the file nlglib-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: nlglib-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.0.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.5

File hashes

Hashes for nlglib-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 85953dcf24fd01c1ed2a957e590dbc3f3c8f5dc5bf30c5b4062ca0fc34582d1d
MD5 73d07e415d4abfef88742fe05b62c398
BLAKE2b-256 d2bde3572164a3aaa806019c6f51c53d036d256b7c8fc03a880d3a2e073675cd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page