Skip to content
/ ksvd Public
forked from nel215/ksvd

A ksvd implementation written in python.

License

Notifications You must be signed in to change notification settings

dunovank/ksvd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

K-SVD

An K-SVD implementaion written in Python.

Build Status PyPI

Installation

pip install ksvd

Usage

import numpy as np
from ksvd import ApproximateKSVD


# X ~ gamma.dot(dictionary)
X = np.random.randn(1000, 20)
aksvd = ApproximateKSVD(n_components=128)
dictionary = aksvd.fit(X).components_
gamma = aksvd.transform(X)

Feature

  • Approximate K-SVD

Example

License

Licensed under the Apache License 2.0.

References

About

A ksvd implementation written in python.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 97.1%
  • Makefile 2.9%