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 e618405 commit e185e0aCopy full SHA for e185e0a
examples/tts/mimi-model.cpp
@@ -16,6 +16,7 @@
16
#include <unordered_map>
17
#include <float.h>
18
#include <cmath>
19
+#include <cstdarg>
20
21
/**
22
* Implementation of Kyutai's Mimi model using GGML.
@@ -367,10 +368,10 @@ struct mimi_encoder_decoder {
367
368
.is_elu = true, // layer (i_start)
369
});
370
layers.push_back({
371
+ .is_transposed_conv = true,
372
.conv_0_w = ctx.get_weight("decoder.layers.%d.conv.weight", i_start + 1),
373
.conv_0_b = ctx.get_weight("decoder.layers.%d.conv.bias", i_start + 1),
374
.stride = mimi_config.upsampling_ratio[i],
- .is_transposed_conv = true,
375
376
// residual layers
377
0 commit comments