Question:
I need a system that identifies a person (exactly a person) through rules (in this case, that person's habits) but my knowledge of AI is very shallow. Is there any proper technique for this? Preferably, it is applicable in languages like Java and Python.
Answer:
Hello, if you have a table referring to people's data you can try using a decision tree , it is a technique that uses the table as a basis to form a tree (this will be responsible for the algorithm's intelligence). There are also rules-based systems , which is roughly a smart chain of IFs and ELSES.
Unfortunately I don't have a very deep knowledge in these areas. But perhaps these two subjects can serve as a basis for your research.