Skip to content
Permalink
4d623e0e9d
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 56 lines (47 sloc) 1.36 KB
ANS_PATH=data/eli5_eval_bm25_top100_reranked_oracle_answers_llama31_8B_42.json
echo "Using answers from $ANS_PATH"
python run_pipeline.py \
--eli5_ans_path $ANS_PATH \
--attribution_system prompt_based \
--yaml_config llama31_8B.yaml \
--eli5_only
python run_pipeline.py \
--eli5_ans_path $ANS_PATH \
--attribution_system sliding_window \
--yaml_config llama31_8B.yaml \
--eli5_only
python run_pipeline.py \
--eli5_ans_path $ANS_PATH \
--attribution_system sliding_window \
--yaml_config llama31_8B_best.yaml \
--eli5_only
python run_pipeline.py \
--eli5_ans_path $ANS_PATH \
--attribution_system sliding_window \
--yaml_config llama31_8B_smoothing.yaml \
--eli5_only
python run_pipeline.py \
--eli5_ans_path $ANS_PATH \
--attribution_system sliding_window \
--yaml_config llama31_8B_thresholding.yaml \
--eli5_only
python run_pipeline.py \
--eli5_ans_path $ANS_PATH \
--attribution_system gradient_based \
--yaml_config llama31_8B.yaml \
--eli5_only
python run_pipeline.py \
--eli5_ans_path $ANS_PATH \
--attribution_system gradient_based \
--yaml_config llama31_8B_best.yaml \
--eli5_only
python run_pipeline.py \
--eli5_ans_path $ANS_PATH \
--attribution_system gradient_based \
--yaml_config llama31_8B_smoothing.yaml \
--eli5_only
python run_pipeline.py \
--eli5_ans_path $ANS_PATH \
--attribution_system gradient_based \
--yaml_config llama31_8B_thresholding.yaml \
--eli5_only