7

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?

Cihan Yakar
  • 2,402
  • 28
  • 30
Kashyap Neeraj
  • 154
  • 3
  • 14
  • ML.NET does not process audio at this point, just text and images. You can ask for it in the ML.NET github page. – amy8374 Feb 25 '19 at 21:24

1 Answers1

4

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

Cihan Yakar
  • 2,402
  • 28
  • 30