Hello,
You can first define a concept named 'Food' using the following rules:
# The words you want to match CLASSIFIER:pasta CLASSIFIER:pizza
# Remove the matches for the words that follow the verb eat. The 'eat@' represents all variations of the verb "eat". REMOVE_ITEM:(ALIGNED, "eat@ _c{Food}", "eat@ Food")
Then you'll get the results like I like pizza. -> match I like pasta. -> match I eat pizza. -> not match I ate pasta. -> not match
... View more