An open API service indexing awesome lists of open source software.

https://github.com/sdq/deepvis

machine learning algorithms in Swift
https://github.com/sdq/deepvis

hierarchical-clustering kmeans lda machine-learning pca unsupervised-learning

Last synced: about 2 months ago
JSON representation

machine learning algorithms in Swift

Awesome Lists containing this project

README

          

# deepvis
machine learning algorithms in Swift
[Download on App Store](https://itunes.apple.com/app/id1070820122)

![](https://cdn.dribbble.com/users/872237/screenshots/3768914/deepvis.png)

### Basic
1. [vector](https://github.com/sdq/deepvis/blob/master/algorithem/vector.swift)
2. [matrix](https://github.com/sdq/deepvis/blob/master/algorithem/matrix.swift)

### Cluster Analysis [wiki](https://en.wikipedia.org/wiki/Cluster_analysis)
1. [Kmeans Clustering](https://github.com/sdq/deepvis/blob/master/algorithem/kmeans/kmeans.swift)
2. [Hierarchical Clustering](https://github.com/sdq/deepvis/blob/master/algorithem/hca/hierarchical.swift)

### Dimensionality Reduction [wiki](https://en.wikipedia.org/wiki/Dimensionality_reduction)
1. [Principal Component Analysis](https://github.com/sdq/deepvis/blob/master/algorithem/pca/pca.swift)
2. [Linear Discriminant Analysis](https://github.com/sdq/deepvis/blob/master/algorithem/lda/lda.swift)