Difference between revisions of "User:Firespeaker/HFST bug"

From Apertium
Jump to navigation Jump to search
(Created page with 'In 2011, a bug in how HFST handles words containing spaces was [http://sourceforge.net/p/hfst/bugs/59/ documented and resolved], but it introduced a new bug. This page documents…')
 
Line 26: Line 26:
 
:: <code>^medvedev/medvedev$</code>
 
:: <code>^medvedev/medvedev$</code>
 
* <code>$ echo "erke medvedev" | hfst-proc test.hfst.ol</code>
 
* <code>$ echo "erke medvedev" | hfst-proc test.hfst.ol</code>
:: <code>^erke medvedev/<span style="color: red">*</a>erke medvedev$</code>
+
:: <code>^erke medvedev/<span style="color: red">*</span>erke medvedev$</code>

Revision as of 07:32, 17 January 2013

In 2011, a bug in how HFST handles words containing spaces was documented and resolved, but it introduced a new bug. This page documents the new behaviour.

text.lexc

Multichar_Symbols

% 

LEXICON Root

erke:erke # ;
erke% me:erke% me # ;
medvedev:medvedev # ;

Compiling

  1. $ hfst-lexc test.lexc -o test.hfst
  2. $ hfst-invert test.hfst | hfst-fst2fst -w -o test.hfst.ol

Testing

  • $ echo "erke" | hfst-proc test.hfst.ol
^erke/erke$
  • $ echo "erke me" | hfst-proc test.hfst.ol
^erke me/erke me$
  • $ echo "medvedev" | hfst-proc test.hfst.ol
^medvedev/medvedev$
  • $ echo "erke medvedev" | hfst-proc test.hfst.ol
^erke medvedev/*erke medvedev$