AI Zone Admin Forum Add your forum

NEWS: Chatbots.org survey on 3000 US and UK consumers shows it is time for chatbot integration in customer service!read more..

Questions on POS parsing with setting match points
 
 

Say I want to respond to “I want to wash the car.”

This works:
s: ( ~want ~to_infinitive ~verb * ~noun )
  You have my permission.

So, what’s the parsing difference against these statements:
s: ( ~want ~to_infinitive _* )
s: ( @_0+ _~verb * _~noun )
  You want to ‘_0 the ‘_1

If the second statement is
s: ( @_0+ * _~noun )
  You want to do something to the ‘_0

That works, but I’ve not been able to get the ~verb/~noun combo to work in the second case.

I’m sure this is something fundamental I’m missing.

Thanks again!

 

 
  [ # 1 ]

what is the intent of ” @_0+” in your pattern?  trying to continue scanning after your _* is done?

 

 
  login or register to react