Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 13 lines (12 sloc) 516 Bytes
ANS_PATH=data/eli5_eval_bm25_top100_reranked_oracle_answers_llama31_70B_42.json
echo "Using answers from $ANS_PATH"
for smoothing_window_size in $(seq 1 1 20); do
echo "Running with smoothing_window_size=$smoothing_window_size"
python run_pipeline.py \
--eli5_ans_path $ANS_PATH \
--attribution_system sliding_window \
--yaml_config llama31_8B.yaml \
--output_path attribution_results_smoothing_ablation \
--smoothing_window_size $smoothing_window_size \
--debug_num_samples 100
done