├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── batchsize.png ├── conf.py ├── dtcwt.png ├── dtcwt.rst ├── dtcwt_bands.png ├── dtcwt_bands2.png ├── dwt.png ├── dwt.rst ├── dwt_bands.png ├── functions.rst ├── index.rst ├── readme.rst ├── references.bib ├── requirements.txt ├── scale.png ├── scatternet.rst └── speed.rst ├── pytorch_wavelets ├── __init__.py ├── _version.py ├── dtcwt │ ├── __init__.py │ ├── coeffs.py │ ├── data │ │ ├── __init__.py │ │ ├── antonini.npz │ │ ├── farras.npz │ │ ├── legall.npz │ │ ├── near_sym_a.npz │ │ ├── near_sym_a2.npz │ │ ├── near_sym_b.npz │ │ ├── near_sym_b_bp.npz │ │ ├── qshift_06.npz │ │ ├── qshift_32.npz │ │ ├── qshift_a.npz │ │ ├── qshift_b.npz │ │ ├── qshift_b_bp.npz │ │ ├── qshift_c.npz │ │ └── qshift_d.npz │ ├── lowlevel.py │ ├── lowlevel2.py │ ├── transform2d.py │ └── transform_funcs.py ├── dwt │ ├── __init__.py │ ├── lowlevel.py │ ├── swt_inverse.py │ ├── transform1d.py │ └── transform2d.py ├── scatternet │ ├── __init__.py │ ├── layers.py │ └── lowlevel.py └── utils.py ├── requirements.txt ├── setup.py ├── tests ├── Measure of Stability.ipynb ├── Transform2d_np.py ├── barbara.npz ├── cplx.mat ├── datasets.py ├── ivan_fwd_j1.prof ├── ivan_fwd_j2.prof ├── mandrill.npz ├── near_sym_a2.py ├── nick_fwd_j1.prof ├── nick_fwd_j2.prof ├── parser.py ├── profile.py ├── profile2.py ├── profile_xfms ├── profiles │ ├── end_to_end_j1.prof │ ├── end_to_end_j1_nohp.prof │ ├── end_to_end_j1_symb.prof │ ├── end_to_end_j2.prof │ ├── end_to_end_j2_nohp.prof │ ├── end_to_end_j2_symb.prof │ ├── end_to_end_j3.prof │ ├── end_to_end_j3a.prof │ ├── end_to_end_j4.prof │ ├── end_to_end_j5.prof │ ├── forward_j1.prof │ ├── forward_j1_nohp.prof │ ├── forward_j1_symb.prof │ ├── forward_j2.prof │ ├── forward_j2_nohp.prof │ ├── forward_j2_symb.prof │ ├── forward_j3.prof │ ├── forward_j4.prof │ ├── forward_j5.prof │ ├── inverse_j1.prof │ ├── inverse_j1_nohp.prof │ ├── inverse_j1_symb.prof │ ├── inverse_j2.prof │ ├── inverse_j2_nohp.prof │ ├── inverse_j2_symb.prof │ ├── inverse_j3.prof │ ├── inverse_j4.prof │ ├── inverse_j5.prof │ ├── reference.prof │ ├── remove_c_fwd_j1.prof │ └── xfmifm_fwd_j2a.prof ├── requirements.txt ├── temp1.prof ├── temp1_5.prof ├── temp1_5a.prof ├── temp2.prof ├── temp2_5a.prof ├── test_coldfilt.py ├── test_colfilter.py ├── test_dtcwt.py ├── test_dtcwt_grad.py ├── test_dwt.py ├── test_dwt1d.py ├── test_dwt_grad.py ├── test_rowdfilt.py ├── test_rowfilter.py ├── test_scatnet_bwd.py └── test_scatnet_fwd.py ├── thresh.csv └── tox.ini /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/batchsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/batchsize.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/dtcwt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/dtcwt.png -------------------------------------------------------------------------------- /docs/dtcwt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/dtcwt.rst -------------------------------------------------------------------------------- /docs/dtcwt_bands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/dtcwt_bands.png -------------------------------------------------------------------------------- /docs/dtcwt_bands2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/dtcwt_bands2.png -------------------------------------------------------------------------------- /docs/dwt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/dwt.png -------------------------------------------------------------------------------- /docs/dwt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/dwt.rst -------------------------------------------------------------------------------- /docs/dwt_bands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/dwt_bands.png -------------------------------------------------------------------------------- /docs/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/functions.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/readme.rst -------------------------------------------------------------------------------- /docs/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/references.bib -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/scale.png -------------------------------------------------------------------------------- /docs/scatternet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/scatternet.rst -------------------------------------------------------------------------------- /docs/speed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/docs/speed.rst -------------------------------------------------------------------------------- /pytorch_wavelets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/__init__.py -------------------------------------------------------------------------------- /pytorch_wavelets/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/_version.py -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/__init__.py -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/coeffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/coeffs.py -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/antonini.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/antonini.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/farras.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/farras.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/legall.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/legall.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/near_sym_a.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/near_sym_a.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/near_sym_a2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/near_sym_a2.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/near_sym_b.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/near_sym_b.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/near_sym_b_bp.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/near_sym_b_bp.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/qshift_06.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/qshift_06.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/qshift_32.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/qshift_32.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/qshift_a.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/qshift_a.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/qshift_b.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/qshift_b.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/qshift_b_bp.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/qshift_b_bp.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/qshift_c.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/qshift_c.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/data/qshift_d.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/data/qshift_d.npz -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/lowlevel.py -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/lowlevel2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/lowlevel2.py -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/transform2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/transform2d.py -------------------------------------------------------------------------------- /pytorch_wavelets/dtcwt/transform_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dtcwt/transform_funcs.py -------------------------------------------------------------------------------- /pytorch_wavelets/dwt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_wavelets/dwt/lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dwt/lowlevel.py -------------------------------------------------------------------------------- /pytorch_wavelets/dwt/swt_inverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dwt/swt_inverse.py -------------------------------------------------------------------------------- /pytorch_wavelets/dwt/transform1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dwt/transform1d.py -------------------------------------------------------------------------------- /pytorch_wavelets/dwt/transform2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/dwt/transform2d.py -------------------------------------------------------------------------------- /pytorch_wavelets/scatternet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/scatternet/__init__.py -------------------------------------------------------------------------------- /pytorch_wavelets/scatternet/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/scatternet/layers.py -------------------------------------------------------------------------------- /pytorch_wavelets/scatternet/lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/scatternet/lowlevel.py -------------------------------------------------------------------------------- /pytorch_wavelets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/pytorch_wavelets/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Measure of Stability.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/Measure of Stability.ipynb -------------------------------------------------------------------------------- /tests/Transform2d_np.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/Transform2d_np.py -------------------------------------------------------------------------------- /tests/barbara.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/barbara.npz -------------------------------------------------------------------------------- /tests/cplx.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/cplx.mat -------------------------------------------------------------------------------- /tests/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/datasets.py -------------------------------------------------------------------------------- /tests/ivan_fwd_j1.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/ivan_fwd_j1.prof -------------------------------------------------------------------------------- /tests/ivan_fwd_j2.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/ivan_fwd_j2.prof -------------------------------------------------------------------------------- /tests/mandrill.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/mandrill.npz -------------------------------------------------------------------------------- /tests/near_sym_a2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/near_sym_a2.py -------------------------------------------------------------------------------- /tests/nick_fwd_j1.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/nick_fwd_j1.prof -------------------------------------------------------------------------------- /tests/nick_fwd_j2.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/nick_fwd_j2.prof -------------------------------------------------------------------------------- /tests/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/parser.py -------------------------------------------------------------------------------- /tests/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profile.py -------------------------------------------------------------------------------- /tests/profile2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profile2.py -------------------------------------------------------------------------------- /tests/profile_xfms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profile_xfms -------------------------------------------------------------------------------- /tests/profiles/end_to_end_j1.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/end_to_end_j1.prof -------------------------------------------------------------------------------- /tests/profiles/end_to_end_j1_nohp.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/end_to_end_j1_nohp.prof -------------------------------------------------------------------------------- /tests/profiles/end_to_end_j1_symb.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/end_to_end_j1_symb.prof -------------------------------------------------------------------------------- /tests/profiles/end_to_end_j2.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/end_to_end_j2.prof -------------------------------------------------------------------------------- /tests/profiles/end_to_end_j2_nohp.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/end_to_end_j2_nohp.prof -------------------------------------------------------------------------------- /tests/profiles/end_to_end_j2_symb.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/end_to_end_j2_symb.prof -------------------------------------------------------------------------------- /tests/profiles/end_to_end_j3.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/end_to_end_j3.prof -------------------------------------------------------------------------------- /tests/profiles/end_to_end_j3a.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/end_to_end_j3a.prof -------------------------------------------------------------------------------- /tests/profiles/end_to_end_j4.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/end_to_end_j4.prof -------------------------------------------------------------------------------- /tests/profiles/end_to_end_j5.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/end_to_end_j5.prof -------------------------------------------------------------------------------- /tests/profiles/forward_j1.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/forward_j1.prof -------------------------------------------------------------------------------- /tests/profiles/forward_j1_nohp.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/forward_j1_nohp.prof -------------------------------------------------------------------------------- /tests/profiles/forward_j1_symb.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/forward_j1_symb.prof -------------------------------------------------------------------------------- /tests/profiles/forward_j2.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/forward_j2.prof -------------------------------------------------------------------------------- /tests/profiles/forward_j2_nohp.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/forward_j2_nohp.prof -------------------------------------------------------------------------------- /tests/profiles/forward_j2_symb.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/forward_j2_symb.prof -------------------------------------------------------------------------------- /tests/profiles/forward_j3.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/forward_j3.prof -------------------------------------------------------------------------------- /tests/profiles/forward_j4.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/forward_j4.prof -------------------------------------------------------------------------------- /tests/profiles/forward_j5.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/forward_j5.prof -------------------------------------------------------------------------------- /tests/profiles/inverse_j1.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/inverse_j1.prof -------------------------------------------------------------------------------- /tests/profiles/inverse_j1_nohp.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/inverse_j1_nohp.prof -------------------------------------------------------------------------------- /tests/profiles/inverse_j1_symb.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/inverse_j1_symb.prof -------------------------------------------------------------------------------- /tests/profiles/inverse_j2.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/inverse_j2.prof -------------------------------------------------------------------------------- /tests/profiles/inverse_j2_nohp.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/inverse_j2_nohp.prof -------------------------------------------------------------------------------- /tests/profiles/inverse_j2_symb.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/inverse_j2_symb.prof -------------------------------------------------------------------------------- /tests/profiles/inverse_j3.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/inverse_j3.prof -------------------------------------------------------------------------------- /tests/profiles/inverse_j4.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/inverse_j4.prof -------------------------------------------------------------------------------- /tests/profiles/inverse_j5.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/inverse_j5.prof -------------------------------------------------------------------------------- /tests/profiles/reference.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/reference.prof -------------------------------------------------------------------------------- /tests/profiles/remove_c_fwd_j1.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/remove_c_fwd_j1.prof -------------------------------------------------------------------------------- /tests/profiles/xfmifm_fwd_j2a.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/profiles/xfmifm_fwd_j2a.prof -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/temp1.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/temp1.prof -------------------------------------------------------------------------------- /tests/temp1_5.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/temp1_5.prof -------------------------------------------------------------------------------- /tests/temp1_5a.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/temp1_5a.prof -------------------------------------------------------------------------------- /tests/temp2.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/temp2.prof -------------------------------------------------------------------------------- /tests/temp2_5a.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/temp2_5a.prof -------------------------------------------------------------------------------- /tests/test_coldfilt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_coldfilt.py -------------------------------------------------------------------------------- /tests/test_colfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_colfilter.py -------------------------------------------------------------------------------- /tests/test_dtcwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_dtcwt.py -------------------------------------------------------------------------------- /tests/test_dtcwt_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_dtcwt_grad.py -------------------------------------------------------------------------------- /tests/test_dwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_dwt.py -------------------------------------------------------------------------------- /tests/test_dwt1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_dwt1d.py -------------------------------------------------------------------------------- /tests/test_dwt_grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_dwt_grad.py -------------------------------------------------------------------------------- /tests/test_rowdfilt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_rowdfilt.py -------------------------------------------------------------------------------- /tests/test_rowfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_rowfilter.py -------------------------------------------------------------------------------- /tests/test_scatnet_bwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_scatnet_bwd.py -------------------------------------------------------------------------------- /tests/test_scatnet_fwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tests/test_scatnet_fwd.py -------------------------------------------------------------------------------- /thresh.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/thresh.csv -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcotter/pytorch_wavelets/HEAD/tox.ini --------------------------------------------------------------------------------