opencog / relex

English Dependency Relationship Extractor

Home Page:http://wiki.opencog.org/w/RelEx

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

relative-pronoun 'whose' is being related as a determiner

amebel opened this issue · comments

The following sentence is breaking r2l det-rule.

Sentence: I saw the man whose wife you love.
Output:

Dependency relations:                

    _obj(see, man)                   
    _subj(see, I)                    
    _obj(love, wife)                 
    _subj(love, you)                 
    _pobj(whose, wife)               
    _det(man, whose)                 

Attributes:                          

    tense(see, past)                 
    subscript-TAG(see, .v-d)         
    pos(see, verb)                   
    pronoun-FLAG(you, T)             
    gender(you, person)              
    pos(you, noun)                   
    tense(love, present)             
    subscript-TAG(love, .v)          
    pos(love, verb)                  
    pos(., punctuation)              
    QUERY-FLAG(wife, T)              
    subscript-TAG(wife, .n)          
    pos(wife, noun)                  
    noun_number(wife, singular)      
    pronoun-FLAG(whose, T)           
    gender(whose, person)            
    pos(whose, noun)                 
    definite-FLAG(man, T)            
    subscript-TAG(man, .n)           
    pos(man, noun)                   
    noun_number(man, singular)       
    pronoun-FLAG(I, T)               
    gender(I, person)                
    definite-FLAG(I, T)              
    subscript-TAG(I, .p)             
    pos(I, noun)                     
    noun_number(I, singular)         
    pos(the, det)                    
    ```

Error:  ` _det(man, whose) `

no longer using relex version of r2l. See also bug #230. Closing.