Difference between revisions of "Become a language pair developer for Apertium"

From Apertium
Jump to navigation Jump to search
 
(20 intermediate revisions by 9 users not shown)
Line 1: Line 1:
  +
[[Devenir un développeur de paire de langues pour Apertium|En français]]
{{TOCD}}This is a 3-part, step-by-step guide on how to use a development version of Apertium to make a change in a language pair. These instructions assume that you are using [http://wiki.apertium.org/wiki/Apertium_on_Ubuntu Ubuntu or Debian]; if not then please see the [[Installation]] page for installation on other OS's such as on [http://wiki.apertium.org/wiki/Apertium_on_Mac_OS_X Mac OS X local] and [http://wiki.apertium.org/wiki/Apertium_on_Mac_OS_X_(System) systemwide ] or [http://wiki.apertium.org/wiki/Apertium_on_Windows Windows] .
 
  +
  +
This is a step-by-step guide on how to use a development version of Apertium to make a change in a language pair.
   
 
== Introduction ==
 
== Introduction ==
   
  +
You will need:
When becoming an Apertium developer there are 2 options as to how you can get Apertium. You can use either the terminal to get the most up-to-date versions or the Synaptic package manager can be used to get development versions that aren't quite as up-to-date. There are pros and cons to each, however, the terminal method is more for those that intend to submit their work while using the package manager is normally easier and you are using a graphical interface instead of a command line. You will also need a text or XML editor, a thorough understanding of the languages you wish to develop for , and for those that wish to contribute to their chosen languages committer access on [http://sourceforge.net/projects/apertium/ SourceForge] is needed.
 
  +
* A text editor, preferably with good XML highlighting – see [[XML editors]] for some popular choices.
  +
* A thorough understanding of the languages you wish to develop.
  +
* An [[IRC]] client so you can ask for help when you get into trouble.
  +
  +
If you wish to contribute to the main repository, you will also have to ask for commit access on [https://github.com/apertium GitHub]
   
 
== Getting Ready ==
 
== Getting Ready ==
  +
The first thing you need to do is to install the Apertium core modules. The [[Installation]] page shows you how to do this.
   
  +
The [[Install language data by compiling]] page shows how to install an example language pair, e.g. apertium-spa-ita(Spanish to Italian) or apertium eng-cat(English to Catalan), both of which are known and stable. You should try this to make sure things work before you move on to whatever language pair you plan on working on.
=== Method 1: TERMINAL ===
 
   
  +
Note that some existing language pairs have external dependencies, like HFST or Constraint Grammar. The [[Installation]] page demonstrates the installation procedures (If you are using packaging or a virtual environment, then they are either a one-click install, or pre-installed).
==== Step 1: Get the Prerequisites ====
 
   
A development version of Apertium and the language pair you want to change has to be installed on your computer first before you can change something about the language pair. If you're looking at installing on a different distribution of Linux than Ubuntu you can find instructions here on the wiki for [[Apertium on Arch Linux]], [[Apertium on Fedora]], and [[Apertium on openSUSE]]. There is currently no method for installing on Mandriva.
 
   
Start by opening a new terminal.
 
   
  +
==== Get your language pair(s) ====
Then, use this command to install the prerequisites:
 
<pre>
 
sudo apt-get install subversion build-essential g++ pkg-config gawk libxml2 \
 
> libxml2-dev libxml2-utils xsltproc flex automake autoconf libtool libpcre3-dev
 
</pre>
 
 
The terminal will then ask you for your password to begin.
 
 
''Note: Keep track of how you type your password in your head. The terminal will not display characters entered for your password for security reasons.''
 
 
After you have entered your password, press the "Enter" key and wait for your computer to download and install the packages.
 
 
==== Step 2: Get Apertium, lttoolbox, & Your Language Pair(s) ====
 
   
Using the same terminal, you can download the entire language pairs tree from SVN using the command:
+
Using the same terminal, you can easily download and add the language pairs you want using a command like:
 
<pre>
 
<pre>
svn co https://apertium.svn.sourceforge.net/svnroot/apertium
+
git clone https://github.com/apertium/apertium-(Language code or pair).git
 
</pre>
 
</pre>
Keep in mind that the full tree is over 4GB. If you have a slow connection, limited disk space, or a limited data transfer amount, installing the whole tree is not recommended. However, if you want to focus on a small number of language pairs you can easily download and add language pairs with a command such as:
 
<pre>
 
svn co https://apertium.svn.sourceforge.net/svnroot/apertium/trunk/<modulename>
 
</pre>
 
''Note: This command only downloads one module at a time. For a more complete set of instructions on effectively using SVN, see the [[Using SVN]] page.''
 
 
   
  +
Replace (Language code or pair) with the appropriate language code.
In the area where it says <modulename>, you can replace this with the module that you want to use such as the Spanish/English module.
 
   
  +
For example, if you wanted to retrieve the language pair Spanish/English (which is in trunk) and French/Portuguese (which is in staging as of January 2020) you should type:
These next commands download Apertium, lttoolbox, and the language pair that you want to use.
 
 
<pre>
 
<pre>
  +
git clone https://github.com/apertium/apertium-spa-ita.git
svn co http://apertium.svn.sourceforge.net/svnroot/apertium/trunk/lttoolbox
 
svn co http://apertium.svn.sourceforge.net/svnroot/apertium/trunk/apertium
+
git clone https://github.com/apertium/apertium-fra-por.git
svn co https://apertium.svn.sourceforge.net/svnroot/apertium/trunk/<modulename>
 
 
</pre>
 
</pre>
   
  +
You can go [https://github.com/apertium/apertium-all here] to see a list of modules, clicking on each shows a list of language pairs. Language pairs are sorted into modules based on how "complete" they are, where [[trunk]] is release-quality, [[staging]] is very close to release-quality, [[nursery]] is for stuff that's 1-3 months of concentrated work from release quality, and [[incubator]] is fragments and anything not complete enough to live in the other modules.
   
For example, if you wanted to get Apertium, lttoolbox, and the Spanish/English module you could enter:
 
<pre>
 
svn co http://apertium.svn.sourceforge.net/svnroot/apertium/trunk/lttoolbox
 
svn co http://apertium.svn.sourceforge.net/svnroot/apertium/trunk/apertium
 
svn co https://apertium.svn.sourceforge.net/svnroot/apertium/trunk/apertium-en-es
 
</pre>
 
   
''Note: You can find a full list of modules at [https://apertium.svn.sourceforge.net/svnroot/apertium/trunk/ https://apertium.svn.sourceforge.net/svnroot/apertium/trunk/].''
 
   
  +
==== Compilation of your language pair ====
Normally, Apertium is installed under the directory <code>/usr/local</code>. However, if you want it installed elsewhere or don't want to install it as root, enter:
 
<pre>
 
PREFIX=/path/to/where/I/want/Apertium
 
PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig
 
export PKG_CONFIG_PATH
 
</pre>
 
   
  +
Compilation of a language pair is similar to lttoolbox and apertium, except you don't need to do "sudo ldconfig", and you should ''not'' do "sudo make install" since it's easier and faster to run from the source folder:
Then, in the lttoolbox and apertium directories, do:
 
<pre>
 
./autogen.sh --prefix=$PREFIX
 
make
 
make install
 
ldconfig
 
</pre>
 
 
'''Warning:''' If you didn't specify <code>$PREFIX</code> or don't know what this means then enter:
 
   
 
<pre>
 
<pre>
  +
cd PAIR_NAME
./autogen.sh
 
make
 
make install
 
ldconfig
 
</pre>
 
 
(If you didn't specify a prefix, use <code>sudo</code> before the last two commands.)
 
 
Then, in the directory apertium-eo-en, enter:
 
<pre>
 
./autogen.sh --prefix=$PREFIX
 
make
 
make install
 
</pre>
 
 
(Use <code>sudo</code> before the last command if you didn't specify a prefix.)
 
 
==== Final Step: Compilation & Installation ====
 
 
First, you need to compile lttoolbox, Apertium, and your language pair and install them. For this we will use,
 
<pre>
 
cd apertium
 
cd lttoolbox/
 
 
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./autogen.sh
 
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./autogen.sh
make
+
make -j3
sudo make install
 
sudo ldconfig
 
 
</pre>
 
</pre>
, for lttoolbox. Then,
 
<pre>
 
cd ..
 
cd apertium/
 
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./autogen.sh
 
make
 
sudo make install
 
sudo ldconfig
 
</pre>
 
for Apertium. And finally,
 
<pre>
 
cd ..
 
cd <modulename>/
 
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./autogen.sh
 
make
 
sudo make install
 
</pre>
 
for your language pair which replaces the text <modulename>.
 
 
For further instruction, if necessary, see [[Apertium on Ubuntu]].
 
 
=== Method 2: PACKAGE MANAGER ===
 
 
Using the Synaptic package manager to download and install Apertium, lttoolbox, and your language pair is considerably easier than the terminal method, however, your choice of language pairs is limited, you may be unable to commit changes, and there may possibly be other flaws or minor bugs. Synaptic is available in Ubuntu and Debian and its derivatives. Package manager equivalents on other systems include PackageKit and KPackage. If your distribution of Linux does not have Apertium packages in its manager then they can be downloaded through SourceForge.
 
 
==== Step 1: Find your Packages ====
 
 
To begin, start by finding the Synaptic package manager and opening it.
 
 
Then, use the search box (or type ctrl+F) and type in "apertium".
 
 
Synaptic should bring up a list of everything related to Apertium. This list should include language pairs, the development versions of lttoolbox and libapertium, as well as the Apertium base package and various others.
 
 
==== Final Step: Compilation & Installation ====
 
 
Luckily, Synaptic takes care of getting the prerequisites, dependencies, and other required packages. All you have to do is select which packages you need and have Synaptic download and install them. It may be possible to have Synaptic download your language pair, Apertium, lttoolbox, and the corresponding dependencies at one time, however, the amount of time saved is minimal overall.
 
 
Start by selecting the "apertium" checkbox and choose "Mark for Installation" from the drop-down menu. (Left-clicking and right-clicking both bring down the menu.)
 
 
Synaptic will inform you of Apertium's dependencies and will ask if you want to mark them as well. Click "Mark" in the lower-right of the pop-up box.
 
 
The required packages (lttoolbox, libapertim, and liblttoolbox) will now be marked as well as Apertium.
 
 
Now you can select your language pair. ''Note: Some language pairs aren't available through this method. Those that are available include: en-es fr-es es-pt es-ca es-gl pt-gl eo-ca eo-es en-ca oc-es fr-ca es-ro eu-es oc-ca.''
 
 
Download and install the selected packages.
 
 
Synaptic will inform you when it is done.
 
 
Now you can install the development packages (libapertium3-3.1-0-dev and liblttoolbox3-3.1-0-dev) using the same procedures.
 
   
  +
for each language pair, replace the text PAIR_NAME by the appropriate name.
'''IMPORTANT: Available versions of packages may be limited by what version of your OS you are running.'''
 
   
 
== Changing Things Around ==
 
== Changing Things Around ==
Line 162: Line 56:
 
When you want to make a change in Apertium, you more than likely want to add a word to an existing language pair. For a full explanation go to [[Contributing to an existing pair]]. You can also check out the [[Contact]] page for Apertium mailing lists and live help through IRC.
 
When you want to make a change in Apertium, you more than likely want to add a word to an existing language pair. For a full explanation go to [[Contributing to an existing pair]]. You can also check out the [[Contact]] page for Apertium mailing lists and live help through IRC.
   
'''IMPORTANT: Adding a word won't do you any good if you don't recompile the modules after the change is made. Simply use the terminal like before and enter:''' ''make <modulenamehere>'' '''and press the "Enter" key and your computer will create the new files necessary.'''
+
'''IMPORTANT: Adding a word won't do you any good if you don't recompile the modules after the change is made. Simply use the terminal like before and enter:''' ''make'' ''' and press the "Enter" key and your computer will create the new files necessary.'''
   
   
Line 173: Line 67:
 
'''3.''' Add an entry to the dictionary for the second language that will be used.
 
'''3.''' Add an entry to the dictionary for the second language that will be used.
   
You will need to find the module you want to work with on your computer and open the three dictionaries; for example: apertium-es-ca.es.dix,
+
You will need to find the module you want to work with on your computer and open the three dictionaries; for example: apertium-spa-cat.spa.dix,
apertium-es-ca.es-ca.dix, and apertium-es-ca.ca.dix. ''Note: Each dictionary will have the suffix ".dix"'' You should open these files in a text editor or specialized XML editor.
+
apertium-spa-cat.spa-cat.dix, and apertium-spa-cat.cat.dix. ''Note: Each dictionary will have the suffix ".dix"'' You should open these files in a text editor or specialized XML editor.
   
 
=== Step 1: Adding to the First Dictionary ===
 
=== Step 1: Adding to the First Dictionary ===
Line 193: Line 87:
 
</pre>
 
</pre>
   
Start by opening your first language's dictionary file. For example: apertium-en-es.es.dix (an XML file).
+
Start by opening your first language's dictionary file. For example: apertium-eng-spa.spa.dix (an XML file).
   
 
Then, create a new entry with the basic structure next to a similar entry in the dictionary. The order of entries doesn't matter.
 
Then, create a new entry with the basic structure next to a similar entry in the dictionary. The order of entries doesn't matter.
Line 211: Line 105:
 
Using the same structure, you can create the entry in your second language's dictionary that is the equivalent to your entry in the first dictionary.
 
Using the same structure, you can create the entry in your second language's dictionary that is the equivalent to your entry in the first dictionary.
   
The second language dictionary file name should be something such as ''apertium-en-es.en.dix''.
+
The second language dictionary file name should be something like ''apertium-eng-spa.eng.dix''.
   
 
Save your changes and recompile the module.
 
Save your changes and recompile the module.
Line 237: Line 131:
 
It is very possible that you may encounter an error in you changes.
 
It is very possible that you may encounter an error in you changes.
   
To know how a word is analysed by the translator and find an error, type the following in the terminal (example from [http://wiki.apertium.org/wiki/Contributing_to_an_existing_pair#Detecting_errors Contributing to an existing pair. Follow link for more help.]):
+
To know how a word is analysed by the translator and find an error, type the following in the terminal (example from [[Contributing_to_an_existing_pair#Detecting_errors|Contributing to an existing pair. Follow link for more help.]]):
 
<pre>
 
<pre>
$ echo "gener" | apertium-destxt | lt-proc ca-es.automorf.bin
+
$ echo "gener" | apertium-destxt | lt-proc cat-spa.automorf.bin
 
</pre>
 
</pre>
   
Line 265: Line 159:
   
 
If you are still stuck remember that you can always ask questions on [[IRC]].
 
If you are still stuck remember that you can always ask questions on [[IRC]].
 
   
 
== Show it to the World ==
 
== Show it to the World ==
   
Now that you have added to a language pair you have the option to commit your changes to SourceForge (If you used Method 1 for installation). Committing a change to a language pair is even easier than making the change.
+
Now that you have added to a language pair you have the option to commit your changes to GitHub(We have now moved to GitHub). Committing a change to a language pair is even easier than making the change.
   
Firstly, you need to register for a free SourceForge account. Then, contact an Apertium administrator [http://sourceforge.net/project/memberlist.php?group_id=143781 here] and request access to commit to SVN on SourceForge.
+
Firstly, you need to register for a free GitHub account. Then, contact an Apertium administrator [https://github.com/orgs/apertium/people here] and request access to commit to GitHub.
   
 
Once granted access, simply open the terminal, navigate to your language pair that was changed, and enter:
 
Once granted access, simply open the terminal, navigate to your language pair that was changed, and enter:
 
<pre>
 
<pre>
svn commit
+
git commit
 
</pre>
 
</pre>
   
 
Remember to include a log message detailing what was changed or added.
 
Remember to include a log message detailing what was changed or added.
  +
The 'git commit' command may be used multiple times, even when the system is offline.
  +
All the commits can then be pushed together online using:
  +
<pre>
  +
git push
  +
</pre>
   
  +
To see other people's changes, use the following command:
It is also possible that ''svn commit'' may be followed by -m "message”. That is sometimes easier than having an editor opened automatically.
 
  +
<pre>
  +
git pull
  +
</pre>
  +
  +
It is also possible that ''git commit'' may be followed by -m "message”. That is sometimes easier than having an editor opened automatically.
   
 
You have now become a language pair developer for Apertium!
 
You have now become a language pair developer for Apertium!
  +
  +
==See also==
  +
  +
*[[Building dictionaries]]
  +
*[[Contributing to an existing pair]]
  +
*[[Finding_errors_in_dictionaries]]
  +
*[[Apertium_New_Language_Pair_HOWTO]]
  +
*[[Cookbook]]
  +
*[[Chunking]]
  +
  +
[[Category:Documentation in English]]
  +
[[Category:Documentation]]
  +
[[Category:HOWTO]]
  +
[[Category:Writing dictionaries]]
  +
[[Category:Quickstart]]

Latest revision as of 17:46, 13 January 2020

En français

This is a step-by-step guide on how to use a development version of Apertium to make a change in a language pair.

Introduction[edit]

You will need:

  • A text editor, preferably with good XML highlighting – see XML editors for some popular choices.
  • A thorough understanding of the languages you wish to develop.
  • An IRC client so you can ask for help when you get into trouble.

If you wish to contribute to the main repository, you will also have to ask for commit access on GitHub

Getting Ready[edit]

The first thing you need to do is to install the Apertium core modules. The Installation page shows you how to do this.

The Install language data by compiling page shows how to install an example language pair, e.g. apertium-spa-ita(Spanish to Italian) or apertium eng-cat(English to Catalan), both of which are known and stable. You should try this to make sure things work before you move on to whatever language pair you plan on working on.

Note that some existing language pairs have external dependencies, like HFST or Constraint Grammar. The Installation page demonstrates the installation procedures (If you are using packaging or a virtual environment, then they are either a one-click install, or pre-installed).


Get your language pair(s)[edit]

Using the same terminal, you can easily download and add the language pairs you want using a command like:

git clone https://github.com/apertium/apertium-(Language code or pair).git

Replace (Language code or pair) with the appropriate language code.

For example, if you wanted to retrieve the language pair Spanish/English (which is in trunk) and French/Portuguese (which is in staging as of January 2020) you should type:

git clone https://github.com/apertium/apertium-spa-ita.git
git clone https://github.com/apertium/apertium-fra-por.git

You can go here to see a list of modules, clicking on each shows a list of language pairs. Language pairs are sorted into modules based on how "complete" they are, where trunk is release-quality, staging is very close to release-quality, nursery is for stuff that's 1-3 months of concentrated work from release quality, and incubator is fragments and anything not complete enough to live in the other modules.


Compilation of your language pair[edit]

Compilation of a language pair is similar to lttoolbox and apertium, except you don't need to do "sudo ldconfig", and you should not do "sudo make install" since it's easier and faster to run from the source folder:

cd PAIR_NAME
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./autogen.sh
make -j3

for each language pair, replace the text PAIR_NAME by the appropriate name.

Changing Things Around[edit]

When you want to make a change in Apertium, you more than likely want to add a word to an existing language pair. For a full explanation go to Contributing to an existing pair. You can also check out the Contact page for Apertium mailing lists and live help through IRC.

IMPORTANT: Adding a word won't do you any good if you don't recompile the modules after the change is made. Simply use the terminal like before and enter: make and press the "Enter" key and your computer will create the new files necessary.


There are 3 major steps in adding a new word to a language pair:

1. Add an entry to the dictionary for the first language that will be used.

2. Add an entry to the bilingual dictionary for the pair.

3. Add an entry to the dictionary for the second language that will be used.

You will need to find the module you want to work with on your computer and open the three dictionaries; for example: apertium-spa-cat.spa.dix, apertium-spa-cat.spa-cat.dix, and apertium-spa-cat.cat.dix. Note: Each dictionary will have the suffix ".dix" You should open these files in a text editor or specialized XML editor.

Step 1: Adding to the First Dictionary[edit]

When adding entries, you have to enter the lemma (word as you would read it in a dictionary),the part between <i> and </i> that contains the prefix of the word that is common to all inflected forms, and the element in <par> that refers to the inflection paradigm of this word. All entries will have a basic structure like:

      <e lm="(lemma)">
        <i>(prefix)</i>
        <par n="(paradigm)"/>
      </e>

A good example of this would be:

      <e lm="cósmico">
        <i>cósmic</i>
        <par n="absolut/o__adj"/>
      </e>

Start by opening your first language's dictionary file. For example: apertium-eng-spa.spa.dix (an XML file).

Then, create a new entry with the basic structure next to a similar entry in the dictionary. The order of entries doesn't matter.

Now, between the quotes in the area where it says (lemma) replace (lemma) with your word. Note: Do not include () in entries, but place input between "".

Next, you can enter the prefix in the space between <i> and </i> and replace (prefix).

Finally, enter the paradigm in <par> between the quotations. The paradigm should consist of the prefix of another word that has the same inflection and is already in the dictionary and has the morphological analysis: adj m sg, adj f sg, adj m pl and adj f pl respectively. For example: <par n="absolut/o__adj"/> for cósmico. This entry means that the adjective "cósmico" inflects like the adjective "absoluto" and has the same morphological analysis: the forms cósmico, cósmica, cósmicos, and cósmicas are equivalent to the forms absoluto, absoluta, absolutos, and absolutas and have the morphological analysis: adj m sg, adj f sg, adj m pl and adj f pl respectively.

Now, save your altered dictionary, and DO NOT change file name, directory, or file type.

To finish, use the terminal and navigate to the directory that your module is housed in and enter make. Now press the "Enter" key and allow you computer to recompile the module with the changes you just made.

Step 2: Adding to the Second Dictionary[edit]

Using the same structure, you can create the entry in your second language's dictionary that is the equivalent to your entry in the first dictionary.

The second language dictionary file name should be something like apertium-eng-spa.eng.dix.

Save your changes and recompile the module.

Final Step: The Bilingual Dictionary[edit]

Adding entries to the bilingual dictionary is considerably easier than adding to the other two dictionaries. An entry in this dictionary has this basic structure:

     <e> 
        <p>
          <l>(lemmafromfirst)<s n="(partofspeech)"/></l>
          <r>(lemmafromsecond)<s n="(partofspeech)"/></r>
        </p>
      </e>

Simply add an entry and replace (lemmafromfirst) with the lemma you added to the first dictionary, (lemmafromsecond) with the lemma from the second, and (partofspeech) with the part of speech for each word.

Save this dictionary and recompile the module one last time.

Adding rules to a language pair can also be done, however, that will not be discussed in this guide. See Contributing to an existing pair for a more detailed and full explanation.

Errors[edit]

It is very possible that you may encounter an error in you changes.

To know how a word is analysed by the translator and find an error, type the following in the terminal (example from Contributing to an existing pair. Follow link for more help.):

$ echo "gener" | apertium-destxt | lt-proc cat-spa.automorf.bin

You can replace ca-es with the translation direction you want to test.

The output in Apertium should be:

^gener/gener<n><m><sg>$^./.<sent>$[][]

The string structure is: ^word/lemma<morphological analysis>$. The <sent> tag is the analysis of the full stop, as every sentence end is represented as a full stop by the system, whether or not explicitly indicated in the sentence.

The analysis of an unknown word is (ignoring the full stop information):

^genoma/*genoma$

and the analysis of an ambiguous word:

^casa/casa<n><f><sg>/casar<vblex><pri><p3><sg>/casar<vblex><imp><p2><sg>$

Each lexical form (lemma plus morphological analysis) is presented as a possible analysis of the word casa.

If you are still stuck remember that you can always ask questions on IRC.

Show it to the World[edit]

Now that you have added to a language pair you have the option to commit your changes to GitHub(We have now moved to GitHub). Committing a change to a language pair is even easier than making the change.

Firstly, you need to register for a free GitHub account. Then, contact an Apertium administrator here and request access to commit to GitHub.

Once granted access, simply open the terminal, navigate to your language pair that was changed, and enter:

git commit

Remember to include a log message detailing what was changed or added. The 'git commit' command may be used multiple times, even when the system is offline. All the commits can then be pushed together online using:

git push

To see other people's changes, use the following command:

git pull

It is also possible that git commit may be followed by -m "message”. That is sometimes easier than having an editor opened automatically.

You have now become a language pair developer for Apertium!

See also[edit]