├── .gitignore ├── DDPG_Rec.py ├── DQN_Rec.py ├── LICENSE ├── README.md ├── amazon.py ├── env.py ├── env_gpu.txt └── resource └── stop_words.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunwardTree/TDDPG-Rec/HEAD/.gitignore -------------------------------------------------------------------------------- /DDPG_Rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunwardTree/TDDPG-Rec/HEAD/DDPG_Rec.py -------------------------------------------------------------------------------- /DQN_Rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunwardTree/TDDPG-Rec/HEAD/DQN_Rec.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunwardTree/TDDPG-Rec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunwardTree/TDDPG-Rec/HEAD/README.md -------------------------------------------------------------------------------- /amazon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunwardTree/TDDPG-Rec/HEAD/amazon.py -------------------------------------------------------------------------------- /env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunwardTree/TDDPG-Rec/HEAD/env.py -------------------------------------------------------------------------------- /env_gpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunwardTree/TDDPG-Rec/HEAD/env_gpu.txt -------------------------------------------------------------------------------- /resource/stop_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunwardTree/TDDPG-Rec/HEAD/resource/stop_words.txt --------------------------------------------------------------------------------