Identify a person through rules (IA)

2

I need a system that identifies a person (exactly a person) through rules (in this case, habits of such a person) but my AI knowledge is very shallow. Is there any appropriate technique for this? Preferably, it is applicable in languages such as Java and Python.

    
asked by anonymous 05.07.2016 / 00:24

1 answer

1

Hello, if you have a table for people's data you can try using a decision tree , is a technique that you use the table as the basis for forming a tree (this will be responsible for the algorithm's intelligence). There are also the rules-based systems , which is, roughly speaking , an intelligent chain of IFs and ELSES.

Unfortunately, I do not have very thorough knowledge in these areas. But perhaps these two subjects could serve as a basis for your research.

    
05.07.2016 / 01:05