├── .gitignore ├── LICENSE ├── README.md ├── conda_env.yml ├── decoder.py ├── encoder.py ├── logger.py ├── results └── graph.png ├── sac_ae.py ├── train.py ├── utils.py └── video.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .ipynb_checkpoints/ 3 | runs 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/README.md -------------------------------------------------------------------------------- /conda_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/conda_env.yml -------------------------------------------------------------------------------- /decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/decoder.py -------------------------------------------------------------------------------- /encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/encoder.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/logger.py -------------------------------------------------------------------------------- /results/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/results/graph.png -------------------------------------------------------------------------------- /sac_ae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/sac_ae.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/utils.py -------------------------------------------------------------------------------- /video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denisyarats/pytorch_sac_ae/HEAD/video.py --------------------------------------------------------------------------------