We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5c6309 commit 953c2a6Copy full SHA for 953c2a6
src/llama-model.cpp
@@ -11846,10 +11846,11 @@ llm_graph_result_ptr llama_model::build_graph(
11846
GGML_ABORT("invalid graph type");
11847
};
11848
} break;
11849
- //case LLM_ARCH_T5ENCODER:
11850
- // {
11851
- // llm.build_t5_enc(gf);
11852
- // } break;
+ case LLM_ARCH_T5ENCODER:
+ {
+ llm = std::make_unique<llm_build_t5_enc>(*this, params, gf);
+ }
11853
+ break;
11854
case LLM_ARCH_JAIS:
11855
{
11856
llm = std::make_unique<llm_build_jais>(*this, params, gf);
0 commit comments