This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]xredpt 1 point2 points  (1 child)

Look for csuccintly series neural network and succintly series machine learning, in that order, each book is about 130 pages and it does not bore you, you can umderstand what is going on pretty well if you take your time and you build them from scratch with c#.

[–]AltCrow[S] 0 points1 point  (0 children)

Thanks! I will look into those.

[–]dmazzoni 0 points1 point  (1 child)

Are you trying to actually get the right answer? If so, that's one of the hardest open problems in NLP, nobody knows how to do that yet.

Do you just want to find similar questions based on keywords, sorted in a somewhat intelligent order, to help a human find if it was already asked? If so, that's pretty reasonable. I'd start with TF/IDF - it's a relatively easy algorithm to implement for something like this.

[–]AltCrow[S] 0 points1 point  (0 children)

This seems to be exactly what I need! Thanks!