Difference between revisions of "Apertium-quality/Configuration"
Jump to navigation
Jump to search
(Created page with '== Apertium Quality XML Configuration Format == === Introduction === The apertium quality configuration format is a fairly simple XML format for declaring which files are require…') |
(No difference)
|
Revision as of 03:14, 22 August 2011
Apertium Quality XML Configuration Format
Introduction
The apertium quality configuration format is a fairly simple XML format for declaring which files are required for running an automatic test, or however another tool uses the data.
The format is essentially as follows:
<config>
<test-type>
<content attribs=stuff />
</test-type>
<config>
Currently supported test types:
- coverage
- tagging
- regression
- morph
Currently supported content elements:
- test
- corpus
For a more detailed overview, see the schema.
Example
Here is a template of the XML file:
<config xmlns="http://apertium.org/xml/quality/config/0.1"> </config>
This simple document takes several elements dependant on the type of file you want to declare for each test.
<config xmlns="http://apertium.org/xml/quality/config/0.1">
<coverage>
<corpus generator="gencrp.py" language="mt-he" path="relative-level-crp.txt" />
<corpus generator='someotherscript.bash' language="mt-he" path="../belowhere.crp.txt />
</coverage>
<regression>
<test language="mt-he" path="http://whatever/test.xml" />
<test language="mt-he" path="localfile.xml" />
</regression>
</config>