-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_seek_jobs.sh
executable file
·14 lines (14 loc) · 1.71 KB
/
run_seek_jobs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
echo "# Training in domain v2medium2"
python main_seek.py --domain taskographyv2medium2 --num-train-problems 40 --epochs 101 --mode train --timeout 30 --expid taskographyv2medium2 --logdir cache/results-official-seek --all-problems
echo "# Planning in domain v2medium2 with planner random (NO SEEK)"
python main_seek.py --mode test --domain taskographyv2medium2 --scoring-mode random --timeout 30 --expid taskographyv2medium2 --logdir cache/results-official-seek --all-problems
echo "# Planning in domain v2medium2 with planner random (WITH SEEK)"
python main_seek.py --mode test --domain taskographyv2medium2 --scoring-mode random --timeout 30 --expid taskographyv2medium2 --logdir cache/results-official-seek --seek --all-problems
echo "# Planning in domain v2medium2 with planner ploi (NO SEEK)"
python main_seek.py --mode test --domain taskographyv2medium2 --scoring-mode ploi --timeout 30 --expid taskographyv2medium2 --logdir cache/results-official-seek --all-problems
echo "# Planning in domain v2medium2 with planner ploi (WITH SEEK)"
python main_seek.py --mode test --domain taskographyv2medium2 --scoring-mode ploi --timeout 30 --expid taskographyv2medium2 --logdir cache/results-official-seek --seek --all-problems
echo "# Planning in domain v2medium2 with planner hierarchical (NO SEEK)"
python main_seek.py --mode test --domain taskographyv2medium2 --scoring-mode hierarchical --timeout 30 --expid taskographyv2medium2 --logdir cache/results-official-seek --all-problems
echo "# Planning in domain v2medium2 with planner hierarchical (WITH SEEK)"
python main_seek.py --mode test --domain taskographyv2medium2 --scoring-mode hierarchical --timeout 30 --expid taskographyv2medium2 --logdir cache/results-official-seek --seek --all-problems