├── .gitignore ├── LICENSE ├── MHWGAN_demo.ipynb ├── README.md ├── assets └── data.csv ├── models ├── __init__.py ├── decoder.py ├── discriminator.py ├── encoder.py ├── generator.py ├── mhwgan.py ├── vae.py └── wgan.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | /venv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /MHWGAN_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/MHWGAN_demo.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/README.md -------------------------------------------------------------------------------- /assets/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/assets/data.csv -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/models/decoder.py -------------------------------------------------------------------------------- /models/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/models/discriminator.py -------------------------------------------------------------------------------- /models/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/models/encoder.py -------------------------------------------------------------------------------- /models/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/models/generator.py -------------------------------------------------------------------------------- /models/mhwgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/models/mhwgan.py -------------------------------------------------------------------------------- /models/vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/models/vae.py -------------------------------------------------------------------------------- /models/wgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/models/wgan.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Metropolis-Hasting-WGAN-on-stock-prediction/HEAD/requirements.txt --------------------------------------------------------------------------------