Constraint-based lexical selection module

From Apertium
Jump to navigation Jump to search

apertium-lex-tools provides a module for compiling lexical selection rules and processing them in the pipeline. Rules can be manually written, or learnt from monolingual or parallel corpora.

Installing[edit]

Prerequisites and compilation are the same as lttoolbox and apertium, as well as (on Debian/Ubuntu) zlib1g-dev.

See Installation, for most real operating systems you can now get pre-built packages of apertium-lex-tools (as well as other core tools) through your regular package manager.

Lexical transfer in the pipeline[edit]

lrx-proc runs between bidix lookup and the first stage of transfer, e.g.

… apertium-pretransfer | lt-proc -b kaz-tat.autobil.bin | lrx-proc kaz-tat.lrx.bin \
  | apertium-transfer -b apertium-kaz-tat.kaz-tat.t1x  kaz-tat.t1x.bin | …

This is the output of lt-proc -b on an ambiguous bilingual dictionary:

[74306] ^El<det><def><f><sg>/The<det><def><f><sg>$ 
^estació<n><f><sg>/season<n><sg>/station<n><sg>$ ^més<preadv>/more<preadv>$ 
^plujós<adj><f><sg>/rainy<adj><sint><f><sg>$ 
^ser<vbser><pri><p3><sg>/be<vbser><pri><p3><sg>$ 
^el<det><def><f><sg>/the<det><def><f><sg>$ 
^tardor<n><f><sg>/autumn<n><sg>/fall<n><sg>$^,<cm>/,<cm>$ 
^i<cnjcoo>/and<cnjcoo>$ ^el<det><def><f><sg>/the<det><def><f><sg>$ 
^més<preadv>/more<preadv>$ ^sec<adj><f><sg>/dry<adj><sint><f><sg>$ 
^el<det><def><m><sg>/the<det><def><m><sg>$ 
^estiu<n><m><sg>/summer<n><sg>$^.<sent>/.<sent>$

I.e.

L'estació més plujosa és la tardor, i la més seca l'estiu

Goes to:

The season/station more rainy is the autumn/fall, and the more dry the summer.

Apertium/lttoolbox 3.3 and onwards support the -b option to lt-proc / apertium-transfer.

Usage[edit]

Make a simple rule file,

<rules>
  <rule>
    <match lemma="criminal" tags="adj"/>
    <match lemma="court" tags="n.*"><select lemma="juzgado" tags="n.*"/></match>
  </rule>
</rules>

Then compile it:

$ lrx-comp rules.xml rules.fst
1: 32@32

The input is the output of lt-proc -b,

$ echo "^There<adv>/Allí<adv>$ ^be<vbser><pri><p3><sg>/ser<vbser><pri><p3><sg>$ ^a<det><ind><sg>/uno<det><ind><GD><sg>$ 
^criminal<adj>/criminal<adj><mf>/delictivo<adj>$ 
^court<n><sg>/corte<n><f><sg>/cancha<n><f><sg>/juzgado<n><m><sg>/tribunal<n><m><sg>$^.<sent>/.<sent>$" | ./lrx-proc -t rules.fst 
1:SELECT<1>:court<n><sg>:<select>juzgado<n><ANY_TAG>
^There<adv>/Allí<adv>$ ^be<vbser><pri><p3><sg>/ser<vbser><pri><p3><sg>$ ^a<det><ind><sg>/uno<det><ind><GD><sg>$ 
^criminal<adj>/criminal<adj><mf>/delictivo<adj>$ ^court<n><sg>/juzgado<n><m><sg>$^.<sent>/.<sent>$

Rule format[edit]

A rule is made up of an ordered list of:

  • Matches
  • Operations (select, remove)
<rule>  
  <match lemma="el"/>  
  <match lemma="dona" tags="n.*">    
    <select lemma="wife"/> 
  </match>  
  <match lemma="de"/>
</rule>

