Permalink
Cannot retrieve contributors at this time
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?
saliency-based-citation/launch_llama31_70B.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
56 lines (47 sloc)
1.47 KB
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
ANS_PATH=data/eli5_eval_bm25_top100_reranked_oracle_answers_llama31_70B_42.json | |
echo "Using answers from $ANS_PATH" | |
python run_pipeline.py \ | |
--eli5_ans_path $ANS_PATH \ | |
--attribution_system prompt_based \ | |
--yaml_config llama31_70B.yaml \ | |
--debug_num_samples 100 | |
python run_pipeline.py \ | |
--eli5_ans_path $ANS_PATH \ | |
--attribution_system sliding_window \ | |
--yaml_config llama31_70B.yaml \ | |
--debug_num_samples 100 | |
python run_pipeline.py \ | |
--eli5_ans_path $ANS_PATH \ | |
--attribution_system sliding_window \ | |
--yaml_config llama31_70B_best.yaml \ | |
--debug_num_samples 100 | |
python run_pipeline.py \ | |
--eli5_ans_path $ANS_PATH \ | |
--attribution_system sliding_window \ | |
--yaml_config llama31_70B_smoothing.yaml \ | |
--debug_num_samples 100 | |
python run_pipeline.py \ | |
--eli5_ans_path $ANS_PATH \ | |
--attribution_system sliding_window \ | |
--yaml_config llama31_70B_thresholding.yaml \ | |
--debug_num_samples 100 | |
python run_pipeline.py \ | |
--eli5_ans_path $ANS_PATH \ | |
--attribution_system gradient_based \ | |
--yaml_config llama31_70B.yaml \ | |
--debug_num_samples 100 | |
python run_pipeline.py \ | |
--eli5_ans_path $ANS_PATH \ | |
--attribution_system gradient_based \ | |
--yaml_config llama31_70B_best.yaml \ | |
--debug_num_samples 100 | |
python run_pipeline.py \ | |
--eli5_ans_path $ANS_PATH \ | |
--attribution_system gradient_based \ | |
--yaml_config llama31_70B_smoothing.yaml \ | |
--debug_num_samples 100 | |
python run_pipeline.py \ | |
--eli5_ans_path $ANS_PATH \ | |
--attribution_system gradient_based \ | |
--yaml_config llama31_70B_thresholding.yaml \ | |
--debug_num_samples 100 |