Convolutional dictionary learning for noisy signals.
Project description
This is a library to perform shift-invariant sparse dictionary learning, also known as convolutional sparse coding (CSC), on time-series data. It includes a number of different models:
univariate CSC
multivariate CSC
multivariate CSC with a rank-1 constraint [1]
univariate CSC with an alpha-stable distribution [2]
A mathematical descriptions of these models is available in the documentation.
Installation
To install this package, the easiest way is using pip. It will install this package and its dependencies. The setup.py depends on numpy and cython for the installation so it is advised to install them beforehand. To install this package, please run one of the two commands:
(Latest stable version)
pip install alphacsc
(Development version)
pip install git+https://github.com/alphacsc/alphacsc.git#egg=alphacsc
(Dicodile backend)
pip install numpy cython
pip install alphacsc[dicodile]
To use dicodile backend, do not forget to set MPI_HOSTFILE environment variable.
If you do not have admin privileges on the computer, use the --user flag with pip. To upgrade, use the --upgrade flag provided by pip.
To check if everything worked fine, you can run:
python -c 'import alphacsc'
and it should not give any error messages.
Quickstart
Here is an example to present briefly the API:
import numpy as np
import matplotlib.pyplot as plt
from alphacsc import BatchCDL
# Define the different dimensions of the problem
n_atoms = 10
n_times_atom = 50
n_channels = 5
n_trials = 10
n_times = 1000
# Generate a random set of signals
X = np.random.randn(n_trials, n_channels, n_times)
# Learn a dictionary with batch algorithm and rank1 constraints.
cdl = BatchCDL(n_atoms, n_times_atom, rank1=True)
cdl.fit(X)
# Display the learned atoms
fig, axes = plt.subplots(n_atoms, 2, num="Dictionary")
for k in range(n_atoms):
axes[k, 0].plot(cdl.u_hat_[k])
axes[k, 1].plot(cdl.v_hat_[k])
axes[0, 0].set_title("Spatial map")
axes[0, 1].set_title("Temporal map")
for ax in axes.ravel():
ax.set_xticklabels([])
ax.set_yticklabels([])
plt.show()
Dicodile backend
AlphaCSC can use a dicodile-based backend to perform sparse encoding in parallel.
To install dicodile, run pip install alphacsc[dicodile].
Known OpenMPI issues
When self-installing OpenMPI (for instance to run dicodile on a single machine, or for continuous integration), running the dicodile solver might end up causing a deadlock (no output for a long time). It is often due to communication issue between the workers. This issue can often be solved by disabling Docker-related virtual NICs, for instance by running export OMPI_MCA_btl_tcp_if_exclude="docker0".
Bug reports
Use the github issue tracker to report bugs.
Cite our work
If you use this code in your project, please consider citing our work:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file alphacsc-0.4.0.tar.gz
.
File metadata
- Download URL: alphacsc-0.4.0.tar.gz
- Upload date:
- Size: 4.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 261ad49ab647e251596de0623967ed9747e02e2dec1ba26f07965d06315301e3 |
|
MD5 | 4433cb784767b7278e7c34d221a37972 |
|
BLAKE2b-256 | e4b4ddc143a22ff7f1d98521e959116984dc07d9c930067d1684ff3a17352732 |
File details
Details for the file alphacsc-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: alphacsc-0.4.0-py3-none-any.whl
- Upload date:
- Size: 103.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9bab512e0f95920ef0b0091fa2640247530775601b5c05fab31e77cb8b416fa6 |
|
MD5 | 081693f36c1e8368cae86f30eeb70f8d |
|
BLAKE2b-256 | 08973e39d014cc1b93574dfba728243f692b46009cede755f09e604ca4bf1de2 |