index-tts stash save

This commit is contained in:
jhqxxx
2026-02-07 00:26:03 +08:00
parent 978b74ec13
commit 01172b1ae6
24 changed files with 1004 additions and 232 deletions
+2
View File
@@ -37,6 +37,7 @@ impl Projector {
vb.pp("pre_norm"),
config.rms_norm_eps,
config.vision_config.hidden_size,
true,
)?;
let linear_1 = linear(hidden_size, hidden_size, vb.pp("linear_1"))?;
let linear_2 = linear(hidden_size, config.hidden_size, vb.pp("linear_2"))?;
@@ -278,6 +279,7 @@ impl SiglipVisionModel {
vb.pp("post_layernorm"),
config.layer_norm_eps,
config.hidden_size,
true,
)?;
Ok(Self {
embeddings,