Skip to content

Commit

Permalink
Fix extra space that breaks LaTeX build (yay)
Browse files Browse the repository at this point in the history
  • Loading branch information
davewhipp committed Jun 3, 2024
1 parent f003295 commit 1a006ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/back-matter/md/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Jupyter Notebook
KD-Tree
A KD-Tree, or K-dimensional tree, is a space-partitioning data structure for organizing points in a k-dimensional space. KD-Trees are useful for making specific search tasks faster and more efficient, such as nearest neighbor search. The structure recursively divides the space into two half-spaces at each level, using one dimension at each step. This division is typically done by selecting a median value along one dimension to split the dataset, creating a binary tree. KD-Trees enable efficient querying of the space, such as finding points within a given range or nearest to a specific point, by significantly reducing the number of comparisons needed to locate them.
K-Nearest Neighbor search
K-Nearest Neighbor (KNN) search is a type of algorithm used to find the "k" closest points (or neighbors) to a given query point in a dataset. In the context of spatial data, KNN search can identify the nearest geographical features based on their spatial coordinates. The algorithm calculates distances between the query point and all points in the dataset, then selects the "k" smallest distances to determine the nearest neighbors.
Expand Down
2 changes: 1 addition & 1 deletion source/back-matter/nb/glossary.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"\n",
"KD-Tree\n",
" A KD-Tree, or K-dimensional tree, is a space-partitioning data structure for organizing points in a k-dimensional space. KD-Trees are useful for making specific search tasks faster and more efficient, such as nearest neighbor search. The structure recursively divides the space into two half-spaces at each level, using one dimension at each step. This division is typically done by selecting a median value along one dimension to split the dataset, creating a binary tree. KD-Trees enable efficient querying of the space, such as finding points within a given range or nearest to a specific point, by significantly reducing the number of comparisons needed to locate them.\n",
" \n",
"\n",
"K-Nearest Neighbor search\n",
" K-Nearest Neighbor (KNN) search is a type of algorithm used to find the \"k\" closest points (or neighbors) to a given query point in a dataset. In the context of spatial data, KNN search can identify the nearest geographical features based on their spatial coordinates. The algorithm calculates distances between the query point and all points in the dataset, then selects the \"k\" smallest distances to determine the nearest neighbors. \n",
"\n",
Expand Down

0 comments on commit 1a006ed

Please sign in to comment.