Skip to content

Commit

Permalink
Add evaluation file for code_llama2 model (#2209)
Browse files Browse the repository at this point in the history
Co-authored-by: Reema Alzaid <[email protected]>
  • Loading branch information
ReemaAlzaid and Reema Alzaid authored Dec 28, 2024
1 parent aa8f365 commit 5d1866f
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
43 changes: 43 additions & 0 deletions recipes/configs/code_llama2/evaluation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Config for EleutherEvalRecipe in eleuther_eval.py
#
# To launch, run the following command:
# tune run eleuther_eval --config code_llama2/evaluation

# Model arguments
model:
_component_: torchtune.models.code_llama2.code_llama2_7b

# Tokenizer
tokenizer:
_component_: torchtune.models.llama2.llama2_tokenizer
path: /tmp/CodeLlama-7b-hf/tokenizer.model
max_seq_len: null

# Checkpointer
checkpointer:
_component_: torchtune.training.FullModelHFCheckpointer
checkpoint_dir: /tmp/CodeLlama-7b-hf
checkpoint_files: [
pytorch_model-00001-of-00003.bin,
pytorch_model-00002-of-00003.bin,
pytorch_model-00003-of-00003.bin
]
recipe_checkpoint: null
output_dir: ${output_dir}
model_type: LLAMA2
resume_from_checkpoint: False

# Environment
device: cpu
dtype: bf16
seed: 1234 # It is not recommended to change this seed, b/c it matches EleutherAI's default seed

# EleutherAI specific eval args
tasks: ["truthfulqa_mc2"]
limit: null
max_seq_length: 4096
batch_size: 8
enable_kv_cache: True

# Quantization specific args
quantizer: null
4 changes: 4 additions & 0 deletions torchtune/_recipe_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,10 @@ class Recipe:
name="llama3_2/evaluation",
file_path="llama3_2/evaluation.yaml",
),
Config(
name="code_llama2/evaluation",
file_path="code_llama2/evaluation.yaml",
),
],
supports_distributed=False,
),
Expand Down

0 comments on commit 5d1866f

Please sign in to comment.