Template-DQN and DRRN agent implementations
Перейти к файлу
Xingdi (Eric) Yuan ccc0d6fa16
Merge pull request #4 from microsoft/users/GitHubPolicyService/c189c25d-834a-47a4-8f82-dd41be73b13d
Adding Microsoft SECURITY.MD
2023-06-12 15:32:13 -04:00
drrn Fix reset. Thanks Shunyu! 2019-11-01 13:09:26 -07:00
spm_models Add tdqn. 2019-10-28 22:43:06 +00:00
tdqn Enforce strict Jericho version. 2019-10-29 00:59:45 +00:00
.gitignore Initial commit 2019-10-28 13:41:10 -07:00
LICENSE Updating LICENSE to template content 2019-10-28 13:52:57 -07:00
README.md Update README.md 2019-10-29 11:16:53 -07:00
SECURITY.md Microsoft mandatory file 2023-06-12 19:25:54 +00:00

README.md

Template-DQN and DRRN

This repository contains reference implementations of TDQN and DRRN as mentioned in Interactive Fiction Games: A Colossal Adventure.

Quickstart

Install Dependencies:

sudo apt-get install redis-server
pip install -U spacy
pip install --user jericho==2.1.0
git clone https://github.com/microsoft/tdqn.git

Train TDQN:

cd tdqn/tdqn && python3 train.py --rom_path <path_to_your_rom_file>

Train DRRN:

cd tdqn/drrn && python3 train.py --rom_path <path_to_your_rom_file>

Citing

If these agents are helpful in your work, please cite the following:

@article{hausknecht19colossal,
  title={Interactive Fiction Games: A Colossal Adventure},
  author={Matthew Hausknecht and Prithviraj Ammanabrolu and Marc-Alexandre C{\^{o}}t{\'{e}} and Xingdi Yuan},
  journal={CoRR},
  year={2019},
  volume={abs/1909.05398}
}