Hi,
I’m trying to create a script that will build responses based on the syntactic analysis of the sentences, is it possible?
Example: I like cashew nuts
I = PRONOUN_SUBJECT
like = VERB
cashew nuts = NOUN_PROPER_SINGULAR
I tried to build a script but I can not recognize this entry:
Example:
topic: ~INTRODUCTIONS (~PRONOUN_SUBJECT ~VERB ~NOUN_PROPER_SINGULAR)
u: (~PRONOUN_SUBJECT * ~VERB * ~NOUN_PROPER_SINGULAR *) I also like
what would I need to modify in order for my input text to recognize this structure?