mirror of https://github.com/google/gemma.cpp.git
Fix PromptWrapping for gemma3 1B, thanks @ufownl
PiperOrigin-RevId: 738759611
This commit is contained in:
parent
83219e3c68
commit
b1032ebf5f
|
|
@ -26,7 +26,6 @@
|
||||||
|
|
||||||
#include "compression/shared.h"
|
#include "compression/shared.h"
|
||||||
#include "hwy/base.h"
|
#include "hwy/base.h"
|
||||||
#include "hwy/contrib/thread_pool/thread_pool.h"
|
|
||||||
|
|
||||||
namespace gcpp {
|
namespace gcpp {
|
||||||
|
|
||||||
|
|
@ -80,7 +79,7 @@ constexpr PromptWrapping kPromptWrapping[] = {
|
||||||
PromptWrapping::PALIGEMMA, PromptWrapping::PALIGEMMA, // PG2 3B 224/448
|
PromptWrapping::PALIGEMMA, PromptWrapping::PALIGEMMA, // PG2 3B 224/448
|
||||||
PromptWrapping::PALIGEMMA, PromptWrapping::PALIGEMMA, // PG2 10B 224/448
|
PromptWrapping::PALIGEMMA, PromptWrapping::PALIGEMMA, // PG2 10B 224/448
|
||||||
PromptWrapping::GEMMA_VLM, // Gemma3 4B
|
PromptWrapping::GEMMA_VLM, // Gemma3 4B
|
||||||
PromptWrapping::GEMMA_PT, // Gemma3 1B
|
PromptWrapping::GEMMA_IT, // Gemma3 1B
|
||||||
PromptWrapping::GEMMA_VLM, // Gemma3 12B
|
PromptWrapping::GEMMA_VLM, // Gemma3 12B
|
||||||
PromptWrapping::GEMMA_VLM, // Gemma3 27B
|
PromptWrapping::GEMMA_VLM, // Gemma3 27B
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue