Skip to content

Commit 1c7374c

Browse files
committed
recursion and machine learning specialist
1 parent deefbaa commit 1c7374c

File tree

2 files changed

+94
-10
lines changed

2 files changed

+94
-10
lines changed

blogs/machine_learning.html

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
.menu {
2020
display: none;
2121
}
22+
.container{
23+
width: 80%;
24+
margin: auto;
25+
}
2226
</style>
2327
<body>
2428
<!-- Links (sit on top) -->
@@ -38,19 +42,19 @@
3842
</div>
3943
</div>
4044
</div>
41-
<!-- Header with image -->
42-
<header class="bgimg w3-display-container w3-grayscale-min" id="home">
43-
<div class="w3-display-bottomleft w3-center w3-padding-large w3-hide-small">
44-
<span class="w3-tag">Machine Learning Pipeline</span>
45-
</div>
46-
<div class="w3-display-middle w3-center">
47-
<span class="w3-text-white" style="font-size:90px"><br>Machine Learning Pipeline</span>
48-
</div>
49-
</header>
45+
<!-- &lt;!&ndash; Header with image &ndash;&gt;-->
46+
<!-- <header class="bgimg w3-display-container w3-grayscale-min" id="home">-->
47+
<!-- <div class="w3-display-bottomleft w3-center w3-padding-large w3-hide-small">-->
48+
<!-- <span class="w3-tag">Machine Learning Pipeline</span>-->
49+
<!-- </div>-->
50+
<!-- <div class="w3-display-middle w3-center">-->
51+
<!-- <span class="w3-text-white" style="font-size:90px"><br>Machine Learning Pipeline</span>-->
52+
<!-- </div>-->
53+
<!-- </header>-->
5054
<!-- Add a background color and large text to the whole page -->
5155
<div class="w3-grayscale w3-large">
5256
<!-- About Container -->
53-
<div class="w3-container" id="about">
57+
<div class="w3-container container" id="about">
5458
<p class="w3-content" style="max-width:700px">
5559
<h5 class="w3-center w3-padding-64"><span class="w3-tag w3-wide">ARCHITECTURE OF MACHINE LEARNING PIPELINE</span></h5>
5660
<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>

blogs/recursion.html

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<title>Akash Singh</title>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
7+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
8+
<style>
9+
body, html {
10+
height: 100%;
11+
font-family: "Inconsolata", sans-serif;
12+
}
13+
.bgimg {
14+
background-position: center;
15+
background-size: cover;
16+
background-image: url("./img/ml.jpg");
17+
min-height: 75%;
18+
}
19+
.menu {
20+
display: none;
21+
}
22+
.container{
23+
width: 80%;
24+
margin: auto;
25+
}
26+
</style>
27+
<body>
28+
<!-- Links (sit on top) -->
29+
<div class="w3-top">
30+
<div class="w3-row w3-padding w3-black">
31+
<div class="w3-col s3">
32+
<a href="https://akashzcoder.github.io" class="w3-button w3-block w3-black">HOME</a>
33+
</div>
34+
<div class="w3-col s3">
35+
<a href="https://akashzcoder.github.io/#about" class="w3-button w3-block w3-black">ABOUT</a>
36+
</div>
37+
<div class="w3-col s3">
38+
<a href="https://akashzcoder.github.io/#resume" class="w3-button w3-block w3-black">RESUME</a>
39+
</div>
40+
<div class="w3-col s3">
41+
<a href="https://akashzcoder.github.io/#academicWriting" class="w3-button w3-block w3-black">BLOGS</a>
42+
</div>
43+
</div>
44+
</div>
45+
<!-- Add a background color and large text to the whole page -->
46+
<div class="w3-grayscale w3-large ">
47+
<!-- About Container -->
48+
<div class="w3-container container" id="about">
49+
<p class="w3-content " style="max-width:800px">
50+
<h5 class="w3-center w3-padding-64"><span class="w3-tag w3-wide">Recursion demystified</span></h5>
51+
<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>
53+
<p><b>Why use recursion?</b></p>
54+
</p>
55+
</div>
56+
<!-- Footer -->
57+
<footer class="w3-center w3-light-grey w3-padding-48 w3-large">
58+
<p>
59+
Copyright &#x000A9;&nbsp;2020 &#x000B7; Akash Singh
60+
</p>
61+
</footer>
62+
<script>
63+
// Tabbed Menu
64+
function openMenu(evt, menuName) {
65+
var i, x, tablinks;
66+
x = document.getElementsByClassName("menu");
67+
for (i = 0; i < x.length; i++) {
68+
x[i].style.display = "none";
69+
}
70+
tablinks = document.getElementsByClassName("tablink");
71+
for (i = 0; i < x.length; i++) {
72+
tablinks[i].className = tablinks[i].className.replace(" w3-dark-grey", "");
73+
}
74+
document.getElementById(menuName).style.display = "block";
75+
evt.currentTarget.firstElementChild.className += " w3-dark-grey";
76+
}
77+
document.getElementById("myLink").click();
78+
</script>
79+
</body>
80+
</html>

0 commit comments

Comments
 (0)