<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to noun-verb</title><link>https://sourceforge.net/p/sequencetree/wiki/noun-verb/</link><description>Recent changes to noun-verb</description><atom:link href="https://sourceforge.net/p/sequencetree/wiki/noun-verb/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 01 Nov 2011 14:56:03 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/sequencetree/wiki/noun-verb/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage noun-verb modified by Ken Del Signore</title><link>https://sourceforge.net/p/sequencetree/wiki/noun-verb/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -25,10 +25,10 @@
 // form G1 from branches in sit
 
     G1 {             
-     br= is  man                       "is" = "P_is", a programmatic object
-             woman       
-             person      
-             dog
+     br= is_p  man                       "is_p" = a programmatic object
+               woman       
+               person      
+               dog
        }                
 
 //
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ken Del Signore</dc:creator><pubDate>Tue, 01 Nov 2011 14:56:03 -0000</pubDate><guid>https://sourceforge.netbd33d2bdf7a9cbeba131444fb483df05c5b8566b</guid></item><item><title>WikiPage noun-verb modified by Ken Del Signore</title><link>https://sourceforge.net/p/sequencetree/wiki/noun-verb/</link><description>&lt;pre&gt;--- v4 
+++ v5 
@@ -25,79 +25,79 @@
 // form G1 from branches in sit
 
     G1 {             
-     br= is  man         
+     br= is  man                       "is" = "P_is", a programmatic object
              woman       
              person      
              dog
        }                
 
 //
 // insert G1 lemma in all objects contained in G1
 
      man{	        woman{	       
-      br= G1	         br= G1	   
+      br= is G1            br= is G1	   
           ...                ...   
         }                     }       
 
 //
 // now read the following sentences
 
     man   run           
     woman cook
     dog   bark
 
 //
-// substitution yields:
+// substitution yields:      Substitute() uses P_is object
 
     G1  run
     G1  cook
     G1  bark
 
 //
 // G1 object becomes
 
     G1 {               
-     br= is:4  man     
+     br= P_is  man     
                woman   
                person  
                dog     
          run		     
          cook
          bark		     
        }              
 
 //
 // Make G2 from branches in G1
 
     G2 {             
-     br= is:3  run  
+     br= P_is  run  
                cook 
                bark 
     
     3:G1 =r_br         &lt;------ get this after rereading sentences
         }             
 
 //
 // link objects in G2 back to G2
 
      run{	        cook{	   
       br= G2	         br= G2	   
           ...                ...   
         }                   }       
  
 //
 // read more sentences
 
     boy  run
     girl cook
 
 //
 //substitute
 
     boy  G2
     girl G2
 
 //
 // G2 becomes
 
     G2 {             
@@ -105,59 +105,60 @@
                cook 
                bark 
     
      3:G1 =r_br 
       boy
      girl
        }             
 
 //
 //  make new object G3 from r_branches in G2
 
       G3 {             
        br= is:3  G1
                  boy
                  girl
           }                
   
 //
 // this process accumulates the nouns in G3
 
 // read more sentences
 
     man sit
     boy run
 
 //
 // substitute
 
     G3  sit
     G3  run
     G3  G2
   
 //
 // the G3 object becomes
 
       G3 {             
        br= is  G1
                boy
                girl
            sit
            run
            G2
           }                
 
 //
 //  make new object G4 from branches in G3
 
       G4 {
        br= is:3  sit
                  run
                  G2
          }                
 
 
 //
-// this process accumulates the verbs in G4
+// this iterative process accumulates the verbs in G4
 
              
+[coding]
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ken Del Signore</dc:creator><pubDate>Thu, 27 Oct 2011 15:24:41 -0000</pubDate><guid>https://sourceforge.net7d3eb29abaa9d11dea06a36dbd385dc824ef4b9d</guid></item><item><title>WikiPage noun-verb modified by Ken Del Signore</title><link>https://sourceforge.net/p/sequencetree/wiki/noun-verb/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -1,4 +1,4 @@
-In English sentences, the noun-verb pair often appear sequentially in order of n,v.
+In English sentences, the noun-verb pair often appears sequentially in order of n,v.
 
 Develop an automated algorithm for grouping words into noun and verb groups.
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ken Del Signore</dc:creator><pubDate>Wed, 26 Oct 2011 04:07:27 -0000</pubDate><guid>https://sourceforge.netae40b3d67fa2627947798ea712402e2196750055</guid></item><item><title>WikiPage noun-verb modified by Ken Del Signore</title><link>https://sourceforge.net/p/sequencetree/wiki/noun-verb/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -11,61 +11,62 @@
     person sit
     dog    sit
 
