PyGSP


NamePyGSP JSON
Version 0.5.1 PyPI version JSON
download
home_pagehttps://github.com/epfl-lts2/pygsp
SummaryGraph Signal Processing in Python
upload_time2017-12-15 13:43:07
maintainer
docs_urlNone
authorEPFL LTS2
requires_python
licenseBSD
keywords graph signal processing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            ========================================
PyGSP: Graph Signal Processing in Python
========================================

+--------------------------------------------------+
| |doc|  |pypi|  |zenodo|  |license|  |pyversions| |
+--------------------------------------------------+
| |binder|  |travis|  |coveralls|  |github|        |
+--------------------------------------------------+

.. |doc| image:: https://readthedocs.org/projects/pygsp/badge/?version=latest
   :target: https://pygsp.readthedocs.io
.. |pypi| image:: https://img.shields.io/pypi/v/pygsp.svg
   :target: https://pypi.python.org/pypi/PyGSP
.. |zenodo| image:: https://zenodo.org/badge/16276560.svg
   :target: https://doi.org/10.5281/zenodo.1003157
.. |license| image:: https://img.shields.io/pypi/l/pygsp.svg
   :target: https://github.com/epfl-lts2/pygsp/blob/master/LICENSE.txt
.. |pyversions| image:: https://img.shields.io/pypi/pyversions/pygsp.svg
   :target: https://pypi.python.org/pypi/PyGSP
.. |travis| image:: https://img.shields.io/travis/epfl-lts2/pygsp.svg
   :target: https://travis-ci.org/epfl-lts2/pygsp
.. |coveralls| image:: https://img.shields.io/coveralls/epfl-lts2/pygsp.svg
   :target: https://coveralls.io/github/epfl-lts2/pygsp
.. |github| image:: https://img.shields.io/github/stars/epfl-lts2/pygsp.svg?style=social
   :target: https://github.com/epfl-lts2/pygsp
.. |binder| image:: https://mybinder.org/badge.svg
   :target: https://mybinder.org/v2/gh/epfl-lts2/pygsp/master?filepath=playground.ipynb

The PyGSP is a Python package to ease
`Signal Processing on Graphs <https://arxiv.org/abs/1211.0053>`_.
It is a free software, distributed under the BSD license, and
available on `PyPI <https://pypi.python.org/pypi/PyGSP>`_.
The documentation is available on
`Read the Docs <https://pygsp.readthedocs.io>`_
and development takes place on
`GitHub <https://github.com/epfl-lts2/pygsp>`_.
(A `Matlab counterpart <https://lts2.epfl.ch/gsp>`_ exists.)

The PyGSP facilitates a wide variety of operations on graphs, like computing
their Fourier basis, filtering or interpolating signals, plotting graphs,
signals, and filters. Its core is spectral graph theory, and many of the
provided operations scale to very large graphs. The package includes a wide
range of graphs, from point clouds like the Stanford bunny and the Swiss roll;
to networks like the Minnesota road network; to models for generating random
graphs like stochastic block models, sensor networks, Erdős–Rényi model,
Barabási-Albert model; to simple graphs like the path, the ring, and the grid.
Many filter banks are also provided, e.g. various wavelets like the Mexican
hat, Meyer, Half Cosine; some low-pass filters like the heat kernel and the
exponential window; and Gabor filters. Despite all the pre-defined models, you
can easily use a custom graph by defining its adjacency matrix, and a custom
filter bank by defining a set of functions in the spectral domain.

The following demonstrates how to instantiate a graph and a filter, the two
main objects of the package.

>>> from pygsp import graphs, filters
>>> G = graphs.Logo()
>>> G.estimate_lmax()
>>> g = filters.Heat(G, tau=100)

Let's now create a graph signal: a set of three Kronecker deltas for that
example. We can now look at one step of heat diffusion by filtering the deltas
with the above defined filter. Note how the diffusion follows the local
structure!

>>> import numpy as np
>>> DELTAS = [20, 30, 1090]
>>> s = np.zeros(G.N)
>>> s[DELTAS] = 1
>>> s = g.filter(s)
>>> G.plot_signal(s, highlight=DELTAS, backend='matplotlib')

.. image:: ../pygsp/data/readme_example.png
    :alt:
.. image:: pygsp/data/readme_example.png
    :alt:

