lws


Namelws JSON
Version 1.2.8 PyPI version JSON
download
home_pagehttps://github.com/Jonathan-LeRoux/lws
SummaryFast spectrogram phase reconstruction using Local Weighted Sums
upload_time2023-11-28 02:53:03
maintainer
docs_urlNone
authorJonathan Le Roux
requires_python
licenseApache 2.0
keywords phase reconstruction stft short-term fourier transform spectrogram
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            LWS
===

### Fast spectrogram phase recovery using Local Weighted Sums ###

Author: Jonathan Le Roux -- 2008-2023

[![PyPI version](https://badge.fury.io/py/lws.svg)](https://badge.fury.io/py/lws)

LWS is a C/C++ library for which this package is a Python wrapper.  
A Matlab/Mex wrapper is also available.

License
-------

Copyright (C) 2008-2023 Jonathan Le Roux  
Apache 2.0  (http://www.apache.org/licenses/LICENSE-2.0)

Citing this code
----------------

If you use this code, please cite the following papers:

### Batch LWS ###

Jonathan Le Roux, Hirokazu Kameoka, Nobutaka Ono, Shigeki Sagayama,  
"Fast Signal Reconstruction from Magnitude STFT Spectrogram Based on Spectrogram Consistency,"  
in Proc. International Conference on Digital Audio Effects (DAFx), pp. 397--403, Sep. 2010.

    @InProceedings{LeRoux2010DAFx09,
      author =	 {Jonathan {Le Roux} and Hirokazu Kameoka and Nobutaka Ono and Shigeki Sagayama},
      title =	 {Fast Signal Reconstruction from Magnitude {STFT} Spectrogram Based on Spectrogram Consistency},
      booktitle =	 {Proc. International Conference on Digital Audio Effects (DAFx)},
      year =	 2010,
      pages =	 {397--403},
      month =	 sep
    }


### Online LWS, "No future" LWS ###

Jonathan Le Roux, Hirokazu Kameoka, Nobutaka Ono, Shigeki Sagayama,  
"Phase initialization schemes for faster spectrogram-consistency-based signal reconstruction,"  
in Proc. of ASJ Autumn Meeting, 3-10-3, Sep. 2010.

    @InProceedings{LeRoux2010ASJ09,
      author =	 {Jonathan {Le Roux} and Hirokazu Kameoka and Nobutaka Ono and Shigeki Sagayama},
      title =	 {Phase Initialization Schemes for Faster Spectrogram-Consistency-Based Signal Reconstruction},
      year =	 2010,
      booktitle =	 {Proc. Acoustical Society of Japan Autumn Meeting (ASJ)},
      number =	 {3-10-3},
      month =	 mar
    }


Installation:
-------------

1) The easiest way to install `lws` is via `pip`:

```sh
pip install lws
```

2) To compile from source using cython (required if one modifies the code):

```sh
cd python
LWS_USE_CYTHON=1 make
```

3) To compile from source using the pre-generated c source file (which was obtained with cython):

```sh
cd python
make
```
    
4) Alternatively, one can first use cython to create a tarball, which can then be installed with pip:

```sh
cd python
make sdist
pip install dist/lws-1.2.7.tar.gz
```

