Skip to content

vruetten/cmm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2166cd5 · May 2, 2023

History

39 Commits
Mar 28, 2023
May 1, 2023
May 1, 2023
May 1, 2023
Apr 8, 2023
May 2, 2023
May 2, 2023
Apr 20, 2023
Mar 28, 2023
Apr 1, 2023
Apr 14, 2023
Mar 28, 2023
Apr 2, 2023
Mar 28, 2023
Apr 3, 2023

Repository files navigation

Coherence Mixture Model

License PyPI Python Version CI codecov

or for now k-Means Clustering with coherence as distance metric

Unsupervised clustering algoirthm which clusters timeseries based on coherence.

Coherence between two signals is defined as:

C ( x ^ ( ω ) , μ ^ ( ω ) ) = | S x , μ ( ω ) | 2 S x x ( ω ) S μ , μ ( ω )

xnt: data
k: number of clusters
fs: sampling frequency
nperseg: number of timepoints in each trial (to compute FFT over and average)
itemax: max number of iterations to optimize

from cmm import CMM

cm = CMM(
    xnt,
    k=k,
    fs=fs,
    nperseg=nperseg,
)

cm.optimize(itemax=itemax)
print(cm.labels)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages