Description
In order to run the experiment, first, I write a run script called jiaoben.py:
import argparse
from tot.methods.bfs import solve
from tot.tasks.game24 import Game24Task
args = argparse.Namespace(backend='gpt-3.5', temperature=0.1, task='game24', naive_run=False, prompt_sample=None, method_generate='propose', method_evaluate='value', method_select='greedy', n_generate_sample=1, n_evaluate_sample=1, n_select_sample=1)
task = Game24Task()
ys, infos = solve(args, task, 900)
print(ys[0])
Next, I ran Anaconda Prompt and ran the jiaoben.py file in the configured conda environment:
(env_tot) D:tree-of-thought-llm-master>python jiaoben.py
functools.partial(<function gpt at 0x000002533D6A9580>, model='gpt-3.5', temperature=0.1)
I waited for hours after executing the command, and there was no response, I don't know if the program is executing or where an error is generated, please advise!