Hello,<br><br>Thanks Madam for your kind reply. The MRS output for &#39;demonstrative pronoun&#39; now showing up all of the relations. <br><br>Yes, &#39;lex-root&#39; is defined in the &#39;roots.tdl&#39; file. I also tried &quot;View -&gt; Other entry&quot; and asked for lex-root, it expands and can show it&#39;s parent type &quot;word-or-lex&quot; rule. So, I think it working fine, but I don&#39;t get the output.
<br><br>I also want to implement the possessive markers. In Bangla, possessives are appeared as modifiers like English, such as: &quot;kimer kukur (Kim&#39;s dog)&quot;, &quot;taader kukur (Their dog)&quot;. The nouns/pronouns are inflected by possessive case marker &#39;er&#39; or &#39;der&#39; to appear as possessive modifiers. So I want to implement it through &#39;infl-ltow-rule&#39;. But, do I need to change the HEAD feature of possessives from &#39;noun&#39; to &#39;link&#39; / &#39;adjective&#39; or any other types? Because, noun types introduces &#39;noun-relation&#39; as it&#39;s first relation, where possessive modifires would introduce &#39;poss-rel&#39; as it&#39;s first relation with two other relations (their own noun and quantifier relations).
<br><br>One more question about &#39;event relation&#39;. Isn&#39;t it that &#39;event-relation&#39; bears the feature TAM (Time, Aspect and Mood)? How it would used for the &#39;demonstrative determiners&#39;?<br><br>Thank you.
<br><br><div><span class="gmail_quote"><br><br>On 7/31/07, <b class="gmail_sendername">Emily M. Bender</b> &lt;<a href="mailto:ebender@u.washington.edu">ebender@u.washington.edu</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Dear Altaf,<br><br>&gt; 1. In LAB-06, &#39;adjective-relation&#39; has been introduced for<br>&gt; LKEYS.ALTKEYSfeatures of demonstrative determiners. But, there is no<br>&gt; such type is<br>&gt; declared in &#39;matrix.tdl
&#39; file and LKB doesn&#39;t find it. What might goes wrong<br>&gt; here?<br><br>It looks like an error in the instructions. Try `event-relation&#39;<br>instead.<br><br>&gt; 2. In LAB-06, in section for demonstrative pronoun, it says that the LBL
<br>&gt; values of two relations (LKEYS.KEYREL noun-relation and<br>&gt; LKEYS.ALTKEYRELevent-relation) are to be identified with each other. I<br>&gt; think I did the same<br>&gt; thing as the following code (reentrancy with &#39;#lbl&#39; ):
<br>&gt;<br>&gt; ;;;;;;;;;;;;;;;; pronoun lexeme type ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<br>&gt; pronoun-lex := sg-nouns &amp;<br>&gt; [ SYNSEM [ LOCAL.CAT.VAL.SPR &lt; [ OPT + ] &gt;,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LKEYS.KEYREL noun-relation &amp;
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ PRED &quot;_pronoun_n_rel&quot; ] ] ].<br>&gt;<br>&gt;<br>&gt;<br>&gt; ;;;;;;;;;;;;;;; demonstrative pronoun ;;;;;;;;;;;;;;;;;;;<br>&gt; demo-pronoun-lex := pronoun-lex &amp;<br>&gt; [ SYNSEM [ 
LOCAL.CONT.HOOK.INDEX.COG-ST activ+fam,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LKEYS [ KEYREL.LBL #lbl,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ALTKEYREL event-relation &amp;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [ LBL #lbl ] ] ] ].<br><br>Yes, that looks good.
<br><br>&gt; ;;;;;;;;;;;;;;;;; lexical entry ;;;;;;;;;;;;;;;;;<br>&gt; ei_demo := demo-pronoun-lex &amp;<br>&gt; [ STEM &lt; &quot;ei&quot; &gt;,<br>&gt;&nbsp;&nbsp;SYNSEM [ LOCAL.CONT.HOOK.INDEX.PNG [ PER third,<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GRD non-hon,
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TPC low ],<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LKEYS.ALTKEYREL.PRED proximal+dem_q_rel ] ].<br>&gt;<br>&gt; It can parse, but it can&#39;t generate because it couldn&#39;t show any MRS for the
<br>&gt; main transitive verb of the sentence. For example:<br>&gt;<br>&gt; &quot;naafid bhaat khaay&quot;<br>&gt; &quot;Naafid rice eats&quot;<br>&gt; (Naafid eats rice)<br>&gt;<br>&gt; There is no MRS for the main verb &#39;khaay&#39; which should be &#39;eat_v_rel&#39; and
<br>&gt; handle &#39;h1&#39;, but the LTOP of the whole MRS is &#39;h1&#39; as usual. Did I do any<br>&gt; mistake here about following the lab guidelines?<br><br>This sounds like you have a broken diff-list somewhere. I suspect that
<br>you need to say of the demo-pronoun-lex type that the RELS list has<br>exactly two things on it, and that these are linked to the KEYREL<br>and ALTKEYREL, respectively.&nbsp;&nbsp;(You are probably already getting the<br>KEYREL linking from a supertype, but might well need to stipulate the
<br>ALTKEYREL linking.)&nbsp;&nbsp;That constraint will look like this:<br><br>[ SYNSEM [ LOCAL.CONT.RELS &lt;! [], #altkeyrel !&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LKEYS.ALTKEYREL #altkeyrel ]].<br><br>&gt; 3. I &#39;ve written some morphological rules for verbs. Free word order
<br>&gt; language &#39;Bangla&#39; has subject-verb agreements only with person variations.<br>&gt; However, when I try to generate from a given parse tree, it only generate<br>&gt; the sentences with the right most verb form of the rule. An example
<br>&gt; for 3rd-person<br>&gt; verb form at &#39;irules.tdl&#39; file:<br>&gt;<br>&gt; 3p-verb :=<br>&gt; %suffix (* e) (* chhe) (* chhila) (* chhilo) (* echhe) (* echhila) (* be) (a<br>&gt; ay) (a acchhe) (aa eyechhe) (jaa giechhe) (aa eyechhila) (aa eyechhilo) (jaa
<br>&gt; giechhila) (jaa giechhilo) (e ey) (e icchhe) (e icchhila) (e icchhilo) (e<br>&gt; iechhe) (e iechhila) (e iechhilo) (e ibe)<br>&gt; 3p-verb-lex-rule.<br>&gt;<br>&gt; Here, the right most 3rd person verb form is &quot;(aa eyechhilo)&quot; for those
<br>&gt; verbs which have ending letters &#39;aa&#39;. I know LKB checks the rules from right<br>&gt; to left, but it generates the sentences with only this verb form, not with<br>&gt; other verb forms at left. For example an input sentence: &quot;naafid bhaat
<br>&gt; khaay&quot; (Naafid eats rice), it generates only:<br>&gt;<br>&gt; &quot;naafid bhaat kheyechhilo&quot; (Naafid ate rice)<br>&gt; &quot;naafid kheyechhilo bhaat&quot;<br>&gt; ............................<br>&gt;<br>
&gt; But, not any sentence like &quot;naafid bhaat khaacchhe&quot; (Naafid is eating rice).<br>&gt; Here, root form of the verb &#39;khaay&#39; is &#39;khaa&#39; at &#39;lexicon.tdl&#39; file.<br><br>The LKB will parse according to any of the orthography rules that match,
<br>but will only generate with the right-most matching one.&nbsp;&nbsp;Do the forms you<br>are expecting to see differ from each other in any morphosyntactic features?<br>If so, you need multiple lexical rules (even if they are all 3p).
<br><br>&gt; 4. The last question here about single word parsing, of course I should ask<br>&gt; you long before, but I didn&#39;t even try with it. I can&#39;t parse a single word<br>&gt; yet, although I &#39;ve changed the &#39;
globals.lsp&#39; file as following:<br>&gt;<br>&gt; (defparameter *start-symbol* &#39;(root lex-root)<br>&gt;&nbsp;&nbsp;&quot;specifing valid parses&quot;)<br>&gt;<br>&gt; No, I don&#39;t get the single word parse.<br><br>Can you confirm that lex-root is in fact defined in 
roots.tdl?<br>(And if so, what happens when you do View &gt; Other entry and ask<br>for lex-root?)<br><br>Emily<br></blockquote></div><br><br clear="all"><br>-- <br>-Altaf