Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kudkudak committed Dec 17, 2014
2 parents 0ffdb94 + ec5599c commit 95917ad
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Part of gmum.R project. See gmum research group page [here](http://gmum.ii.uj.ed

This package contains **fast** C++ implementation
of **online** clustering algorithm Growing Neural Gas wrapped as R package using Rcpp.
It produces topological graph, that you can easily convert to igraph, or you can
dump your model to optimized binary file and load it later on.
It produces topological graph, that you can easily **convert to igraph**, or save to
efficient binary file.

This algorithms is widely used for dynamic clustering problem. Package is designed with
focus on **big datasets**. It is already possible to cluster dataset without making its
Expand Down Expand Up @@ -68,6 +68,10 @@ gng <- GNG(scaled_wine, labels=wine$Type, max_nodes=20)
# Find closest node to vector [1,1,1]
predict(gng, c(1,1,1))

# Convert to igraph and print mean degree of the network
ig = convertToGraph(gng)
mean(degree(ig))

# Find mean error
meanError(gng)

Expand Down

0 comments on commit 95917ad

Please sign in to comment.