-
-sit object is:
-
-                  sit{
+//
+//sit object is:
+
+              sit{
             man =r_br   
           woman
          person
             dog
-                     }
+                 }
+
 //
 // form G1 from branches in sit
 
     G1 {             
-     br= is:4  man         
-               woman       
-               person      
-               dog
+     br= is  man         
+             woman       
+             person      
+             dog
        }                
 
 //
 // insert G1 lemma in all objects contained in G1
 
      man{	        woman{	       
       br= G1	         br= G1	   
           ...                ...   
         }                     }       
 
 //
 // now read the following sentences
 
     man   run           
     woman cook
     dog   bark
 
 //
 // substitution yields:
 
     G1  run
     G1  cook
     G1  bark
 
 //
 // G1 object becomes
 
     G1 {               
      br= is:4  man     
                woman   
                person  
                dog     
          run		     
          cook
          bark		     
        }              
 
 //
 // Make G2 from branches in G1
 
     G2 {             
@@ -73,30 +74,30 @@
                cook 
                bark 
     
     3:G1 =r_br         &lt;------ get this after rereading sentences
         }             
 
 //
 // link objects in G2 back to G2
 
      run{	        cook{	   
       br= G2	         br= G2	   
           ...                ...   
-        }                  }       
-
+        }                   }       
+ 
 //
 // read more sentences
 
     boy  run
     girl cook
 
 //
 //substitute
 
     boy  G2
     girl G2
 
 //
 // G2 becomes
 
     G2 {             
@@ -104,22 +105,24 @@
                cook 
                bark 
     
      3:G1 =r_br 
       boy
      girl
        }             
 
 //
 //  make new object G3 from r_branches in G2
 
       G3 {             
        br= is:3  G1
                  boy
                  girl
           }                
   
 //
 // this process accumulates the nouns in G3
+
+// read more sentences
 
     man sit
     boy run
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ken Del Signore</dc:creator><pubDate>Tue, 25 Oct 2011 17:32:39 -0000</pubDate><guid>https://sourceforge.net1bc98f1e77c68b40fb4b1b5b20d24f81f2ecd1d0</guid></item><item><title>WikiPage noun-verb modified by Ken Del Signore</title><link>https://sourceforge.net/p/sequencetree/wiki/noun-verb/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,112 +1,160 @@
-
-noun verb  pairings
-
-
-man    sit
-woman  sit
-person sit
-dog    sit
-
- 
-
+In English sentences, the noun-verb pair often appear sequentially in order of n,v.
+
+Develop an automated algorithm for grouping words into noun and verb groups.
+
+
+sequence the following sentences:
+
+
+    man    sit
+    woman  sit
+    person sit
+    dog    sit
+
+
+sit object is:
+
                   sit{
             man =r_br   
           woman
          person
             dog
                      }
-
+//
 // form G1 from branches in sit
 
-  G1 {             
-   br= is:4  man         
-             woman       
-             person      
-             dog
-     }                
-
-
-// insert G1 lemm in all objects contained in G1
-
-     man{	        woman{	      ...
+    G1 {             
+     br= is:4  man         
+               woman       
+               person      
+               dog
+       }                
+
+//
+// insert G1 lemma in all objects contained in G1
+
+     man{	        woman{	       
       br= G1	         br= G1	   
           ...                ...   
-        }                  }       
-
-
+        }                     }       
+
+//
 // now read the following sentences
 
-man   run           
-woman cook
-dog   bark
-
-// substituion yields:
-
-G1  run
-G1  cook
-G1  bark
-
-
-
+    man   run           
+    woman cook
+    dog   bark
+
+//
+// substitution yields:
+
+    G1  run
+    G1  cook
+    G1  bark
+
+//
 // G1 object becomes
 