<rule>  
  <match lemma="estació" tags="n.*">    
    <select lemma="season"/> 
  </match>  
  <match lemma="més"/>
  <match lemma="plujós"/>
</rule>

<rule>  
  <match lemma="guanyador"/>
  <match lemma="de"/>
  <match/>
  <match lemma="prova" tags="n.*">    
    <select lemma="event"/> 
  </match>  
</rule>

Weights[edit]

The rules compete with each other. That is why a weight is assigned to each of them. In the case of a word that has several possible translations in the dictionary, all rules are evaluated. For each possible translation, the weights of the rules that match the context of the use of the word in the sentence are added up, and the translation with the highest value is chosen. For instance, let's consider these two rules:

  <rule weight="0.8">
    <match lemma="ferotge" tags="adj.*"><select lemma="farouche"/></match>
  </rule>
  <rule weight="1.0">
    <or>
      <match lemma="animal" tags="n.*"/>
      <match lemma="animau" tags="n.*"/>
    </or>
    <match lemma="ferotge" tags="adj.*"><select lemma="féroce"/></match>
  </rule>

If we have "un animal ferotge", the translation "farouche" will get 0.8 points, and "féroce" will get 1.0. The latter will be chosen.

Operator OR[edit]

The boolean operator OR can be used, as shown in the previous example:

  <rule weight="1.0">
    <or>
      <match lemma="animal" tags="n.*"/>
      <match lemma="animau" tags="n.*"/>
    </or>
    <match lemma="ferotge" tags="adj.*"><select lemma="féroce"/></match>
  </rule>

Sequences[edit]

Often, the same words are used in OR's. For readability and maintainability, they can be defined in a special sequence bloc, for instance:

  <def-seqs>
    <def-seq n="jorns"><or>
      <match lemma="diluns" tags="n.*"/>
      <match lemma="dimars" tags="n.*"/>
      <match lemma="dimècres" tags="n.*"/>
      <match lemma="dimèrcs" tags="n.*"/>
      <match lemma="dijòus" tags="n.*"/>
      <match lemma="dijaus" tags="n.*"/>
      <match lemma="divendres" tags="n.*"/>
      <match lemma="divés" tags="n.*"/>
      <match lemma="dissabte" tags="n.*"/>
      <match lemma="dimenge" tags="n.*"/>
    </or></def-seq>

    <def-seq n="meses"><or>
      <match lemma="genèr" tags="n.*"/>
      <match lemma="genièr" tags="n.*"/>
      <match lemma="janvièr" tags="n.*"/>
      <match lemma="gèr" tags="n.*"/>
      <match lemma="febrièr" tags="n.*"/>
      <match lemma="heurèr" tags="n.*"/>
      <match lemma="hrevèr" tags="n.*"/>
      <match lemma="herevèr" tags="n.*"/>
      <match lemma="herbèr" tags="n.*"/>
      <match lemma="hiurèr" tags="n.*"/>
      <match lemma="març" tags="n.*"/>
      <match lemma="abrial" tags="n.*"/>
      <match lemma="abril" tags="n.*"/>
      <match lemma="abriu" tags="n.*"/>
      <match lemma="abrieu" tags="n.*"/>
      <match lemma="mai" tags="n.*"/>
      <match lemma="junh" tags="n.*"/>
      <match lemma="julh" tags="n.*"/>
      <match lemma="juin" tags="n.*"/>
      <match lemma="gulh" tags="n.*"/>
      <match lemma="julhet" tags="n.*"/>
      <match lemma="gulhet" tags="n.*"/>
      <match lemma="junhsèga" tags="n.*"/>
      <match lemma="agost" tags="n.*"/>
      <match lemma="aost" tags="n.*"/>
      <match lemma="setembre" tags="n.*"/>
      <match lemma="seteme" tags="n.*"/>
      <match lemma="octobre" tags="n.*"/>
      <match lemma="octòbre" tags="n.*"/>
      <match lemma="novembre" tags="n.*"/>
      <match lemma="noveme" tags="n.*"/>
      <match lemma="decembre" tags="n.*"/>
      <match lemma="deceme" tags="n.*"/>
    </or></def-seq>
  </def-seqs>

