Final Runs

Steps to do a run (READ EVERY STEP):

  1. git pull to get the latest version of the repo.
  2. Open up the .ipynb file you were assigned in the instructions below, you'll see the run_experiment() function call at the end of the file. You'll need to modify its parameters.
  3. First, set max_steps_per_game=4, num_games=2, and reflect_before_vectorstore=True. In .env, set OPENAI_API_KEY=<test-key> for testing. Then, click Run All and make sure there are no errors.
  4. Then, we do the actual experiment. Set num_games, reflect_before_vectorstore, and random_seed as assigned in the instructions below. Set max_steps_per_game=200 for Monopoly. @Mehar @Evan You can determine what's appropriate for Werewolf. In .env, set OPENAI_API_KEY=<full-run-key> . Then, click Run All. It should take ~45 minutes.
  5. In the terminal, run git add . to add your files to the list of files to save. Run git status to check that you have all the files. Run git commit -m "monopoly reflection courtoom random seed 42" (adjusted to the experiment variant you’re running). Then, run git pull to fetch others’ data.
    1. If you get a yellow warning prompt, choose the merge option. Ie. git config.rebase false. Then, run git pull again.
    2. When you get the merge conflicts warning, run git add . to tell Github that you want to add your local files over others files. Run git status. You should see 3 files ready to be committed (you’ll be overwriting the .ipynb notebook and two vectorstore files with extensions .faiss and .pkl ). Then, run git commit -m "fixed merge conflict" to fix the merge conflict.
    3. Run git push to send your data to the repo.

Runs to run :-)