Skip to content

Commit 8836bff

Browse files
committed
some correction:
- correct local CI. - correct perplexity log
1 parent dc22344 commit 8836bff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/perplexity/perplexity.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1797,9 +1797,9 @@ static void kl_divergence(llama_context * ctx, const common_params & params) {
17971797
total_seconds = total_seconds % (60*60);
17981798
}
17991799
LOG("%.2f minutes\n", total_seconds / 60.0);
1800+
LOG("\n");
1801+
LOG("chunk PPL ln(PPL(Q)/PPL(base)) KL Divergence Δp RMS Same top p\n");
18001802
}
1801-
LOG("\n");
1802-
LOG("chunk PPL ln(PPL(Q)/PPL(base)) KL Divergence Δp RMS Same top p\n");
18031803

18041804
const int first = n_ctx/2;
18051805
const float * all_logits = num_batches > 1 ? logits.data() : llama_get_logits(ctx);

scripts/hf.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function has_cmd {
2626
}
2727

2828
if has_cmd wget; then
29-
cmd="wget -q --show-progress -c -O %s/%s %s"
29+
cmd="wget -q -c -O %s/%s %s"
3030
elif has_cmd curl; then
3131
cmd="curl -C - -f --output-dir %s -o %s -L %s"
3232
else

0 commit comments

Comments
 (0)