They have to be referenced in the rules as follows:

  <rule weight="1.0">
    <or>
      <seq n="jorns"/>
      <seq n="meses"/>
      <match lemma="prima" tags="n.*"/>
      <match lemma="estiu" tags="n.*"/>
      <match lemma="auton" tags="n.*"/>
      <match lemma="ivèrn" tags="n.*"/>
    </or>
    <match lemma="passat" tags="adj.*"><select lemma="dernier"/></match>
  </rule>

Note that if you add a <def-seqs> section and you had only a <rules> section already, then you'll need to put both inside of an <lrx> section:

  <lrx>
    <def-seqs>
    ...
    </def-seqs>
    <rules>
    ...
    </rules>
  </lrx>

Operator REPEAT[edit]

Imagine the translation of the Occitan word "còrn" that may be "corner" or "horn" (of an animal). We could have as a first version:

  <rule weight="0.8">
    <match lemma="còrn" tags="n.*"><select lemma="corner"/></match>
  </rule>
  <rule weight="1.0" >
    <match lemma="còrn" tags="n.*"><select lemma="horn"/></match>
    <match lemma="de" tags="pr"/>
    <or>
      <seq n="animals"/>
    </or>
  </rule>

But this will not match if we have an adjective that follows "còrn" (usually adjectives follow the nouns in Occitan). We could add a rule like:

  <rule weight="1.0" >
    <match lemma="còrn" tags="n.*"><select lemma="horn"/></match>
    <match tags="adj.*"/>
    <match lemma="de" tags="pr"/>
    <or>
      <seq n="animals"/>
    </or>
  </rule>

Using the operator REPEAT we can have a more compact way just expanding rule 2:

  <rule weight="1.0" >
    <match lemma="còrn" tags="n.*"><select lemma="horn"/></match>
    <repeat from="0" upto="2">
      <match tags="adj.*"/>
    </repeat>
    <match lemma="de" tags="pr"/>
    <or>
      <seq n="animals"/>
    </or>
  </rule>

Note that now we are even accepting two adjectives after "còrn" instead of only one (without adding a fourth rule for dealing with two adjectives).

And, if we think that horn can be not only big, but also "very big", we can improve the rule this way:

  <rule weight="1.0" >
    <match lemma="còrn" tags="n.*"><select lemma="horn"/></match>
    <repeat from="0" upto="3">
      <or>
        <match tags="adv"/>
        <match tags="adj.*"/>
      </or>
    </repeat>
    <match lemma="de" tags="pr"/>
    <or>
      <seq n="animals"/>
    </or>
  </rule>

Next, a second REPEAT block could be added between the preposition "de" and the sequence to deal with the possible existence of determiners, adjectives, etc.

REPEAT hack[edit]

Sometimes, a lexical selection has unclear rules. For instance the Occitan noun "cosina" may be "(female) cousin" or "kitchen". We can decide that the latter is the most usual translation, so it will be the default. On the other hand, we will select "cousin" if there is another parent term nearby, such as "father", "mother" or "brother". For this we can do something like:

  <rule weight="0.8">
    <match lemma="cosina" tags="n.*"><select lemma="kitchen"/></match>
  </rule>
  <rule weight="1.0" >
    <match lemma="cosina" tags="n.*"><select lemma="cousin"/></match>
    <repeat from="0" upto="4">
      <or>
        <match tags=""/>
        <match tags="*"/>
      </or>
    </repeat>
    <or>
      <seq n="familia"/>
    </or>
  </rule>
  <rule weight="1.0" >
    <or>
      <seq n="familia"/>
    </or>
    <repeat from="0" upto="4">
      <or>
        <match tags=""/>
        <match tags="*"/>
      </or>
    </repeat>
    <match lemma="cosina" tags="n.*"><select lemma="cousin"/></match>
  </rule>

