Difference between revisions of "User:Firespeaker/Transfer rule example"

From Apertium
Jump to navigation Jump to search
Line 11: Line 11:
<table class="wikitable" style="tab-size: 3;">
<table class="wikitable" style="tab-size: 3;">
<tr><th>rule</th><th></th><th></th></tr>
<tr><th>rule</th><th></th><th></th></tr>
<tr rowspan="4"><td>
<tr rowspan="2.5"><td><pre>
<rule comment="REGLA: det noun">
<pre>
<pattern>
<rule comment="REGLA: det noun">
<pattern>
<pattern-item n="definites"/>
<pattern-item n="definites"/>
<pattern-item n="noun"/>
</pattern>
<pattern-item n="noun"/>
<action>
</pattern>
<action>
<out>
<chunk name="n" case="caseFirstWord">
<out>
<tags>
<chunk name="n" case="caseFirstWord">
<tags>
<tag><lit-tag v="SN"/></tag>
<tag><lit-tag v="SN"/></tag>
<tag><lit-tag v="def"/></tag>
<tag><lit-tag v="def"/></tag>
<tag><clip pos="2" side="tl" part="a_num"/></tag>
<tag><clip pos="2" side="tl" part="a_num"/></tag>
<tag><lit-tag v="CD"/></tag>
</tags>
<tag><lit-tag v="CD"/></tag>
</tags>
<lu>
<clip pos="2" side="tl" part="lem"/>
<lu>
<clip pos="2" side="tl" part="lem"/>
<clip pos="2" side="tl" part="pos"/>
<clip pos="2" side="tl" part="pos"/>
<clip pos="2" side="tl" part="a_num"/>
<clip pos="2" side="tl" part="a_num"/>
<lit-tag v="4"/><!-- case -->
</lu>
<lit-tag v="4"/><!-- case -->
</lu>
</chunk>
</chunk>
</out>
</out>
</action>
</rule></pre></td></tr>
</action>
</rule>
</pre></td></tr>
<tr><td>relevant categories:</td><td></td></tr>
<tr><td>relevant categories:</td><td></td></tr>
<tr><td>relevant attributes:</td><td><pre>
<tr><td>relevant attributes:</td><td><pre>
<def-attr n="a_num">
<def-attr n="a_num">
<attr-item tags="sg"/>
<attr-item tags="sg"/>
<attr-item tags="pl"/>
<attr-item tags="pl"/>
<attr-item tags="ND"/>
<attr-item tags="ND"/>
</def-attr>
</def-attr></pre></td></tr>
</pre></td></tr>
<tr><td>pattern matches:</td><td>I did not see <b>the houses</b>.</td></tr>
<tr><td>pattern matches:</td><td>I did not see <b>the houses</b>.</td></tr>



Revision as of 19:59, 11 April 2019

Input text

  • "I did not see the houses."

Output of tagger

Chunker

Determiner Noun

rule
<rule comment="REGLA: det noun">
	<pattern>
		<pattern-item n="definites"/>
		<pattern-item n="noun"/>
	</pattern>
	<action>
		<out>
			<chunk name="n" case="caseFirstWord">
				<tags>
					<tag><lit-tag v="SN"/></tag>
					<tag><lit-tag v="def"/></tag>
					<tag><clip pos="2" side="tl" part="a_num"/></tag>
					<tag><lit-tag v="CD"/></tag>
				</tags>
				<lu>
					<clip pos="2" side="tl" part="lem"/>
					<clip pos="2" side="tl" part="pos"/>
					<clip pos="2" side="tl" part="a_num"/>
					<lit-tag v="4"/><!-- case -->
				</lu>
			</chunk>
		</out>
	</action>
</rule>
relevant categories:
relevant attributes:
<def-attr n="a_num">
	<attr-item tags="sg"/>
	<attr-item tags="pl"/>
	<attr-item tags="ND"/>
</def-attr>
pattern matches:I did not see the houses.