Graph serialization library for ngraph.*
npm install ngraph.serializationngraph.serialization
====================
This library provides serialization and deserialization of a graph into various formats.
Currently supported formats are:
* JSON - is the most readable and simple graph storage format. Main
drawback of this format is its size - for large graph due to verbosity
of the format it can take more space then it could.
* Matrix market format is a
format suitable for representing general sparse matrices. Only nonzero entries
are provided, and the coordinates of each nonzero entry is given explicitly.
Most notably this format is used to store
University of Florida Sparse Matrix Collection