Difference between revisions of "Talk:Automatically trimming a monodix"
(→Compounds vs trimming in sme: new section) |
|||
Line 41: | Line 41: | ||
== Compounds vs trimming in sme == |
== Compounds vs trimming in sme == |
||
The sme.lexc can't be trimmed using the simple HFST trick, due to compounds. |
|||
When we have lt-trim we will be able to make it understand compounds by e.g. restarting on + |
Revision as of 12:38, 18 November 2013
Contents
Implementing automatic trimming in lttoolbox
The simplest method seems to be to first create the analyser in the normal way, then loop through all its states (see transducer.cc:Transducer::closure for a loop example), trying to do the same steps in parallel with the compiled bidix:
trim(current_a, current_b): for symbol, next_a in analyser.transitions[current_a]: found = false for s, next_b in bidix.transitions[current_b]: if s==symbol: trim(next_a, next_b) found = true if seen tags: found = true if !found && !current_b.isFinal(): delete symbol from analyser.transitions[current_a] // else: all transitions from this point on will just be carried over unchanged by bidix trim(analyser.initial, bidix.initial)
Trimming while reading the XML file might have lower memory usage, but seems like more work, since pardefs are read before we get to an "initial" state.
https://github.com/unhammer/lttoolbox/branches has some experiments
Unbalanced loops
Say analyser is j+<n> while bidix is j+jjj<n> – ideally we could "trim" analyser to j+jjj<n>, but is it possible to do that in a tractable manner?
Worse is better
If it's difficult to get a complete lt-trim solution that handles <g> and <j> perfectly a stop-gap might be to distribute a dictionary of the multiwords with the language pair, and leave only "simple" words in the monolingual package dictionary. The multiwords would be manually trimmed to the pair, the simple words trimmed with lt-trim, and a new lt-merge
command would merge the two compiled dictionaries (as seperate sections).
(An lt-merge command might also be helpful when compiling att transducers, which makes anything that looks like punctuation inconditional, and anything else standard.)
Compounds vs trimming in sme
The sme.lexc can't be trimmed using the simple HFST trick, due to compounds.
When we have lt-trim we will be able to make it understand compounds by e.g. restarting on +