mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-09-20 01:31:42 +02:00
arranged files, updated kobold lite, modified makefile for extra link args on linux, started RWKV implementation
This commit is contained in:
+1
-1
@@ -293,7 +293,7 @@ gpt_vocab::id gptj_sample_top_p_top_k(
|
||||
}
|
||||
}
|
||||
|
||||
gptj_sample_top_k(logits_id, top_k);
|
||||
gptj_sample_top_k(logits_id, top_k > 0 ? std::min(top_k, n_logits) : n_logits);
|
||||
|
||||
double maxl = -INFINITY;
|
||||
for (const auto & kv : logits_id) {
|
||||
|
||||
Reference in New Issue
Block a user