-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript_to_run.sh
executable file
·12 lines (12 loc) · 1.75 KB
/
script_to_run.sh
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
screen poetry run python universal_pipeline.py --llm gemini --model-path ./data/domain/ground_truth/ --text-path ./data/domain/process_descriptions/ --example domain --direction t2t
screen poetry run python universal_pipeline.py --llm gemini --model-path ./data/pet/ground_truth/ --text-path ./data/pet/process_descriptions/ --example pet --direction t2t
screen poetry run python universal_pipeline.py --llm gemini --model-path ./data/realset/ground_truth/ --text-path ./data/realset/process_descriptions/ --example realset --direction t2t
screen poetry run python universal_pipeline.py --llm gemini --model-path ./data/sapsam/ground_truth/ --text-path ./data/sapsam/process_descriptions/ --example sapsam --direction t2t
screen poetry run python universal_pipeline.py --llm gpt --model-path ./data/domain/ground_truth/ --text-path ./data/domain/process_descriptions/ --example domain --direction t2t
screen poetry run python universal_pipeline.py --llm gpt --model-path ./data/pet/ground_truth/ --text-path ./data/pet/process_descriptions/ --example pet --direction t2t
screen poetry run python universal_pipeline.py --llm gpt --model-path ./data/realset/ground_truth/ --text-path ./data/realset/process_descriptions/ --example realset --direction t2t
screen poetry run python universal_pipeline.py --llm gpt --model-path ./data/sapsam/ground_truth/ --text-path ./data/sapsam/process_descriptions/ --example sapsam --direction t2t
screen poetry run python universal_pipeline.py --llm gpt --model-path ./data/mad/ground_truth/ --text-path ./data/mad/process_descriptions/ --example mad --direction t2t
screen poetry run python universal_pipeline.py --llm gemini --model-path ./data/mad/ground_truth/ --text-path ./data/mad/process_descriptions/ --example mad --direction t2t
exec bash