Skip to content

Commit 64d4730

Browse files
committed
vector notation, boundaries, kernal trick, features, and shi
1 parent 8e0bf0f commit 64d4730

21 files changed

+589
-179
lines changed
56.5 KB
Loading
212 KB
Loading
33.2 KB
Loading
33.2 KB
Loading
20.5 KB
Loading

content/Excalidraw/Drawing 2025-08-27 18.48.54.excalidraw.md

Lines changed: 471 additions & 175 deletions
Large diffs are not rendered by default.

content/Study Design.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ Key knowledge
136136
- the concept of [[Training with Data (Types of machine learning)|training algorithms using data]]
137137
- the concepts of model [[overfitting and underfitting]]
138138
- [[Support Vector Machine|Support vector machines]] (SVM) as margin-maximising linear classifiers, including:
139-
- the geometric interpretation of applying SVM [[Binary classification|binary classification]] to one- or two-dimensional data
140-
- the creation of a second feature from one-dimensional data to allow linear classification
139+
- the geometric interpretation of applying SVM [[Binary classification|binary classification]] to one- or two-dimensional data
140+
- the creation of a second feature from one-dimensional data to allow linear classification
141141
- Neural Networks, including:
142142
- the structure of [[Multi-layer Perceptron|multilayer-perceptron neural networks]]
143143
- the evaluation of outputs using [[Forward Propagation]]

content/Unit 4/Artificial Intelligence/AI effectiveness analysis/AI effectiveness analysis.md

Whitespace-only changes.

content/Unit 4/Artificial Intelligence/Machine Learning/Binary classification.md renamed to content/Unit 4/Artificial Intelligence/Machine Learning/Classification/Classification types/Binary classification.md

File renamed without changes.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
## What are they
3+
A decision boundary is an abstract boundary that separates input/feature fields into different sections, and thus what output should be given.
4+
5+
In a 2D plane with 2 features, a decision boundary will take the form of a 1d line.
6+
7+
![[Pasted image 20250828194513.png]]
8+
9+
## Notation
10+
The decision boundary is described by:
11+
$$\sum_{i=1}^n(x_{i} w_{i})+b=0$$
12+
(Note, $b$ is bias)
13+
14+
For 2 features/2 dimensions, it is: $x_{1}w_{1}+x_{2}w_{2}+\text{bias}=0$, which may be rearranged into a linear line.
15+
16+
For vector notation see [[Vector notation for weight and data]]

0 commit comments

Comments
 (0)