Kashyap Neeraj
Kashyap Neeraj

Reputation: 154

Can speech recognition be done in ML.NET?

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

Answers (1)

Cihan Yakar
Cihan Yakar

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:

https://github.com/dotnet/machinelearning-samples/tree/master/samples/csharp/getting-started/DeepLearning_ImageClassification_TensorFlow

Upvotes: 4

Related Questions