diff options
-rwxr-xr-x | report2/paper.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/report2/paper.md b/report2/paper.md index 0f5c9ae..bd559d7 100755 --- a/report2/paper.md +++ b/report2/paper.md @@ -21,7 +21,7 @@ of its nearest neighbor(s). The distance between images can be calculated throug different distance metrics, however one of the most commonly used is euclidean distance: -$$ NN(x) \operatorname*{argmin}_{i\in[m]} \|x-x_i\|^2 $$ +$$ \textrm{NN}(x) = \operatorname*{argmin}_{i\in[m]} \|x-x_i\|^2 $$ *Square root when calculating euclidean distance is ommited as it does not affect ranking by distance* |