Using Deep Learning in ML.NET
Learn how deep learning is used in ML.NET.
We'll cover the following...
In ML.NET, deep learning functionality is abstracted away by easy-to-use APIs, so developers don’t have to build and configure their own ANNs. We don’t need to decide how many nodes we need to place in the input layer. We don’t have to worry about the depth and width of the hidden layers either.
ML.NET achieves this by utilizing other open-source ML technology. By default, it uses either TensorFlow or PyTorch, depending on the task type. This is how it works under the hood:
The model is built by using TensorFlow or PyTorch.
ML.NET provides a method to access the model for consumption. ...