├── .gitattributes ├── .gitignore ├── LICENSE ├── Python ├── market_risk.ipynb ├── trained_bigan_sampler.png └── untrained_bigan_sampler.png ├── R ├── market_risk.R ├── portfolio_returns.png └── ret_data.csv ├── README.md └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-language=Python 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadshah/market_risk_gan_tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadshah/market_risk_gan_tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/market_risk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadshah/market_risk_gan_tensorflow/HEAD/Python/market_risk.ipynb -------------------------------------------------------------------------------- /Python/trained_bigan_sampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadshah/market_risk_gan_tensorflow/HEAD/Python/trained_bigan_sampler.png -------------------------------------------------------------------------------- /Python/untrained_bigan_sampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadshah/market_risk_gan_tensorflow/HEAD/Python/untrained_bigan_sampler.png -------------------------------------------------------------------------------- /R/market_risk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadshah/market_risk_gan_tensorflow/HEAD/R/market_risk.R -------------------------------------------------------------------------------- /R/portfolio_returns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadshah/market_risk_gan_tensorflow/HEAD/R/portfolio_returns.png -------------------------------------------------------------------------------- /R/ret_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadshah/market_risk_gan_tensorflow/HEAD/R/ret_data.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadshah/market_risk_gan_tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadshah/market_risk_gan_tensorflow/HEAD/requirements.txt --------------------------------------------------------------------------------