├── .gitignore ├── images ├── hero.png ├── recsim_at_a_glance.png ├── simulator.png └── video_shot.png ├── notebooks ├── SlateQ_comparison.ipynb └── baseline_agents.ipynb ├── project_proposal.pdf ├── readme.md ├── requirements.txt └── research_papers ├── RecSim.pdf └── SlateQ.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | venv/* 2 | *.ipynb_checkpoints 3 | -------------------------------------------------------------------------------- /images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/images/hero.png -------------------------------------------------------------------------------- /images/recsim_at_a_glance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/images/recsim_at_a_glance.png -------------------------------------------------------------------------------- /images/simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/images/simulator.png -------------------------------------------------------------------------------- /images/video_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/images/video_shot.png -------------------------------------------------------------------------------- /notebooks/SlateQ_comparison.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/notebooks/SlateQ_comparison.ipynb -------------------------------------------------------------------------------- /notebooks/baseline_agents.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/notebooks/baseline_agents.ipynb -------------------------------------------------------------------------------- /project_proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/project_proposal.pdf -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/requirements.txt -------------------------------------------------------------------------------- /research_papers/RecSim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/research_papers/RecSim.pdf -------------------------------------------------------------------------------- /research_papers/SlateQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collinprather/SlateQ/HEAD/research_papers/SlateQ.pdf --------------------------------------------------------------------------------