**Note:** On Windows, the Microsoft Visual C++ Compiler for your version of Python needs to be installed. See [this page](https://wiki.python.org/moin/WindowsCompilers) for more details.

Usage
-----

```python
import lws
import numpy as np

lws_processor=lws.lws(512,128, mode="speech") # 512: window length; 128: window shift
X = lws_processor.stft(x) # where x is a single-channel waveform
X0 = np.abs(X) # Magnitude spectrogram
print('{:6}: {:5.2f} dB'.format('Abs(X)', lws_processor.get_consistency(X0)))
X1 = lws_processor.run_lws(X0) # reconstruction from magnitude (in general, one can reconstruct from an initial complex spectrogram)
print('{:6}: {:5.2f} dB'.format('LWS', lws_processor.get_consistency(X1)))
```

Options
-------

```python
lws_processor=lws.lws(awin_or_fsize, fshift, L = 5, swin = None, look_ahead = 3,
		  nofuture_iterations = 0, nofuture_alpha = 1, nofuture_beta = 0.1, nofuture_gamma = 1,
		  online_iterations = 0, online_alpha = 1, online_beta = 0.1, online_gamma = 1,
		  batch_iterations = 100, batch_alpha = 100, batch_beta = 0.1, batch_gamma = 1,
		  symmetric_win = True, mode= None, fftsize=None, perfectrec=True)
```

* `awin_or_fsize`: either the analysis window, or a window length (in which case the sqrt(hann) window is used); the analysis window should be symmetric for the computations to be correct.
* `fshift`: window shift
* `L`: approximation order in the phase reconstruction algorithm, 5 should be good.
* `swin`: synthesis window (if None, it gets computed from the analysis window for perfect reconstruction)
* `look_ahead`: number of look-ahead frames in RTISI-LA-like algorithm, 3 should be good.
* `xxx_iterations`, `xxx_alpha`, `xxx_beta`, `xxx_gamma`: number of iterations of algorithm xxx (where xxx is one of `nofuture`, `online`, or `batch`), and parameters alpha/beta/gamma of the decreasing sparsity curve that is used to determine which bins get updated at each iteration. Any bin with magnitude larger than a given threshold is updated, others are ignored (`thresholds = alpha * np.exp(- beta * np.arange(iterations)**gamma)`)
* `symmetric_win`: determines whether to use a symmetric hann window or not
* `mode`: `None`, `'speech'`, or `'music'`. This sets default numbers of iterations of each algorithm that seem to be good for speech and music signals. Disclaimer: your mileage may vary.
* `fftsize`: can be set longer than frame size to do 0-padding in the FFT. Note that 0-padding will be done symmetrically on the left and right of the window to enforce symmetry in the analysis window.
* `perfectrec`: whether to pad with zeros on each side to ensure perfect reconstruction at the boundaries too. 

Three steps are implemented, and they can be turned on/off independently by appropriately setting the corresponding number of iterations:

* "no future" LWS: phase initialization using LWS updates that only involve past frames
* online LWS: phase estimation using online LWS updates, corresponding to a fast time-frequency domain version of RTISI-LA
* LWS: phase estimation using batch LWS updates on the whole spectrogram




Remarks
-------

1) The .cpp files are actually C code with some C99 style comments, but the .cpp extension is needed on Windows for mex to acknowledge the c99 flag (with .c, it is discarded, and -ansi used instead, leading to compilation errors)

