3

I have to model an AI that should be able to understand clues and find the answer from a specified word database. I came across several papers that solve the problem with training neural networks or processing the clues by training several machine learning architectures on clues that exist on several databases. However, they all seem overkill for the course currently I'm taking.

So, what would be the most simple approach to solve that problem?

nbro
  • 39,006
  • 12
  • 98
  • 176
Mehmet
  • 41
  • 1

1 Answers1

1

Artificial neural network to solve Crossword puzzles, this model might help you to get a start on evolving your own.

https://github.com/fh295/DefGen2

A brute force of word combinations would solve the matrix, but might not get the context right and might be the simplest model if you are not in for a neural network.

user3411123
  • 121
  • 1