File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,16 +39,16 @@ run_conversion_and_inference_lora() {
39
39
# Run inference
40
40
echo " Running llama-cli without lora for $model_name with size $size_matrix ..."
41
41
OUTPUT_BASE=$( llama-cli -m $MODELS_REPO /$model_name /size=$size_matrix /base/Base-F32.gguf \
42
- -p " Look again at that dot." -n 50 --seed 42)
42
+ -p " Look again at that dot." -n 50 --seed 42 --temp 0 )
43
43
44
44
echo " Running llama-cli with lora for $model_name with size $size_matrix ..."
45
45
OUTPUT_LORA_HOT=$( llama-cli -m $MODELS_REPO /$model_name /size=$size_matrix /base/Base-F32.gguf \
46
46
--lora $MODELS_REPO /$model_name /size=$size_matrix /lora/Lora-F32-LoRA.gguf \
47
- -p " I see a little silhouetto" -n 50 --seed 42)
47
+ -p " I see a little silhouetto" -n 50 --seed 42 --temp 0 )
48
48
49
49
echo " Running llama-cli with exported lora for $model_name with size $size_matrix ..."
50
50
OUTPUT_LORA_MERGED=$( llama-cli -m $MODELS_REPO /$model_name /size=$size_matrix /base/Base-F32-lora-merged.gguf \
51
- -p " I see a little silhouetto" -n 50 --seed 42)
51
+ -p " I see a little silhouetto" -n 50 --seed 42 --temp 0 )
52
52
53
53
# Store the results in the regular array
54
54
results+=("
You can’t perform that action at this time.
0 commit comments