项目作者: eddieantonio

项目描述 :
Do lookups on an FST in Python!
高级语言: Python
项目地址: git://github.com/eddieantonio/fst-lookup.git
创建时间: 2019-01-21T16:59:55Z
项目社区:https://github.com/eddieantonio/fst-lookup

开源协议:MIT License

下载


FST Lookup

Tests
codecov
PyPI version
calver YYYY.MM.DD

Implements lookup for Foma finite state transducers.

Supports Python 3.5 and up.

Install

  1. pip install fst-lookup

Usage

Import the library, and load an FST from a file:

Hint: Test this module by downloading the eat FST!

  1. >>> from fst_lookup import FST
  2. >>> fst = FST.from_file('eat.fomabin')

Assumed format of the FSTs

fst_lookup assumes that the lower label corresponds to the surface
form, while the upper label corresponds to the lemma, and linguistic
tags and features: e.g., your LEXC will look something like
this—note what is on each side of the colon (:):

  1. Multichar_Symbols +N +Sg +Pl
  2. Lexicon Root
  3. cow+N+Sg:cow #;
  4. cow+N+Pl:cows #;
  5. goose+N+Sg:goose #;
  6. goose+N+Pl:geese #;
  7. sheep+N+Sg:sheep #;
  8. sheep+N+Pl:sheep #;

If your FST has labels on the opposite sides—e.g., the upper label
corresponds to the surface form and the upper label corresponds to
the lemma and linguistic tags—then instantiate the FST by providing
the labels="invert" keyword argument:

  1. fst = FST.from_file('eat-inverted.fomabin', labels="invert")

Hint: FSTs originating from the HFST suite are often inverted, so
try to loading the FST inverted first if .generate() or .analyze()
aren’t working correctly!

Analyze a word form

To analyze a form (take a word form, and get its linguistic analyzes)
call the analyze() function:

  1. def analyze(self, surface_form: str) -> Iterator[Analysis]

This will yield all possible linguistic analyses produced by the FST.

An analysis is a tuple of strings. The strings are either linguistic
tags, or the lemma (base form of the word).

FST.analyze() is a generator, so you must call list() to get a list.

  1. >>> list(sorted(fst.analyze('eats')))
  2. [('eat', '+N', '+Mass'),
  3. ('eat', '+V', '+3P', '+Sg')]

Generate a word form

To generate a form (take a linguistic analysis, and get its concrete
word forms), call the generate() function:

  1. def generate(self, analysis: str) -> Iterator[str]

FST.generate() is a Python generator, so you must call list() to get
a list.

  1. >>> list(fst.generate('eat+V+Past')))
  2. ['ate']

Contributing

If you plan to contribute code, it is recommended you use Poetry.
Fork and clone this repository, then install development dependencies
by typing:

  1. poetry install

Then, do all your development within a virtual environment, managed by
Poetry:

  1. poetry shell

Type-checking

This project uses mypy to check static types. To invoke it on this
package, type the following:

  1. mypy -p fst_lookup

Running tests

To run this project’s tests, we use py.test:

  1. poetry run pytest

C Extension

Building the C extension is handled in build.py

To disable building the C extension, add the following line to .env:

  1. export FST_LOOKUP_BUILD_EXT=False

(by default, this is True).

To enable debugging flags while working on the C extension, add the
following line to .env:

  1. export FST_LOOKUP_DEBUG=TRUE

(by default, this is False).

Fixtures

If you are creating or modifying existing test fixtures (i.e., mostly
pre-built FSTs used for testing), you will need the following
dependencies:

Fixtures are stored in tests/data/. Here, you will use make to
compile all pre-built FSTs from source:

  1. make

License

Copyright © 2019–2021 National Research Council Canada.

Licensed under the MIT license.