├── .gitignore ├── LICENSE ├── Models ├── VAE.py ├── discriminator.py └── generator.py ├── README.md ├── assets ├── data.csv └── other_data.csv ├── data_preprocessing.ipynb ├── gan_demo.ipynb ├── gru_demo.ipynb ├── tools └── technical_generator.py └── wgan-gp_demo.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/LICENSE -------------------------------------------------------------------------------- /Models/VAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/Models/VAE.py -------------------------------------------------------------------------------- /Models/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/Models/discriminator.py -------------------------------------------------------------------------------- /Models/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/Models/generator.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/README.md -------------------------------------------------------------------------------- /assets/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/assets/data.csv -------------------------------------------------------------------------------- /assets/other_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/assets/other_data.csv -------------------------------------------------------------------------------- /data_preprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/data_preprocessing.ipynb -------------------------------------------------------------------------------- /gan_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/gan_demo.ipynb -------------------------------------------------------------------------------- /gru_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/gru_demo.ipynb -------------------------------------------------------------------------------- /tools/technical_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/tools/technical_generator.py -------------------------------------------------------------------------------- /wgan-gp_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChickenBenny/Stock-prediction-with-GAN-and-WGAN/HEAD/wgan-gp_demo.ipynb --------------------------------------------------------------------------------