<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://unlarchive.org/wiki/index.php?action=history&amp;feed=atom&amp;title=NL_Memory</id>
	<title>NL Memory - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://unlarchive.org/wiki/index.php?action=history&amp;feed=atom&amp;title=NL_Memory"/>
	<link rel="alternate" type="text/html" href="https://unlarchive.org/wiki/index.php?title=NL_Memory&amp;action=history"/>
	<updated>2026-05-10T10:10:55Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://unlarchive.org/wiki/index.php?title=NL_Memory&amp;diff=15145&amp;oldid=prev</id>
		<title>imported&gt;Martins at 13:46, 24 September 2012</title>
		<link rel="alternate" type="text/html" href="https://unlarchive.org/wiki/index.php?title=NL_Memory&amp;diff=15145&amp;oldid=prev"/>
		<updated>2012-09-24T13:46:34Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The &amp;#039;&amp;#039;&amp;#039;NL Memory&amp;#039;&amp;#039;&amp;#039; constitutes a list of syntactic (subcategorization) frames between natural language words or terms that co-occur more often than would be expected by chance. They are used to represent collocations, i.e., partly or fully fixed expressions that become established through repeated context-dependent use.&lt;br /&gt;
&lt;br /&gt;
The NL Memory may be provided in two different formats:&lt;br /&gt;
*Extended, in XML; or&lt;br /&gt;
*Simplified, as a set of [[Grammar_Specs#Disambiguation_Rules|network disambiguation rules]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Extended format ==&lt;br /&gt;
&lt;br /&gt;
NL Memory entries in extended format must have the following structure:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;relation name=&amp;quot;RNAME&amp;quot; frequency=&amp;quot;RFREQ&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;source id=&amp;quot;SID&amp;quot; attribute=&amp;quot;ATT&amp;quot; lang=&amp;quot;&amp;lt;LID&amp;gt;&amp;quot;&amp;gt;SOURCE&amp;lt;/source&amp;gt;&lt;br /&gt;
   &amp;lt;target id=&amp;quot;TID&amp;quot; attribute=&amp;quot;ATT&amp;quot; lang=&amp;quot;&amp;lt;LID&amp;gt;&amp;quot;&amp;gt;TARGET&amp;lt;/target&amp;gt;&lt;br /&gt;
 &amp;lt;/relation&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where:&amp;lt;br /&amp;gt;&lt;br /&gt;
RNAME is the name of a syntactic relation (&amp;quot;NA&amp;quot;, &amp;quot;NC&amp;quot;, &amp;quot;NS&amp;quot;, etc);&amp;lt;br /&amp;gt;&lt;br /&gt;
RFREQ is the frequency of the relation RNAME between the SOURCE and the TARGET in the corpus;&amp;lt;br /&amp;gt;&lt;br /&gt;
SID is a number used to identify the SOURCE;&amp;lt;br /&amp;gt;&lt;br /&gt;
TID is a number used to identify the TARGET;&amp;lt;br /&amp;gt;&lt;br /&gt;
ATT is a set of attribute-value pairs that apply to the SOURCE or to the TARGET (&amp;quot;POS=NOU&amp;quot;, &amp;quot;GEN=NEU&amp;quot;, etc);&amp;lt;br /&amp;gt;&lt;br /&gt;
SOURCE is the source node of the syntactic relation; &amp;lt;br /&amp;gt;&lt;br /&gt;
TARGET is the target node of the syntactic relation; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;LID&amp;gt; is the ISO 639-2 three-character code for the language.&lt;br /&gt;
&lt;br /&gt;
=== XML Schema ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-16&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;xsd:schema attributeFormDefault=&amp;quot;unqualified&amp;quot; elementFormDefault=&amp;quot;qualified&amp;quot; version=&amp;quot;1.0&amp;quot; xmlns:xsd=&amp;quot;http://www.w3.org/2001/XMLSchema&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;xsd:element name=&amp;quot;nlm&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;xsd:complexType&amp;gt;&lt;br /&gt;
     &amp;lt;xsd:sequence&amp;gt;&lt;br /&gt;
       &amp;lt;xsd:element maxOccurs=&amp;quot;unbounded&amp;quot; name=&amp;quot;relation&amp;quot;&amp;gt;&lt;br /&gt;
         &amp;lt;xsd:complexType&amp;gt;&lt;br /&gt;
           &amp;lt;xsd:sequence&amp;gt;&lt;br /&gt;
             &amp;lt;xsd:element name=&amp;quot;source&amp;quot;&amp;gt;&lt;br /&gt;
               &amp;lt;xsd:complexType&amp;gt;&lt;br /&gt;
                 &amp;lt;xsd:attribute name=&amp;quot;id&amp;quot; type=&amp;quot;xsd:unsignedLong&amp;quot; use=&amp;quot;required&amp;quot; /&amp;gt;&lt;br /&gt;
                 &amp;lt;xsd:attribute name=&amp;quot;attribute&amp;quot; type=&amp;quot;xsd:string&amp;quot; use=&amp;quot;optional&amp;quot; /&amp;gt;&lt;br /&gt;
                 &amp;lt;xsd:attribute name=&amp;quot;lang&amp;quot; type=&amp;quot;xsd:string&amp;quot; use=&amp;quot;optional&amp;quot; /&amp;gt;&lt;br /&gt;
               &amp;lt;/xsd:complexType&amp;gt;&lt;br /&gt;
             &amp;lt;/xsd:element&amp;gt;&lt;br /&gt;
             &amp;lt;xsd:element name=&amp;quot;target&amp;quot;&amp;gt;&lt;br /&gt;
               &amp;lt;xsd:complexType&amp;gt;&lt;br /&gt;
                 &amp;lt;xsd:attribute name=&amp;quot;id&amp;quot; type=&amp;quot;xsd:unsignedLong&amp;quot; use=&amp;quot;required&amp;quot;/&amp;gt;&lt;br /&gt;
                 &amp;lt;xsd:attribute name=&amp;quot;attribute&amp;quot; type=&amp;quot;xsd:string&amp;quot; use=&amp;quot;optional&amp;quot; /&amp;gt;&lt;br /&gt;
                 &amp;lt;xsd:attribute name=&amp;quot;lang&amp;quot; type=&amp;quot;xsd:string&amp;quot; use=&amp;quot;optional&amp;quot;/&amp;gt;&lt;br /&gt;
              &amp;lt;/xsd:complexType&amp;gt;&lt;br /&gt;
             &amp;lt;/xsd:element&amp;gt;&lt;br /&gt;
           &amp;lt;/xsd:sequence&amp;gt;&lt;br /&gt;
           &amp;lt;xsd:attribute name=&amp;quot;name&amp;quot; type=&amp;quot;xsd:string&amp;quot; use=&amp;quot;required&amp;quot;/&amp;gt;&lt;br /&gt;
           &amp;lt;xsd:attribute name=&amp;quot;frequency&amp;quot; type=&amp;quot;xsd:int&amp;quot; use=&amp;quot;optional&amp;quot;/&amp;gt;&lt;br /&gt;
         &amp;lt;/xsd:complexType&amp;gt;&lt;br /&gt;
       &amp;lt;/xsd:element&amp;gt;&lt;br /&gt;
     &amp;lt;/xsd:sequence&amp;gt;&lt;br /&gt;
   &amp;lt;/xsd:complexType&amp;gt;&lt;br /&gt;
 &amp;lt;/xsd:element&amp;gt;&lt;br /&gt;
&amp;lt;/xsd:schema&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Simplified format ==&lt;br /&gt;
&lt;br /&gt;
NL Memory entries in simplified format must have the structure of [[Grammar_Specs#Disambiguation_Rules|network disambiguation rules]], as follows:&lt;br /&gt;
&lt;br /&gt;
 RELATION(SOURCE;TARGET)=DC;&lt;br /&gt;
&lt;br /&gt;
Where:&amp;lt;br /&amp;gt;&lt;br /&gt;
RELATION is the name of a syntactic relation (&amp;quot;NA&amp;quot;, &amp;quot;NC&amp;quot;, &amp;quot;NS&amp;quot;, etc.);&amp;lt;br /&amp;gt;&lt;br /&gt;
SOURCE is the source node of the syntactic relation, and the corresponding attributes, if necessary;&amp;lt;br /&amp;gt;&lt;br /&gt;
TARGET is the target node of the syntactic relation, and the corresponding attributes, if necessary; &amp;lt;br /&amp;gt;&lt;br /&gt;
DC is the degree of certainty (i.e., the likelihood of the relation between the SOURCE and the TARGET), ranging from 0 (impossible) to 255 (necessary)&amp;lt;br /&amp;gt;&lt;br /&gt;
The SOURCE and the TARGET nodes may be referred as:&lt;br /&gt;
*constants (i.e., specific natural language words), to be represented between square brackets, if lemmas, or between quotes, if strings: &amp;lt;nowiki&amp;gt;[United States]&amp;lt;/nowiki&amp;gt; and &amp;quot;United States&amp;quot;&lt;br /&gt;
*a feature (attribute, value, or attribute-value pair) or set of features of a group of natural language: LEX=NOU, GEN=MCL, etc.&lt;br /&gt;
&lt;br /&gt;
=== Examples ===&lt;br /&gt;
&lt;br /&gt;
NS(&amp;lt;nowiki&amp;gt;[United States]&amp;lt;/nowiki&amp;gt;;&amp;lt;nowiki&amp;gt;[the]&amp;lt;/nowiki&amp;gt;)=1; (The lemma &amp;lt;nowiki&amp;gt;[United States]&amp;lt;/nowiki&amp;gt; requires the specifier &amp;lt;nowiki&amp;gt;[the]&amp;lt;/nowiki&amp;gt;)&lt;/div&gt;</summary>
		<author><name>imported&gt;Martins</name></author>
	</entry>
</feed>