Hidden implementation of brand models in .net?

Does anyone know of any HMM implementation in .net?

I have something that I did that was based on reverse engineering from that little knowledge that I have regarding the subject and some C ++ code for an application with a very specific domain that one of my professors did.

I want to improve it a bit, and have another job, which is in the same language for comparison, really helps to find out if I'm right.

+4
source share
2 answers

A quick Google search returned this C # implementation of what seems like a hidden Markov model (they said it was n-gram , but the implementation seems to be HMM).

+5
source

I am sure that it is very late, but perhaps it will serve as background information for other people: the Accord.NET framework combines a simple, efficient implementation of HMM.

+2
source

Source: https://habr.com/ru/post/1277004/


All Articles