2) Because the module is a C extension, it cannot be reloaded (see <http://bugs.python.org/issue1144263>). In Jupyter Notebooks, in particular, autoreload will not work, and the kernel has to be restarted.


Acknowledgements
----------------

The recipe to wrap the LWS C code as a python module was largely inspired by Martin Sosic's post: http://martinsosic.com/development/2016/02/08/wrapping-c-library-as-python-module.html
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Jonathan-LeRoux/lws",
    "name": "lws",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "phase,reconstruction,stft,short-term Fourier Transform,spectrogram",
    "author": "Jonathan Le Roux",
    "author_email": "leroux@merl.com",
    "download_url": "https://files.pythonhosted.org/packages/8b/06/6b93e1b4a5065b55b00cbb497fc29e9c4e644a6d5538fbe09ad449d97ab4/lws-1.2.8.tar.gz",
    "platform": null,
    "description": "LWS\n===\n\n### Fast spectrogram phase recovery using Local Weighted Sums ###\n\nAuthor: Jonathan Le Roux -- 2008-2023\n\n[![PyPI version](https://badge.fury.io/py/lws.svg)](https://badge.fury.io/py/lws)\n\nLWS is a C/C++ library for which this package is a Python wrapper.  \nA Matlab/Mex wrapper is also available.\n\nLicense\n-------\n\nCopyright (C) 2008-2023 Jonathan Le Roux  \nApache 2.0  (http://www.apache.org/licenses/LICENSE-2.0)\n\nCiting this code\n----------------\n\nIf you use this code, please cite the following papers:\n\n### Batch LWS ###\n\nJonathan Le Roux, Hirokazu Kameoka, Nobutaka Ono, Shigeki Sagayama,  \n\"Fast Signal Reconstruction from Magnitude STFT Spectrogram Based on Spectrogram Consistency,\"  \nin Proc. International Conference on Digital Audio Effects (DAFx), pp. 397--403, Sep. 2010.\n\n    @InProceedings{LeRoux2010DAFx09,\n      author =\t {Jonathan {Le Roux} and Hirokazu Kameoka and Nobutaka Ono and Shigeki Sagayama},\n      title =\t {Fast Signal Reconstruction from Magnitude {STFT} Spectrogram Based on Spectrogram Consistency},\n      booktitle =\t {Proc. International Conference on Digital Audio Effects (DAFx)},\n      year =\t 2010,\n      pages =\t {397--403},\n      month =\t sep\n    }\n\n\n### Online LWS, \"No future\" LWS ###\n\nJonathan Le Roux, Hirokazu Kameoka, Nobutaka Ono, Shigeki Sagayama,  \n\"Phase initialization schemes for faster spectrogram-consistency-based signal reconstruction,\"  \nin Proc. of ASJ Autumn Meeting, 3-10-3, Sep. 2010.\n\n    @InProceedings{LeRoux2010ASJ09,\n      author =\t {Jonathan {Le Roux} and Hirokazu Kameoka and Nobutaka Ono and Shigeki Sagayama},\n      title =\t {Phase Initialization Schemes for Faster Spectrogram-Consistency-Based Signal Reconstruction},\n      year =\t 2010,\n      booktitle =\t {Proc. Acoustical Society of Japan Autumn Meeting (ASJ)},\n      number =\t {3-10-3},\n      month =\t mar\n    }\n\n\nInstallation:\n-------------\n\n1) The easiest way to install `lws` is via `pip`:\n\n```sh\npip install lws\n```\n\n2) To compile from source using cython (required if one modifies the code):\n\n```sh\ncd python\nLWS_USE_CYTHON=1 make\n```\n\n3) To compile from source using the pre-generated c source file (which was obtained with cython):\n\n```sh\ncd python\nmake\n```\n    \n4) Alternatively, one can first use cython to create a tarball, which can then be installed with pip:\n\n```sh\ncd python\nmake sdist\npip install dist/lws-1.2.7.tar.gz\n```\n\n**Note:** On Windows, the Microsoft Visual C++ Compiler for your version of Python needs to be installed. See [this page](https://wiki.python.org/moin/WindowsCompilers) for more details.\n\nUsage\n-----\n\n```python\nimport lws\nimport numpy as np\n\nlws_processor=lws.lws(512,128, mode=\"speech\") # 512: window length; 128: window shift\nX = lws_processor.stft(x) # where x is a single-channel waveform\nX0 = np.abs(X) # Magnitude spectrogram\nprint('{:6}: {:5.2f} dB'.format('Abs(X)', lws_processor.get_consistency(X0)))\nX1 = lws_processor.run_lws(X0) # reconstruction from magnitude (in general, one can reconstruct from an initial complex spectrogram)\nprint('{:6}: {:5.2f} dB'.format('LWS', lws_processor.get_consistency(X1)))\n```\n\nOptions\n-------\n\n```python\nlws_processor=lws.lws(awin_or_fsize, fshift, L = 5, swin = None, look_ahead = 3,\n\t\t  nofuture_iterations = 0, nofuture_alpha = 1, nofuture_beta = 0.1, nofuture_gamma = 1,\n\t\t  online_iterations = 0, online_alpha = 1, online_beta = 0.1, online_gamma = 1,\n\t\t  batch_iterations = 100, batch_alpha = 100, batch_beta = 0.1, batch_gamma = 1,\n\t\t  symmetric_win = True, mode= None, fftsize=None, perfectrec=True)\n```\n\n* `awin_or_fsize`: either the analysis window, or a window length (in which case the sqrt(hann) window is used); the analysis window should be symmetric for the computations to be correct.\n* `fshift`: window shift\n* `L`: approximation order in the phase reconstruction algorithm, 5 should be good.\n* `swin`: synthesis window (if None, it gets computed from the analysis window for perfect reconstruction)\n* `look_ahead`: number of look-ahead frames in RTISI-LA-like algorithm, 3 should be good.\n* `xxx_iterations`, `xxx_alpha`, `xxx_beta`, `xxx_gamma`: number of iterations of algorithm xxx (where xxx is one of `nofuture`, `online`, or `batch`), and parameters alpha/beta/gamma of the decreasing sparsity curve that is used to determine which bins get updated at each iteration. Any bin with magnitude larger than a given threshold is updated, others are ignored (`thresholds = alpha * np.exp(- beta * np.arange(iterations)**gamma)`)\n* `symmetric_win`: determines whether to use a symmetric hann window or not\n* `mode`: `None`, `'speech'`, or `'music'`. This sets default numbers of iterations of each algorithm that seem to be good for speech and music signals. Disclaimer: your mileage may vary.\n* `fftsize`: can be set longer than frame size to do 0-padding in the FFT. Note that 0-padding will be done symmetrically on the left and right of the window to enforce symmetry in the analysis window.\n* `perfectrec`: whether to pad with zeros on each side to ensure perfect reconstruction at the boundaries too. \n\nThree steps are implemented, and they can be turned on/off independently by appropriately setting the corresponding number of iterations:\n\n* \"no future\" LWS: phase initialization using LWS updates that only involve past frames\n* online LWS: phase estimation using online LWS updates, corresponding to a fast time-frequency domain version of RTISI-LA\n* LWS: phase estimation using batch LWS updates on the whole spectrogram\n\n\n\n\nRemarks\n-------\n\n1) The .cpp files are actually C code with some C99 style comments, but the .cpp extension is needed on Windows for mex to acknowledge the c99 flag (with .c, it is discarded, and -ansi used instead, leading to compilation errors)\n\n2) Because the module is a C extension, it cannot be reloaded (see <http://bugs.python.org/issue1144263>). In Jupyter Notebooks, in particular, autoreload will not work, and the kernel has to be restarted.\n\n\nAcknowledgements\n----------------\n\nThe recipe to wrap the LWS C code as a python module was largely inspired by Martin Sosic's post: http://martinsosic.com/development/2016/02/08/wrapping-c-library-as-python-module.html",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Fast spectrogram phase reconstruction using Local Weighted Sums",
    "version": "1.2.8",
    "project_urls": {
        "Download": "https://github.com/Jonathan-LeRoux/lws/archive/1.2.8.tar.gz",
        "Homepage": "https://github.com/Jonathan-LeRoux/lws"
    },
    "split_keywords": [
        "phase",
        "reconstruction",
        "stft",
        "short-term fourier transform",
        "spectrogram"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b066b93e1b4a5065b55b00cbb497fc29e9c4e644a6d5538fbe09ad449d97ab4",
                "md5": "cee82173e0efa5994300959d98db4d71",
                "sha256": "aaaf86c4f040bc33f81981333fb37c280cd82ec338b8a421a5f74ba3c6f64d06"
            },
            "downloads": -1,
            "filename": "lws-1.2.8.tar.gz",
            "has_sig": false,
            "md5_digest": "cee82173e0efa5994300959d98db4d71",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 140513,
            "upload_time": "2023-11-28T02:53:03",
            "upload_time_iso_8601": "2023-11-28T02:53:03.866272Z",
            "url": "https://files.pythonhosted.org/packages/8b/06/6b93e1b4a5065b55b00cbb497fc29e9c4e644a6d5538fbe09ad449d97ab4/lws-1.2.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-28 02:53:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Jonathan-LeRoux",
    "github_project": "lws",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "lws"
}
        
Elapsed time: 0.14014s