├── .gitignore ├── LICENSE ├── README.md ├── gym_recommendation ├── __init__.py ├── envs │ ├── __init__.py │ ├── reco_env.py │ └── reward_function.PNG ├── tests │ ├── __init__.py │ ├── test_reco_env.py │ └── test_utils.py └── utils.py ├── ppo_experiment.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/README.md -------------------------------------------------------------------------------- /gym_recommendation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/gym_recommendation/__init__.py -------------------------------------------------------------------------------- /gym_recommendation/envs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/gym_recommendation/envs/__init__.py -------------------------------------------------------------------------------- /gym_recommendation/envs/reco_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/gym_recommendation/envs/reco_env.py -------------------------------------------------------------------------------- /gym_recommendation/envs/reward_function.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/gym_recommendation/envs/reward_function.PNG -------------------------------------------------------------------------------- /gym_recommendation/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gym_recommendation/tests/test_reco_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/gym_recommendation/tests/test_reco_env.py -------------------------------------------------------------------------------- /gym_recommendation/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/gym_recommendation/tests/test_utils.py -------------------------------------------------------------------------------- /gym_recommendation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/gym_recommendation/utils.py -------------------------------------------------------------------------------- /ppo_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/ppo_experiment.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadighian/recommendation-gym/HEAD/setup.py --------------------------------------------------------------------------------