You can
`try it online <https://mybinder.org/v2/gh/epfl-lts2/pygsp/master?filepath=playground.ipynb>`_,
look at the
`tutorials <https://pygsp.readthedocs.io/en/stable/tutorials/index.html>`_
to learn how to use it, or look at the
`reference guide <https://pygsp.readthedocs.io/en/stable/reference/index.html>`_
for an exhaustive documentation of the API. Enjoy the package!

Installation
------------

The PyGSP is available on PyPI::

    $ pip install pygsp

Note that you will need a recent version of ``pip`` and ``setuptools``. Please
run ``pip install --upgrade pip setuptools`` if you get any installation error.

Contributing
------------

See the guidelines for contributing in ``CONTRIBUTING.rst``.

Acknowledgments
---------------

The PyGSP was started in 2014 as an academic open-source project for
research purpose at the `EPFL LTS2 laboratory <https://lts2.epfl.ch>`_.
This project has been partly funded by the Swiss National Science Foundation
under grant 200021_154350 "Towards Signal Processing on Graphs".

If you are using the library for your research, for the sake of
reproducibility, please cite the version you used as indexed by
`Zenodo <https://doi.org/10.5281/zenodo.1003157>`_.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/epfl-lts2/pygsp",
    "name": "PyGSP",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "graph signal processing",
    "author": "EPFL LTS2",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/87/78/78793c753799de6f2728213a46867cd2ab756242f22a205c7a29aec05395/PyGSP-0.5.1.tar.gz",
    "platform": "any",
    "description": "========================================\nPyGSP: Graph Signal Processing in Python\n========================================\n\n+--------------------------------------------------+\n| |doc|  |pypi|  |zenodo|  |license|  |pyversions| |\n+--------------------------------------------------+\n| |binder|  |travis|  |coveralls|  |github|        |\n+--------------------------------------------------+\n\n.. |doc| image:: https://readthedocs.org/projects/pygsp/badge/?version=latest\n   :target: https://pygsp.readthedocs.io\n.. |pypi| image:: https://img.shields.io/pypi/v/pygsp.svg\n   :target: https://pypi.python.org/pypi/PyGSP\n.. |zenodo| image:: https://zenodo.org/badge/16276560.svg\n   :target: https://doi.org/10.5281/zenodo.1003157\n.. |license| image:: https://img.shields.io/pypi/l/pygsp.svg\n   :target: https://github.com/epfl-lts2/pygsp/blob/master/LICENSE.txt\n.. |pyversions| image:: https://img.shields.io/pypi/pyversions/pygsp.svg\n   :target: https://pypi.python.org/pypi/PyGSP\n.. |travis| image:: https://img.shields.io/travis/epfl-lts2/pygsp.svg\n   :target: https://travis-ci.org/epfl-lts2/pygsp\n.. |coveralls| image:: https://img.shields.io/coveralls/epfl-lts2/pygsp.svg\n   :target: https://coveralls.io/github/epfl-lts2/pygsp\n.. |github| image:: https://img.shields.io/github/stars/epfl-lts2/pygsp.svg?style=social\n   :target: https://github.com/epfl-lts2/pygsp\n.. |binder| image:: https://mybinder.org/badge.svg\n   :target: https://mybinder.org/v2/gh/epfl-lts2/pygsp/master?filepath=playground.ipynb\n\nThe PyGSP is a Python package to ease\n`Signal Processing on Graphs <https://arxiv.org/abs/1211.0053>`_.\nIt is a free software, distributed under the BSD license, and\navailable on `PyPI <https://pypi.python.org/pypi/PyGSP>`_.\nThe documentation is available on\n`Read the Docs <https://pygsp.readthedocs.io>`_\nand development takes place on\n`GitHub <https://github.com/epfl-lts2/pygsp>`_.\n(A `Matlab counterpart <https://lts2.epfl.ch/gsp>`_ exists.)\n\nThe PyGSP facilitates a wide variety of operations on graphs, like computing\ntheir Fourier basis, filtering or interpolating signals, plotting graphs,\nsignals, and filters. Its core is spectral graph theory, and many of the\nprovided operations scale to very large graphs. The package includes a wide\nrange of graphs, from point clouds like the Stanford bunny and the Swiss roll;\nto networks like the Minnesota road network; to models for generating random\ngraphs like stochastic block models, sensor networks, Erd\u0151s\u2013R\u00e9nyi model,\nBarab\u00e1si-Albert model; to simple graphs like the path, the ring, and the grid.\nMany filter banks are also provided, e.g. various wavelets like the Mexican\nhat, Meyer, Half Cosine; some low-pass filters like the heat kernel and the\nexponential window; and Gabor filters. Despite all the pre-defined models, you\ncan easily use a custom graph by defining its adjacency matrix, and a custom\nfilter bank by defining a set of functions in the spectral domain.\n\nThe following demonstrates how to instantiate a graph and a filter, the two\nmain objects of the package.\n\n>>> from pygsp import graphs, filters\n>>> G = graphs.Logo()\n>>> G.estimate_lmax()\n>>> g = filters.Heat(G, tau=100)\n\nLet's now create a graph signal: a set of three Kronecker deltas for that\nexample. We can now look at one step of heat diffusion by filtering the deltas\nwith the above defined filter. Note how the diffusion follows the local\nstructure!\n\n>>> import numpy as np\n>>> DELTAS = [20, 30, 1090]\n>>> s = np.zeros(G.N)\n>>> s[DELTAS] = 1\n>>> s = g.filter(s)\n>>> G.plot_signal(s, highlight=DELTAS, backend='matplotlib')\n\n.. image:: ../pygsp/data/readme_example.png\n    :alt:\n.. image:: pygsp/data/readme_example.png\n    :alt:\n\nYou can\n`try it online <https://mybinder.org/v2/gh/epfl-lts2/pygsp/master?filepath=playground.ipynb>`_,\nlook at the\n`tutorials <https://pygsp.readthedocs.io/en/stable/tutorials/index.html>`_\nto learn how to use it, or look at the\n`reference guide <https://pygsp.readthedocs.io/en/stable/reference/index.html>`_\nfor an exhaustive documentation of the API. Enjoy the package!\n\nInstallation\n------------\n\nThe PyGSP is available on PyPI::\n\n    $ pip install pygsp\n\nNote that you will need a recent version of ``pip`` and ``setuptools``. Please\nrun ``pip install --upgrade pip setuptools`` if you get any installation error.\n\nContributing\n------------\n\nSee the guidelines for contributing in ``CONTRIBUTING.rst``.\n\nAcknowledgments\n---------------\n\nThe PyGSP was started in 2014 as an academic open-source project for\nresearch purpose at the `EPFL LTS2 laboratory <https://lts2.epfl.ch>`_.\nThis project has been partly funded by the Swiss National Science Foundation\nunder grant 200021_154350 \"Towards Signal Processing on Graphs\".\n\nIf you are using the library for your research, for the sake of\nreproducibility, please cite the version you used as indexed by\n`Zenodo <https://doi.org/10.5281/zenodo.1003157>`_.\n\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Graph Signal Processing in Python",
    "version": "0.5.1",
    "split_keywords": [
        "graph",
        "signal",
        "processing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "961382b592faf447d50b7e44515ca5fd",
                "sha256": "884765260256f143a92053c420797053fda0f4eba1573471526fb4e62a4c4cde"
            },
            "downloads": -1,
            "filename": "PyGSP-0.5.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "961382b592faf447d50b7e44515ca5fd",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 1829421,
            "upload_time": "2017-12-15T13:43:03",
            "upload_time_iso_8601": "2017-12-15T13:43:03.340579Z",
            "url": "https://files.pythonhosted.org/packages/d4/89/2f4aa73cccf12bec5179ac5d52a68b508120c838b7e5d456f5ea0c8beade/PyGSP-0.5.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6fb5ee9f1f25acd3c37c9d5c3ec3a8a4",
                "sha256": "4874ad88793d622d4f578b40c6617a99b1f02bc6c6c4077f0e48cd71c7275800"
            },
            "downloads": -1,
            "filename": "PyGSP-0.5.1.tar.gz",
            "has_sig": false,
            "md5_digest": "6fb5ee9f1f25acd3c37c9d5c3ec3a8a4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1797290,
            "upload_time": "2017-12-15T13:43:07",
            "upload_time_iso_8601": "2017-12-15T13:43:07.722716Z",
            "url": "https://files.pythonhosted.org/packages/87/78/78793c753799de6f2728213a46867cd2ab756242f22a205c7a29aec05395/PyGSP-0.5.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2017-12-15 13:43:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "epfl-lts2",
    "github_project": "pygsp",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pygsp"
}
        
Elapsed time: 0.02654s