Skip to content

Commit 944c33c

Browse files
authored
Add kdt, Supervised Learning section
1 parent 6398248 commit 944c33c

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

_posts/2016-10-19-current-environment.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The type classes defined in `Algebra.Graph.Class` and `Algebra.Graph.HigherKinde
7777
### Trees
7878

7979
- **tree-traversals** [![Hackage](https://img.shields.io/hackage/v/tree-traversals.svg)](https://hackage.haskell.org/package/tree-traversals) [![tree-traversals](http://stackage.org/package/tree-traversals/badge/nightly)](http://stackage.org/nightly/package/tree-traversals) : The tree-traversals package defines in-order, pre-order, post-order, level-order, and reversed level-order traversals for tree-like types, and it also provides newtype wrappers for the various traversals so they may be used with `traverse`.
80-
- **KdTree** [](https://github.com/binarysunrise-io/kdtree){:.github} [![Hackage](https://img.shields.io/hackage/v/KdTree.svg)](https://hackage.haskell.org/package/KdTree) [![KdTree](http://stackage.org/package/KdTree/badge/nightly)](http://stackage.org/nightly/package/KdTree) : A simple library for k-d trees in Haskell. It enables searching through collections of points in O(log N) average time, using the nearestNeighbor function.
80+
8181

8282

8383
## Database interfaces
@@ -284,7 +284,14 @@ Note that this project is in early development and should only be used by contri
284284
- Q-Learning
285285
- Neural Network Q-Learning
286286

287-
## Clustering
287+
## Unsupervised Learning
288+
289+
### Nearest neighbours/spatial queries
290+
291+
- **KdTree** [](https://github.com/binarysunrise-io/kdtree){:.github} [![Hackage](https://img.shields.io/hackage/v/KdTree.svg)](https://hackage.haskell.org/package/KdTree) [![KdTree](http://stackage.org/package/KdTree/badge/nightly)](http://stackage.org/nightly/package/KdTree) : A simple library for k-d trees in Haskell. It enables searching through collections of points in O(log N) average time, using the nearestNeighbor function.
292+
- **kdt** [](https://github.com/giogadi/kdt){:.github} [![Hackage](https://img.shields.io/hackage/v/kdt.svg)](https://hackage.haskell.org/package/kdt) : This package includes static and dynamic versions of k-d trees, as well as "Map" variants that store data at each point in the k-d tree structure. Supports nearest neighbor, k nearest neighbors, points within a given radius, and points within a given range. To learn to use this package, start with the documentation for the Data.KdTree.Static module.
293+
294+
### Clustering
288295

289296
- K-Means
290297
- **kmeans** [](http://hub.darcs.net/gershomb/kmeans){:.darcs} [![Hackage](https://img.shields.io/hackage/v/kmeans.svg)](https://hackage.haskell.org/package/kmeans) [![kmeans](http://stackage.org/package/kmeans/badge/nightly)](http://stackage.org/nightly/package/kmeans) : A simple implementation of the standard k-means clustering algorithm.
@@ -302,7 +309,7 @@ Note that this project is in early development and should only be used by contri
302309
- **clustering**
303310
- Birch
304311

305-
## Dimensionality reduction
312+
### Dimensionality reduction
306313

307314
- Principal Component Analysis (PCA)
308315
- Kernel PCA

0 commit comments

Comments
 (0)