| 63 | manifest.model_config.flow_dim, |
| 64 | }; |
| 65 | } |
| 66 | |
| 67 | FlowLMConfig make_flow_config(const PocketTTSAssets & manifest) { |
| 68 | return FlowLMConfig{ |
| 69 | manifest.model_config.flow_dim, |
| 70 | manifest.model_config.flow_heads, |
| 71 | manifest.model_config.flow_intermediate_size, |
| 72 | manifest.model_config.latent_dim, |
| 73 | manifest.model_config.flow_hidden_size, |
| 74 | manifest.model_config.flow_layers, |
| 75 | 1.0e-5F, |
| 76 | 1.0e-6F, |
| 77 | }; |
| 78 | } |
| 79 |