Rule 2 selects "cousin" if, at most, after four words there is a family word. Rule 3 does the same, but looking at up to 4 words in front. Note the OR operator within the REPEAT: <match tags="*"/> matches any known word (i.e. that gets a morphological analysis), while <match tags=""/> matches unknown words (i.e. without any morphological tag). Without the OR operation, the rules would try to match precisely a sequence of one unknown word followed by one known one.

Macros[edit]

A macro is a set of rules for a common purpose that can be used for several words. For instance, quite often a verb has a different translation if it is pronominal or not, or if it is transitive or not.

Let's take as a example the Occitan verb "recordar" that is usually translated into French as "rappeler" ("remind"), but as a pronominal verb it would be "(se) souvenir" ("remember"). The problem is that to recognise a pronominal context one needs quite a few rules to prove that there is a personal unstressed pronoun before (or after) the verb and that it has the same person and number as the verb. So a macro could be created like:

    <!-- p1 = verb oci, p2 = verb fra no pron, p3 = verb fra pron -->
    <def-macro n="verb_nopron_pron" npar="3">
      <rule weight="0.8">
        <match plemma="1" tags="vblex.*"><select plemma="2"/></match>
      </rule>
      <rule weight="1.0">
        <match tags="prn.pro.p1.*.sg"/>
        <match plemma="1" tags="vblex.*.p1.sg"><select plemma="3"/></match>
      </rule>
      <rule weight="1.0">
        <match tags="prn.pro.p1.*.sg"/>
        <match tags="prn.pro.*"/>
        <match plemma="1" tags="vblex.*.p1.sg"><select plemma="3"/></match>
      </rule>
      <rule weight="1.0">
        <match plemma="1" tags="vblex.*.p1.sg"><select plemma="3"/></match>
        <match tags="prn.enc.p1.*.sg"/>
      </rule>
      <rule weight="1.0">
        <match tags="prn.pro.p2.*.sg"/>
        <match plemma="1" tags="vblex.*.p2.sg"><select plemma="3"/></match>
      </rule>
      <rule weight="1.0">
        <match tags="prn.pro.p2.*.sg"/>
        <match tags="prn.pro.*"/>
        <match plemma="1" tags="vblex.*.p2.sg"><select plemma="3"/></match>
      </rule>
      <rule weight="1.0">
        <match plemma="1" tags="vblex.*.p2.sg"><select plemma="3"/></match>
        <match tags="prn.enc.p2.*.sg"/>
      </rule>

    </def-macro>

The call to the rule should be:

  <macro n="verb_nopron_pron"><with-param v="recordar"/><with-param v="rappeler"/><with-param v="souvenir"/></macro>

For other verbs a call to the same macro is sufficient. The code is much more readable and maintainable than without macros.

Special cases[edit]

Matching a capitalized word[edit]

