├── LICENSE ├── README.md ├── amazon_main.py ├── amazon_parallel_l1.py ├── amazon_simpleAE.py ├── baselines.py ├── datasets.py ├── model.py ├── poster └── ICML_poster_sparseAE.pdf ├── rcv1_main.py ├── rcv1_parallel_l1.py ├── rcv1_simpleAE.py ├── scripts ├── amazon.sh ├── rcv1.sh ├── synthetic1.sh ├── synthetic2.sh └── synthetic_powerlaw.sh ├── simpleAE_scripts ├── amazon.sh ├── rcv1.sh ├── synthetic1.sh └── synthetic2.sh ├── slides └── l1ae-slides.pdf ├── synthetic_main.py ├── synthetic_powerlaw_main.py ├── synthetic_simpleAE.py ├── toy_example └── jan22_toy_example.ipynb └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/README.md -------------------------------------------------------------------------------- /amazon_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/amazon_main.py -------------------------------------------------------------------------------- /amazon_parallel_l1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/amazon_parallel_l1.py -------------------------------------------------------------------------------- /amazon_simpleAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/amazon_simpleAE.py -------------------------------------------------------------------------------- /baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/baselines.py -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/datasets.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/model.py -------------------------------------------------------------------------------- /poster/ICML_poster_sparseAE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/poster/ICML_poster_sparseAE.pdf -------------------------------------------------------------------------------- /rcv1_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/rcv1_main.py -------------------------------------------------------------------------------- /rcv1_parallel_l1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/rcv1_parallel_l1.py -------------------------------------------------------------------------------- /rcv1_simpleAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/rcv1_simpleAE.py -------------------------------------------------------------------------------- /scripts/amazon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/scripts/amazon.sh -------------------------------------------------------------------------------- /scripts/rcv1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/scripts/rcv1.sh -------------------------------------------------------------------------------- /scripts/synthetic1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/scripts/synthetic1.sh -------------------------------------------------------------------------------- /scripts/synthetic2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/scripts/synthetic2.sh -------------------------------------------------------------------------------- /scripts/synthetic_powerlaw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/scripts/synthetic_powerlaw.sh -------------------------------------------------------------------------------- /simpleAE_scripts/amazon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/simpleAE_scripts/amazon.sh -------------------------------------------------------------------------------- /simpleAE_scripts/rcv1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/simpleAE_scripts/rcv1.sh -------------------------------------------------------------------------------- /simpleAE_scripts/synthetic1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/simpleAE_scripts/synthetic1.sh -------------------------------------------------------------------------------- /simpleAE_scripts/synthetic2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/simpleAE_scripts/synthetic2.sh -------------------------------------------------------------------------------- /slides/l1ae-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/slides/l1ae-slides.pdf -------------------------------------------------------------------------------- /synthetic_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/synthetic_main.py -------------------------------------------------------------------------------- /synthetic_powerlaw_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/synthetic_powerlaw_main.py -------------------------------------------------------------------------------- /synthetic_simpleAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/synthetic_simpleAE.py -------------------------------------------------------------------------------- /toy_example/jan22_toy_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/toy_example/jan22_toy_example.ipynb -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushanshan/L1AE/HEAD/utils.py --------------------------------------------------------------------------------