You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Add a background color and large text to the whole page -->
51
55
<divclass="w3-grayscale w3-large">
52
56
<!-- About Container -->
53
-
<divclass="w3-container" id="about">
57
+
<divclass="w3-container container" id="about">
54
58
<pclass="w3-content" style="max-width:700px">
55
59
<h5class="w3-center w3-padding-64"><spanclass="w3-tag w3-wide">ARCHITECTURE OF MACHINE LEARNING PIPELINE</span></h5>
56
60
<p>Writing a working machine learning code does not guarantee a production ready system. This blog is about designing a machine learning prototype through the engineering road map. What you need is a team of professional Software Engineers by your side to take your (disposable) proof of concept and turn it into a performant, reliable, loosely coupled and scalable system!</p>
<p>As a Software Engineering Teaching Assistant at McGill University, Canada. The one assignment where students found it challenging was recursion. In this blog, I will try to simplify recursion in this blog post.</p>
52
+
<p>Recursion occurs when a function calls itself repeatedly until it reaches a specified stopping condition. Such a function is called a recursive function.</p>
0 commit comments