├── LICENSE ├── README.md ├── config ├── gru_hyper_params.json ├── lstm_hyper_params.json └── resnet_hyper_params.json ├── data └── readme.txt ├── images ├── Add_att_RNN.png ├── Forward_chaining.png ├── data_sample.png ├── model.png └── selfatt_RNN.png ├── main.py ├── models ├── RNN_models.py ├── __pycache__ │ ├── RNN_models.cpython-36.pyc │ ├── addatt_RNN.cpython-36.pyc │ ├── attention_layer.cpython-36.pyc │ ├── resnet.cpython-36.pyc │ └── selfatt_RNN.cpython-36.pyc ├── addatt_RNN.py ├── attention_layer.py ├── resnet.py ├── selfatt_RNN.py └── sharp_ratio.py ├── preprocess_data.py ├── pretrain_model └── readme.txt └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/README.md -------------------------------------------------------------------------------- /config/gru_hyper_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/config/gru_hyper_params.json -------------------------------------------------------------------------------- /config/lstm_hyper_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/config/lstm_hyper_params.json -------------------------------------------------------------------------------- /config/resnet_hyper_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/config/resnet_hyper_params.json -------------------------------------------------------------------------------- /data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/data/readme.txt -------------------------------------------------------------------------------- /images/Add_att_RNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/images/Add_att_RNN.png -------------------------------------------------------------------------------- /images/Forward_chaining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/images/Forward_chaining.png -------------------------------------------------------------------------------- /images/data_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/images/data_sample.png -------------------------------------------------------------------------------- /images/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/images/model.png -------------------------------------------------------------------------------- /images/selfatt_RNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/images/selfatt_RNN.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/main.py -------------------------------------------------------------------------------- /models/RNN_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/RNN_models.py -------------------------------------------------------------------------------- /models/__pycache__/RNN_models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/__pycache__/RNN_models.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/addatt_RNN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/__pycache__/addatt_RNN.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/attention_layer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/__pycache__/attention_layer.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/selfatt_RNN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/__pycache__/selfatt_RNN.cpython-36.pyc -------------------------------------------------------------------------------- /models/addatt_RNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/addatt_RNN.py -------------------------------------------------------------------------------- /models/attention_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/attention_layer.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/selfatt_RNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/selfatt_RNN.py -------------------------------------------------------------------------------- /models/sharp_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/models/sharp_ratio.py -------------------------------------------------------------------------------- /preprocess_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/preprocess_data.py -------------------------------------------------------------------------------- /pretrain_model/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/pretrain_model/readme.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caokyhieu/DELAFO-DeEp-Learning-Approach-for-portFolio-Optimization/HEAD/utils.py --------------------------------------------------------------------------------