diff options
Diffstat (limited to 'candle-examples/examples/parler-tts/decode.py')
-rw-r--r-- | candle-examples/examples/parler-tts/decode.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/candle-examples/examples/parler-tts/decode.py b/candle-examples/examples/parler-tts/decode.py index b79ebda1..8942d32e 100644 --- a/candle-examples/examples/parler-tts/decode.py +++ b/candle-examples/examples/parler-tts/decode.py @@ -5,6 +5,7 @@ from parler_tts import DACModel tensors = load_file("out.safetensors") dac_model = DACModel.from_pretrained("parler-tts/dac_44khZ_8kbps") +print(dac_model.model) output_ids = tensors["codes"][None, None] print(output_ids, "\n", output_ids.shape) batch_size = 1 |