Skip to content

Commit e748505

Browse files
authored
Merge pull request #262 from imteekay/nn-links
Neural Network Links
2 parents bceb5b8 + b0d92b3 commit e748505

File tree

7 files changed

+29
-4
lines changed

7 files changed

+29
-4
lines changed

Home/components/Writings/postsList.ts

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ type Post = {
66
};
77

88
export const postsList: Post[] = [
9+
{
10+
datetime: '2024-11-17',
11+
link: '/building-a-neural-network-from-scratch-with-mathematics-and-python',
12+
title: 'Building A Neural Network from Scratch with Mathematics and Python',
13+
},
914
{
1015
datetime: '2024-09-13',
1116
link: '/training-ml-models-for-cancer-tumor-classification',

content/building-a-neural-network-from-scratch-with-mathematics-and-python/en/index.mdx

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ This post aims to be a comprehensive article about neural networks, how mathemat
66

77
Here are the following topics I'm going to cover in this post:
88

9-
## Table of Contents
10-
119
- Introduction of Neural Networks
1210
- Mathematics of Neural Networks
1311
- Digit Recognizer Problem & Python Implementation
@@ -548,8 +546,9 @@ In a future post, I want to expand this algorithm and add more layers so we can
548546

549547
## Resources
550548

551-
- [Mathematics for Machine Learning](/mathematics-for-machine-learning)
549+
- [Mathematics for Machine Learning](/series/mathematics-for-machine-learning)
552550
- [Machine Learning Research](https://github.com/imteekay/machine-learning-research)
551+
- [Neural Network from Scratch](https://github.com/imteekay/neural-network-from-scratch)
553552
- [Derivation of DL/dz](https://community.deeplearning.ai/t/derivation-of-dl-dz/165)
554553
- [Building a neural network from scratch](https://www.youtube.com/watch?v=w8yWXqWQYmU)
555554
- [Neural Networks and Deep Learning course](https://www.coursera.org/learn/neural-networks-deep-learning)

content/building-a-neural-network-from-scratch-with-mathematics-and-python/en/metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": "Building A Neural Network from Scratch with Mathematics and Python",
33
"description": "A 2-layers neural network implemented with mathematics and Python",
4-
"date": "2024-11-18",
4+
"date": "2024-11-17",
55
"tags": [
66
{
77
"href": "/tags/python",

content/tags/data-science/en/index.mdx

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
## 2024
44

55
<ul>
6+
<PostAndDate
7+
date="2024-11-17"
8+
title="Building A Neural Network from Scratch with Mathematics and Python"
9+
url="/building-a-neural-network-from-scratch-with-mathematics-and-python"
10+
/>
611
<PostAndDate
712
date="2024-09-13"
813
title="Training ML Models for Cancer Tumor Classification"

content/tags/machine-learning/en/index.mdx

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
## 2024
44

55
<ul>
6+
<PostAndDate
7+
date="2024-11-17"
8+
title="Building A Neural Network from Scratch with Mathematics and Python"
9+
url="/building-a-neural-network-from-scratch-with-mathematics-and-python"
10+
/>
611
<PostAndDate
712
date="2024-09-13"
813
title="Training ML Models for Cancer Tumor Classification"

content/tags/python/en/index.mdx

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
## 2024
44

55
<ul>
6+
<PostAndDate
7+
date="2024-11-17"
8+
title="Building A Neural Network from Scratch with Mathematics and Python"
9+
url="/building-a-neural-network-from-scratch-with-mathematics-and-python"
10+
/>
611
<PostAndDate
712
date="2024-09-13"
813
title="Training ML Models for Cancer Tumor Classification"

public/rss.xml

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
<title>TK's Blog</title>
1212
<link>https://iamtk.co</link>
1313
</image>
14+
<item>
15+
<title>Building A Neural Network from Scratch with Mathematics and Python</title>
16+
<link>https://www.iamtk.co/building-a-neural-network-from-scratch-with-mathematics-and-python</link>
17+
<guid isPermaLink="true">https://www.iamtk.co/building-a-neural-network-from-scratch-with-mathematics-and-python</guid>
18+
<description>A 2-layers neural network implemented with mathematics and Python</description>
19+
</item>
1420
<item>
1521
<title>Training ML Models for Cancer Tumor Classification</title>
1622
<link>https://www.iamtk.co/training-ml-models-for-cancer-tumor-classification</link>

0 commit comments

Comments
 (0)