Skip to main content

Convolutional dictionary learning for noisy signals.

Project description

Build Status codecov

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:

  1. univariate CSC

  2. multivariate CSC

  3. multivariate CSC with a rank-1 constraint [1]

  4. 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()

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

alphacsc-0.4.0rc7.tar.gz (10.0 MB view details)

Uploaded Source

Built Distributions

alphacsc-0.4.0rc7-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

alphacsc-0.4.0rc7-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86

alphacsc-0.4.0rc7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

alphacsc-0.4.0rc7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

alphacsc-0.4.0rc7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

alphacsc-0.4.0rc7-cp39-cp39-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

alphacsc-0.4.0rc7-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

alphacsc-0.4.0rc7-cp38-cp38-win32.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86

alphacsc-0.4.0rc7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

alphacsc-0.4.0rc7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

alphacsc-0.4.0rc7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

alphacsc-0.4.0rc7-cp38-cp38-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

alphacsc-0.4.0rc7-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

alphacsc-0.4.0rc7-cp37-cp37m-win32.whl (1.1 MB view details)

Uploaded CPython 3.7m Windows x86

alphacsc-0.4.0rc7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

alphacsc-0.4.0rc7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

alphacsc-0.4.0rc7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

alphacsc-0.4.0rc7-cp37-cp37m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

alphacsc-0.4.0rc7-cp36-cp36m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

alphacsc-0.4.0rc7-cp36-cp36m-win32.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86

alphacsc-0.4.0rc7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

alphacsc-0.4.0rc7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

alphacsc-0.4.0rc7-cp36-cp36m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file alphacsc-0.4.0rc7.tar.gz.

File metadata

  • Download URL: alphacsc-0.4.0rc7.tar.gz
  • Upload date:
  • Size: 10.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7.tar.gz