Below, the noun "audiència" will be usually translated as "audience", but if it is written as "Audiència", "cour# d'assises" (i.e. cour<g><b/>d'assises</g>) will be elected:

  <rule weight="0.8">
    <match lemma="audiència" tags="n.*"><select lemma="audience"/></match>
  </rule>
  <rule weight="1.0">
    <match lemma="Audiència" tags="n.*"><select lemma="cour# d'assises"/></match>
  </rule>

Matching an unknown word[edit]

Below, the noun "mossèn" will be usually translated as "curé", but if it is followed by an anthroponym (rule 2) or an unknown word (rule 3), "monseigneur" will be elected:

  <rule weight="0.8">
    <match lemma="mossèn" tags="n.*"><select lemma="curé"/></match>
  </rule>
  <rule weight="1.0">
    <match lemma="mossèn" tags="n.m.sg"><select lemma="monseigneur"/></match>
    <match tags="np.ant.*"/>
  </rule>
  <rule weight="1.0">
    <match lemma="mossèn" tags="n.m.sg"><select lemma="monseigneur"/></match>
    <match tags=""/>
  </rule>

The last rule can be improved specifying that the unknown word should be capitalized:

  <rule weight="1.0">
    <match lemma="mossèn" tags="n.m.sg"><select lemma="monseigneur"/></match>
    <match tags="" case="Aa"/>
  </rule>

Some more new stuff[edit]

Writing and generating rules[edit]

Writing[edit]

Main article: How to get started with lexical selection rules

A good way to start writing lexical selection rules is to take a corpus, and search for the problem word, you can then look at how the word should be translated, and the contexts it appears in.

Generating[edit]

Parallel corpus
Main article: Learning rules from parallel and non-parallel corpora
Monolingual corpora
Main article: Running_the_monolingual_rule_learning

Todo and bugs[edit]

  • xml compiler
  • compile rule operation patterns, as well as matching patterns
  • make rules with gaps work
  • optimal coverage
  • fix bug with processing multiple sentences
  • instead of having regex OR, insert separate paths/states.
  • optimise the bestPath function (don't use strings to store the paths)
  • autotoolsise build
  • add option to compiler to spit out ATT transducers
  • fix bug with outputting an extra '\n' at the end
  • edit transfer.cc to allow input from lt-proc -b
  • profiling and speed up
    • why do the regex transducers have to be minimised ?
    • retrieve vector of strings corresponding to paths, instead of a single string corresponding to all of the paths
    • stop using string processing to retrieve rule numbers
    • retrieve vector of vectors of words, not string of words from lttoolbox
    • why does the performance drop substantially with more rules ?
    • add a pattern -> first letter map so we don't have to call recognise() with every transition (didn't work so well)
  • there is a problem with the regex recognition code: see bug1 in testing.
  • there is a problem with two defaults next to each other; bug2 in testing.
  • default to case insensitive ? (perhaps case insensitive for lower case, case sensitive for uppercase) -- see bug4 in testing/.
  • make sure that -b works with -n too.
  • testing
  • null flush
  • add option to processor to spit out ATT transducers
  • use brown clusters to merge rules with the same context, or remove parts of context from rules which are not relevant?
  • https://sourceforge.net/p/apertium/tickets/64/ <match tags="n.*"></match> never matches, while <match tags="n.*"/> does
Rendimiento
  • 2011-12-12: 10,000 words / 97 seconds = 103 words/sec (71290 words, 14.84 sec = 4803 words/sec)
  • 2011-12-19: 10,000 words / 4 seconds = 2,035 words/sec (71290 words, 8 secs = 8911 words/sec)

Preparedness of language pairs[edit]

Pair LR (L) LR (L→R) Fertility Rules
apertium-is-en 18,563 22,220 1.19 115
apertium-es-fr
apertium-eu-es 16,946 18,550 1.09 250
apertium-eu-en
apertium-br-fr 20,489 20,770 1.01 256
apertium-mk-en 8,568 10,624 1.24 81
apertium-es-pt
apertium-es-it
apertium-es-ro
apertium-en-es 267,469 268,522 1.003 334
apertium-en-ca


Troubleshooting[edit]

If you get the message lrx-comp: error while loading shared libraries: libapertium3-3.2.so.0: cannot open shared object file: No such file or directory you may need to put this in your ~/.bashrc

LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"

Then open a new terminal before using lrx-comp/lrx-proc.

On a 64-bit machine, apertium-lex-tools make may fail because the zlib is missing, even though you have zlib1g-dev installed. If you get the error message /usr/bin/ld: cannot find -lz, do the following: install package lib32z1-dev (which will install many other dependencies), even though it is a 32-bit binary, it is needed to compile the sources.

See also[edit]

References[edit]