In this article, we have presented several Interview Questions (MCQs) with detailed answers on Convolution in Machine Learning models. Convolution is the most important and compute intensive operation in ML models.
Start practicing the following questions:
What is the time complexity of brute force approach for 2D Convolution?O(N^2 K^2)O(N^2)O(N * K)O(N^3)2D Convolution is the dot product of all sub-matrices of size K^2. There are O(N^2) such sub-matrices. So, the brute force approach ...
Published on March 13, 2022 13:53