Skip to content

Commit

Permalink
Merge pull request #6 from yizhongw/arxiv_version_release
Browse files Browse the repository at this point in the history
Fix the hard-coded engine argument.
  • Loading branch information
yizhongw committed Mar 10, 2023
2 parents bcc81cd + d79a744 commit db568c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion self_instruct/bootstrap_instructions.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def parse_args():
prompt = encode_prompt(prompt_instructions, classification=args.use_clf_seed_tasks_only)
batch_inputs.append(prompt)
results = make_gpt3_requests(
engine="davinci",
engine=args.engine,
prompts=batch_inputs,
max_tokens=1024,
temperature=0.7,
Expand Down

0 comments on commit db568c3

Please sign in to comment.