-  G1 {               
-   br= is:4  man     
-             woman   
-             person  
-             dog     
-       run		     
-       cook
-       bark		     
-     }              
-
-
+    G1 {               
+     br= is:4  man     
+               woman   
+               person  
+               dog     
+         run		     
+         cook
+         bark		     
+       }              
+
+//
 // Make G2 from branches in G1
 
-  G2 {             
-   br= is:3  run  
-             cook 
-             bark 
-
- 3:G1 =r_br         &lt;------ get this after rereading sentences
-     }             
-
+    G2 {             
+     br= is:3  run  
+               cook 
+               bark 
+    
+    3:G1 =r_br         &lt;------ get this after rereading sentences
+        }             
+
+//
 // link objects in G2 back to G2
 
      run{	        cook{	   
       br= G2	         br= G2	   
           ...                ...   
         }                  }       
 
-
+//
 // read more sentences
 
-boy  run
-girl cook
-
+    boy  run
+    girl cook
+
+//
 //substitute
 
-boy  G2
-girl G2
-
-
+    boy  G2
+    girl G2
+
+//
 // G2 becomes
 
-  G2 {             
-   br= is:3  run  
-             cook 
-             bark 
-
- 3:G1 =r_br 
-  boy
- girl
-     }             
-
-
-??  make new object G3 from r_branches in G2
-
-   G3 {             
-   br= is:4  G1
-             boy
-             girl
-     }                
+    G2 {             
+     br= is:3  run  
+               cook 
+               bark 
+    
+     3:G1 =r_br 
+      boy
+     girl
+       }             
+
+//
+//  make new object G3 from r_branches in G2
+
+      G3 {             
+       br= is:3  G1
+                 boy
+                 girl
+          }                
+  
+//
+// this process accumulates the nouns in G3
+
+    man sit
+    boy run
+
+//
+// substitute
+
+    G3  sit
+    G3  run
+    G3  G2
+  
+//
+// the G3 object becomes
+
+      G3 {             
+       br= is  G1
+               boy
+               girl
+           sit
+           run
+           G2
+          }                
+
+//
+//  make new object G4 from branches in G3
+
+      G4 {
+       br= is:3  sit
+                 run
+                 G2
+         }                
+
+
+//
+// this process accumulates the verbs in G4
+
+             
+
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ken Del Signore</dc:creator><pubDate>Tue, 25 Oct 2011 17:28:36 -0000</pubDate><guid>https://sourceforge.net0811c3715b62a1a2008a3b76adee6757bc486654</guid></item><item><title>WikiPage noun-verb modified by Ken Del Signore</title><link>https://sourceforge.net/p/sequencetree/wiki/noun-verb/</link><description>
noun verb  pairings


man    sit
woman  sit
person sit
dog    sit

 

                  sit{
            man =r_br   
          woman
         person
            dog
                     }

// form G1 from branches in sit

  G1 {             
   br= is:4  man         
             woman       
             person      
             dog
     }                


// insert G1 lemm in all objects contained in G1

     man{	        woman{	      ...
      br= G1	         br= G1	   
          ...                ...   
        }                  }       


// now read the following sentences

man   run           
woman cook
dog   bark

// substituion yields:

G1  run
G1  cook
G1  bark



// G1 object becomes

  G1 {               
   br= is:4  man     
             woman   
             person  
             dog     
       run		     
       cook
       bark		     
     }              


// Make G2 from branches in G1

  G2 {             
   br= is:3  run  
             cook 
             bark 

 3:G1 =r_br         &lt;------ get this after rereading sentences
     }             

// link objects in G2 back to G2

     run{	        cook{	   
      br= G2	         br= G2	   
          ...                ...   
        }                  }       


// read more sentences

boy  run
girl cook

//substitute

boy  G2
girl G2


// G2 becomes

  G2 {             
   br= is:3  run  
             cook 
             bark 

 3:G1 =r_br 
  boy
 girl
     }             


??  make new object G3 from r_branches in G2

   G3 {             
   br= is:4  G1
             boy
             girl
     }                
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ken Del Signore</dc:creator><pubDate>Tue, 25 Oct 2011 16:55:44 -0000</pubDate><guid>https://sourceforge.net1e3c2059576815bbaae74a8d81a6c87cc980da2a</guid></item></channel></rss>