-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add claude2-alpaca-13b, recycled-wizardlm-7b-v1.0, recycled-wizardlm-…
…7b-v2.0 to AlpacaEval (#147) Co-authored-by: Ming Li <[email protected]>
- Loading branch information
Showing
10 changed files
with
43,524 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
9,662 changes: 9,662 additions & 0 deletions
9,662
results/recycled-wizardlm-7b-v1.0/annotations.json
Large diffs are not rendered by default.
Oops, something went wrong.
4,832 changes: 4,832 additions & 0 deletions
4,832
results/recycled-wizardlm-7b-v1.0/model_outputs.json
Large diffs are not rendered by default.
Oops, something went wrong.
9,662 changes: 9,662 additions & 0 deletions
9,662
results/recycled-wizardlm-7b-v2.0/annotations.json
Large diffs are not rendered by default.
Oops, something went wrong.
4,832 changes: 4,832 additions & 0 deletions
4,832
results/recycled-wizardlm-7b-v2.0/model_outputs.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/alpaca_eval/models_configs/claude2-alpaca-13b/configs.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
claude2-alpaca-13b: | ||
prompt_template: "alpaca-7b/prompt.txt" | ||
fn_completions: "huggingface_local_completions" | ||
completions_kwargs: | ||
model_name: "./claude2-alpaca-13b" # local path | ||
model_kwargs: | ||
torch_dtype: 'bfloat16' | ||
max_new_tokens: 2048 | ||
temperature: 0.7 | ||
top_p: 1.0 | ||
do_sample: True | ||
pretty_name: "Claude2 Alpaca 13B" | ||
link: "https://github.com/Lichang-Chen/claude2-alpaca" |
13 changes: 13 additions & 0 deletions
13
src/alpaca_eval/models_configs/recycled-wizardlm-7b-v1.0/configs.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
recycled-wizardlm-7b-v1.0: | ||
completions_kwargs: | ||
do_sample: true | ||
max_new_tokens: 2048 | ||
model_kwargs: | ||
torch_dtype: bfloat16 | ||
model_name: ./recycled-wizardlm-7b-v1.0 | ||
temperature: 0.7 | ||
top_p: 1.0 | ||
fn_completions: huggingface_local_completions | ||
link: 'https://github.com/tianyi-lab/Reflection_Tuning' | ||
pretty_name: "Recycled WizardLM 7B V1.0" | ||
prompt_template: vicuna-7b/prompt.txt |
13 changes: 13 additions & 0 deletions
13
src/alpaca_eval/models_configs/recycled-wizardlm-7b-v2.0/configs.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
recycled-wizardlm-7b-v2.0: | ||
completions_kwargs: | ||
do_sample: true | ||
max_new_tokens: 2048 | ||
model_kwargs: | ||
torch_dtype: bfloat16 | ||
model_name: ./recycled-wizardlm-7b-v2.0 | ||
temperature: 0.7 | ||
top_p: 1.0 | ||
fn_completions: huggingface_local_completions | ||
link: 'https://github.com/tianyi-lab/Reflection_Tuning' | ||
pretty_name: "Recycled WizardLM 7B V2.0" | ||
prompt_template: vicuna-7b/prompt.txt |