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..

POS conversion
 
 

I have the following code:

tUSEX () Are you a guy or a girl?
    
a:(~maleNice to meet youdude$ugender=male
    a
:(~femaleHeybabe$ugender=female 

If I enter “I’m a man/guy” as rejoinder it works fine but if I just enter “man/guy” it converts it to the verb form of the word which is not accepted by the concept list. Is there any way I can ensure that entering the single word will match the noun form?

 

 
  [ # 1 ]

I havent decided how i want to handle this issue. You can patch in the meantime either with
a: ([~male guy man]) 
or create an extended concept set:

concept: ~mymale(male guy ~male)

 

 
  [ # 2 ]

and another way is to keep your code and add a patch in early like this:

u: (_man) ^mark(~male _0)

 

 
  login or register to react