You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
reflexion-human-eval/hotpotqa_runs/notebooks/ReactQA.ipynb

193 lines
4.3 KiB
Plaintext

1 year ago
{
"cells": [
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Notebook for running React experiments"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import sys, os\n",
"sys.path.append('..')\n",
"root = '../root/'"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"import joblib\n",
"from util import summarize_react_trial, log_react_trial, save_agents\n",
"from agents import ReactReflectAgent, ReactAgent, ReflexionStrategy"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Load the HotpotQA Sample"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"hotpot = joblib.load('../data/hotpot-qa-distractor-sample.joblib').reset_index(drop = True)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Define the Reflexion Strategy"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
" NONE: No reflection\n",
" LAST_ATTEMPT: Use last reasoning trace in context \n",
" REFLEXION: Apply reflexion to the next reasoning trace \n",
" LAST_ATTEMPT_AND_REFLEXION: Use last reasoning trace in context and apply reflexion to the next reasoning trace \n",
" \n"
]
}
],
"source": [
"print(ReflexionStrategy.__doc__)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"strategy: ReflexionStrategy = ReflexionStrategy.REFLEXION"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Initialize a React Agent for each question"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
"agent_cls = ReactReflectAgent if strategy != ReflexionStrategy.NONE else ReactAgent\n",
"agents = [agent_cls(row['question'], row['answer']) for _, row in hotpot.iterrows()]"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Run `n` trials"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [],
"source": [
"n = 5\n",
"trial = 0\n",
"log = ''"
]
},
{
"cell_type": "code",
"execution_count": null,
1 year ago
"metadata": {},
"outputs": [],
1 year ago
"source": [
"for i in range(n):\n",
" for agent in [a for a in agents if not a.is_correct()]:\n",
" if strategy != ReflexionStrategy.NONE:\n",
" agent.run(reflect_strategy = strategy)\n",
" else:\n",
" agent.run()\n",
" print(f'Answer: {agent.key}')\n",
" trial += 1\n",
" log += log_react_trial(agents, trial)\n",
" correct, incorrect, halted = summarize_react_trial(agents)\n",
" print(f'Finished Trial {trial}, Correct: {len(correct)}, Incorrect: {len(incorrect)}, Halted: {len(halted)}')"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Save the result log"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"with open(os.path.join(root, 'ReAct', strategy.value, f'{len(agents)}_questions_{trial}_trials.txt'), 'w') as f:\n",
" f.write(log)\n",
"save_agents(agents, os.path.join('ReAct', strategy.value, 'agents'))"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "env",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.16"
},
"orig_nbformat": 4,
"vscode": {
"interpreter": {
"hash": "e23f799cbd2581634725fbf6ce3480ae26192d78438dfafc8efe944acd6490d5"
}
}
},
"nbformat": 4,
"nbformat_minor": 2
}