Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 955 Bytes

File metadata and controls

33 lines (24 loc) · 955 Bytes

SparseLearningListaProject

Overview This reposotory contains a TF implementation of paper Learned Convolutional Sparse Coding
https://arxiv.org/abs/1711.00328.

master branch contains VANILA implemintation of the proposed model while in master_test branch contain a more variants of the model. ACSC model

Train

to run training code:

cd encoder_decoder
python train.py --grayscale

see encoder_decoder/train.py for more arguments.

Test

to run test code:

cd encoder_decoder
python test.py --test_type denoise
or
python test.py --test_type inpint

where the defult test is run on on the checkpint model in 'code/encoder_decoder/logdir/models'

PyTorch implemintation

see A more updated with many diffrent varianaints here: https://github.com/benMen87/AppriximateConvolutionalSparseCoding