Skip to main content

Compressed Sensing library for 1D Spectroscopic Profiling Data

Project description

cs1

Compressed Sensing library for 1D (one-dimensional) Spectroscopic Profiling Data

package module sub-module description
cs1[3]
cs1.cs basic functions for CS sensing, recovery, hyper-parameter grid-search, etc.
cs1.basis cs1.basis.common commonly used non-adaptive CS transform bases[1]
cs1.basis.adaptive adaptive CS transform bases, e.g., LDA (linear discriminant analysis)-based, EBP (eigenvector-based projection)[2], VAE (variational auto-encoder)
cs1.metrics CS-related metrics, e.g., mutual coherence, sparsity, MSE, KLD
cs1.security cs1.security.tvsm time-variant sensing matrix mechanism[4]
cs1.domain cs1.domain.audio contains functions for audio and other one-dimensional signal processing. e.g., wave file I/O, lossy compression, ECG simulator
cs1.domain.image contains functions for image processing. e.g., image CS, lossy compression
cs1.gui provides a web-based playground for researchers. users can try different CS bases and sampling ratios

Publications:
[1] Adaptive compressed sensing of Raman spectroscopic profiling data for discriminative tasks [J]. Talanta, 2020, doi: 10.1016/j.talanta.2019.120681
[2] Task-adaptive eigenvector-based projection (EBP) transform for compressed sensing: A case study of spectroscopic profiling sensor [J]. Analytical Science Advances. Chemistry Europe, 2021, doi: 10.1002/ansa.202100018
[3] Compressed Sensing library for spectroscopic profiling data [J]. Software Impacts, 2023, doi: 10.1016/j.simpa.2023.100492
[4] Secured telemetry based on time-variant sensing matrix – An empirical study of spectroscopic profiling, Smart Agricultural Technology, Volume 5, 2023, doi: 10.1016/j.atech.2023.100268

Installation

pip install cs1

A simple startup

import cs1

# Generate common non-adaptive bases and save to a local pickle file.
# The generation process can be very slow, so save it for future use.
cs1.basis.common.Generate_PSIs(n, savepath = 'PSIs_' + str(n) + '.pkl') # n is the data/signal dimensionality

# load back bases
file = open('PSIs_' + str(n) + '.pkl','rb')
PSIs = pickle.load(file)
file.close()

# sparsity analysis
cs1.metrics.analyze_sparsity(x, PSIs)
# compare different bases and sampling ratio on a single sample
mses, rmses = cs1.cs.GridSearch_Sensing_n_Recovery(x, PSIs, solver = 'LASSO') # returns MSEs and relative MSEs

low-level cs functions

from cs1.basis.common import *

dftmtx()
dctmtx()
hwtmtx()

from cs1.cs import *

sensing()
recovery()

from cs1.metrics import *

mutual_coherence()
...

singal processing functions for audio / image domains

from cs1.domain.audio import *

simulate_ECG()
dct_lossy_signal_compression()
dft_lossy_signal_compression()

from cs1.domain.image import *

img_dct()
img_dft()
dct_lossy_image_compression()
dft_lossy_image_compression()

adaptive cs bases

from cs1.basis.adaptive import *

PSI, _ = EBP(X) # X is a m-by-n training dataset. PSI is the EBP basis
PSI, _, _ = LDA(X, y, display = True) # X and y are training dataset. PSI is the LDA basis.

run as a local web server

python -m cs1.gui.run

You can then access the web GUI at the 5006 port:

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

cs1-0.2.6.tar.gz (3.0 MB view details)

Uploaded Source

Built Distribution

cs1-0.2.6-py3-none-any.whl (3.0 MB view details)

Uploaded Python 3

File details

Details for the file cs1-0.2.6.tar.gz.

File metadata

  • Download URL: cs1-0.2.6.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.13

File hashes

Hashes for cs1-0.2.6.tar.gz
Algorithm Hash digest
SHA256 f0a9dffa18b6229bc87e84d852b59aabc8d1dda505a6b3f15b31b94898990ed2
MD5 d4abdb56fa2b0d13249987b8adf08441
BLAKE2b-256 26c9c171ef91f92cd91f76b90a57b1fbcf30b431223b039bb3123a282c2490af

See more details on using hashes here.

File details

Details for the file cs1-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: cs1-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.13

File hashes

Hashes for cs1-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 143b2c9207ec07bf0c12e7d1b25ea3bc0caf032e4bf64cd425736b4eafa3cf5a
MD5 120847baba2b8d280aeb9470683d6203
BLAKE2b-256 e71bbccf3a3966067b1b298e60a20ab039ee7ca3535f53cd0219b2ab3f91c714

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