Algorithm Hash digest
SHA256 1a8190e5590023c2908493e367ef94a2edcf9e8928e90c61bc03aac8741d3bfc
MD5 393fd0e031166a1ab465e2a518f87c46
BLAKE2b-256 e9f1a7bf7e473ba92c3689fc5a66255acb4880ede0c7281cfa4c73e561def689

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 10457f068eed354b4ec58b801a7afeaa00519408af9dbc695f9a25d1ceafabd4
MD5 8ddf5d87afa3fb2c6470df50d2400652
BLAKE2b-256 95a693692270f2cec658d81552b5d61181467507e8160a2dd95cf436df03f58f

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp39-cp39-win32.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5395679dc0a2f898a0313425105ac535b80d72df38a193bfcdf32cc42cc4384d
MD5 7fee8a36c2a38ef72199ba0889a554b7
BLAKE2b-256 c3970d89f4a1ca0f2a87074283c5a1916f8c6ab37f29455ee72b892c97ecb8b8

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7706a5aaf86a68b41c85220a595830c109e1536171b19fad199740b9fd6f3a2
MD5 a9a2f71253c76406cf7effdd7d2731fc
BLAKE2b-256 1d32274502935312e617b1068b0f70456d5e16e348103a68ff450c86893c51c6

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93a75168e6564eb001f9d4c81440ab34a18ff493b63bf5aaa94ea5b57fe4c428
MD5 59dd952ef9f1c30291bbcf2379feccfe
BLAKE2b-256 8e2e90202c992875ad773532781ede72c93e0a3c48c0d1d7c32d5ebb4c82b621

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3adff142c1915d950750228e23d64191e7dea2b1221143c781e30b46b9cab7f
MD5 be93563b7048f682dabc92170be4a8d2
BLAKE2b-256 e44011891690b50c0726e489de4b8a4b29732ab8e51e79a603749ef77840dac3

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e514964020eb690168b219b090ab75b432031c642df4a2310d0377066fa275b4
MD5 41bb17deb6967ea832c4c14f1809748f
BLAKE2b-256 7c3c68e7c30ceeaa8afb9471ae4f4481c87f25b2f0266b1239843c6a8f1ccc81

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9f018be163682ad624e4b4cce1b00d8b4ad5573793407a31f5b72b81c75a1cc1
MD5 0e08fd9d395bec53e39938e200878ced
BLAKE2b-256 847735f6cd4b82b09b1d9cd776b3f02df8e6bd3ff4d2b49d61d0ae3178777dc4

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp38-cp38-win32.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3a44a276f58f58eb12474199c932e01fb7588a60440a481554a79e3a4b4ce2e6
MD5 bf43ade11a312eea3a1399223da9f768
BLAKE2b-256 8a89a3c954c698c46715080dbc7445383cb990628f3a339e9b5c1990fe5774d4

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c58b0e798d163f6d903b33560e143a0d7bfce90fcb051ddd4e8718a3f055b02
MD5 7542be0610ab1ba4dc46e2e41625bee2
BLAKE2b-256 67932fee4281664fe2c40f3df0966988bbce2f8c14b257620065ce3aa71aac6f

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1f12069b7ea6068b61f7e1c4dea61ad678ff24eefc8fdcfacd5d569624d3630
MD5 9a0e9ec2ac82656a8422a4fb92a1b362
BLAKE2b-256 e4c55a5806ad1cc162d789543ce070324ca82b7a1797ea045eb6f26692d290b1

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db56890ed1b8789429f348910439580e32f89faeb057c932530d06db68eb450d
MD5 aefa2a63ea1c43f349437b7663e20105
BLAKE2b-256 8a3deae75ecfa5e5fefabb8d6b85ae36726622fa9a3c86638bc4194d588bd45c

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87eb75eb7e27486c54764a4449da865acb42bdf3362b6ddfb99489e479a043db
MD5 6f7d1bc5c11308e6529b66dd7c12f921
BLAKE2b-256 ea39f5c03670b3e257663413025e8e52ca1e215b512568a804494006c7b6adac

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9f416eed39109b5325b9c66743223addd19116a518c1fb7005f76dd084fba008
MD5 c43fd1ead1622814f9851496c898911f
BLAKE2b-256 ed5942c54a1b422f64a8921ba07835bb96390efc2c415e1d6dd3a6af6a7d3430

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp37-cp37m-win32.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ad8666d04f55cdef1313ae9309dcb1a6af36596a777ad1e0bed4239352ba00c1
MD5 2c6b4dd0fe39b1c54853d56d09f4c658
BLAKE2b-256 52bf70d1c45978134fb73b7300d9a9c522732442c74e5f21ba62de3df73493c2

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e1fb39e086e784e54a46e2b71c1f4d831d6ccd423533a5cc4f8541f2091cc14
MD5 7f3a69e38cda6a6f6205c8d92867c4cf
BLAKE2b-256 177a43f326f709875338162c1abdacf17b622988c895c621d4cf93f5e4f4b60c

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61eee9fa8fce65bcd70609dc93ab142ff47334c88fa0e0dd0d7f754f079565ba
MD5 fde45d53af2126317f44493314df842c
BLAKE2b-256 7423a3c0c525c2f89d49eaa53dac31e6c3f4c4fc6a80c3867411ae1647553f5d

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9781a34ec0034dc20848ff93d89f50ed058df145c998b98a0c5d22ff6d7ba072
MD5 daab41c1524e016318c21f3c0b7992b5
BLAKE2b-256 fb51287228f91a926f92a1094a0d6eac7dad10e01987c51017e251aa02d9bf87

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1cf9250bbb4a0cdbc40dd07d0584461edb151deafff13585d33dff9b77f09b20
MD5 cf9a969778be9b980757a7b9ba135b9d
BLAKE2b-256 0a221f1536bc7b60934f89766c8f8c60c42d880eaab657278fa572f35dee9877

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 89edd154eab83d7335590cbf1265902aebcf3271ec9de68ba92d547d53aaafd2
MD5 a8459ac4f8ff96c8edf49ecc56b5549e
BLAKE2b-256 060e9a315cd6a219836865eb1673ee2b8077571cf6f68417b4e59e25354bcec1

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp36-cp36m-win32.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e05b6bda5e3d70ee9c5fecf320bff3a9c22e67d47f291ae4d2f3d7dd7f2ed565
MD5 ac9a1e3ca3fd5d06ed7ea9f5b5027ac8
BLAKE2b-256 e92799c32b9f704ae9600e4a69a5cf0ba56fb53aba67f33b4f299ba2496e9056

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56080de7295bcb6186992b0e48d6333ad4f55694a06301c914e48096d8c7aa18
MD5 bb019c45b60c77ea30335e51ac9eea1e
BLAKE2b-256 436815bb978ec7b1e2968cb3451ce10be8646becc645cd8f0eb6a9cc88a5ed80

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for alphacsc-0.4.0rc7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca9d3144673e2b21f4a02e5268278b8dd6510404449396dc2324156b09dcd0f8
MD5 0529c274fc1830afd87d95965ebca4e9
BLAKE2b-256 09ccaa6df524aea86b5e2cbef9d9ec33dddce07c46b326d7af3b22dd848c4a7f

See more details on using hashes here.

File details

Details for the file alphacsc-0.4.0rc7-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: alphacsc-0.4.0rc7-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for alphacsc-0.4.0rc7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c3d9c6a1a665fcd228edf82054504ca6badc4a042ee917bbb61c054900afbb3
MD5 97862eb9c88001f9b0b79505e50b41ce
BLAKE2b-256 0f1440a8cef481ad522bda9b871d3523dbec4d57b9013e914c796e57fe0f63c1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page