spectral-clustering-0.2.1.4: Library for spectral clustering.

Safe HaskellNone
LanguageHaskell2010

Math.Clustering.Spectral.Sparse

Synopsis

Documentation

newtype B Source #

Normed rows of B2. For a complete explanation, see Shu et al., "Efficient Spectral Neighborhood Blocking for Entity Resolution", 2011.

Constructors

B 

Fields

Instances
Show B Source # 
Instance details

Defined in Math.Clustering.Spectral.Sparse

Methods

showsPrec :: Int -> B -> ShowS #

show :: B -> String #

showList :: [B] -> ShowS #

newtype B1 Source #

B1 observation by feature matrix.

Constructors

B1 

Fields

Instances
Show B1 Source # 
Instance details

Defined in Math.Clustering.Spectral.Sparse

Methods

showsPrec :: Int -> B1 -> ShowS #

show :: B1 -> String #

showList :: [B1] -> ShowS #

newtype B2 Source #

B2 term frequency-inverse document frequency matrix of B1.

Constructors

B2 

Fields

Instances
Show B2 Source # 
Instance details

Defined in Math.Clustering.Spectral.Sparse

Methods

showsPrec :: Int -> B2 -> ShowS #

show :: B2 -> String #

showList :: [B2] -> ShowS #

type AdjacencyMatrix = SpMatrix Double Source #

Adjacency matrix input.

type LabelVector = SpVector Double Source #

Output vector containing cluster assignment (0 or 1).

spectral :: Int -> Int -> B -> [SpVector Double] Source #

Returns the second left singular vector (or from N) and E on of a sparse spectral process. Assumes the columns are features and rows are observations. B is the normalized matrix (from getB). See Shu et al., "Efficient Spectral Neighborhood Blocking for Entity Resolution", 2011.

spectralCluster :: B -> LabelVector Source #

Returns a vector of cluster labels for two groups by finding the second left singular vector of a special normalized matrix. Assumes the columns are features and rows are observations. B is the normalized matrix (from getB). See Shu et al., "Efficient Spectral Neighborhood Blocking for Entity Resolution", 2011.

spectralClusterK :: Int -> Int -> B -> LabelVector Source #

Returns a vector of cluster labels for two groups by finding the second left singular vector and on of a special normalized matrix and running kmeans. Assumes the columns are features and rows are observations. B is the normalized matrix (from getB). See Shu et al., "Efficient Spectral Neighborhood Blocking for Entity Resolution", 2011.

spectralNorm :: Int -> Int -> AdjacencyMatrix -> [SpVector Double] Source #

Returns the eigenvector with the second smallest eigenvalue (or N start) and E on of the symmetric normalized Laplacian L. Computes real symmetric part of L, so ensure the input is real and symmetric. Diagonal should be 0s for adjacency matrix. Uses I + Lnorm instead of I - Lnorm to find second largest singular value instead of second smallest for Lnorm.

spectralClusterNorm :: AdjacencyMatrix -> LabelVector Source #

Returns the eigenvector with the second smallest eigenvalue of the symmetric normalized Laplacian L. Computes real symmetric part of L, so ensure the input is real and symmetric. Diagonal should be 0s for adjacency matrix. Clusters the eigenvector by sign.

spectralClusterKNorm :: Int -> Int -> AdjacencyMatrix -> LabelVector Source #

Returns the eigenvector with the second smallest eigenvalue and on of the symmetric normalized Laplacian L. Computes real symmetric part of L, so ensure the input is real and symmetric. Diagonal should be 0s for adjacency matrix. Clusters the eigenvector using kmeans into k groups.

getB :: Bool -> SpMatrix Double -> B Source #

Get the normalized matrix B from an input matrix where the features are columns and rows are observations. Optionally, do not normalize.

b1ToB2 :: B1 -> B2 Source #

Normalize the input matrix by column. Here, columns are features.

getSimilarityFromB2 :: B2 -> Int -> Int -> Double Source #

Get the cosine similarity between two rows using B2.