diff --git a/run-experiments.sh b/run-experiments.sh index 83849a2..ed8f77f 100755 --- a/run-experiments.sh +++ b/run-experiments.sh @@ -1,12 +1,12 @@ #!/bin/bash NC='\033[0m' GREEN='\033[0;32m' -dvc queue remove --all +uv run dvc queue remove --all models=("llama3 llama3.1 mistral-nemo") for model in $models do - dvc exp run --queue -S rag.model=$model + uv run dvc exp run --queue -S rag.model=$model -S sub-sample=1 -S max-length=250 -S test-set-size=5 done -dvc queue start -dvc queue status -echo -e "Run ${GREEN}dvc queue status${NC} to check the state of the experiments" +uv run dvc queue start +uv run dvc queue status +echo -e "Use ${GREEN}uv run dvc queue status${NC} to check the state of the experiments"