Reputation: 154
I am new to Machine Learning. I came across ML.NET (Machine Learning framework by Microsoft). Can we use this framework for speech recognition? What all things you should know if you want to do a speech recognition in ML.NET?
Upvotes: 7
Views: 4528
Reputation: 2482
IMHO, for beginners, modifying sample neural networks/deep learning solutions is a good start point. And, for neural networks the start point is Tensorflow. With ML.net you can consume Tensorflow models.
Audio recognition with Tensorflow:
https://www.tensorflow.org/tutorials/sequences/audio_recognition
A sample for using Tensorflow models with ML.net:
Upvotes: 4