| 5 | namespace engine::sampling { |
| 6 | |
| 7 | class GreedyDecodeModule { |
| 8 | public: |
| 9 | const engine::core::ModuleSchema & schema() const noexcept; |
| 10 | engine::core::TensorValue build(engine::core::ModuleBuildContext & ctx, const engine::core::TensorValue & logits) const; |
| 11 | static const engine::core::ModuleSchema & static_schema() noexcept; |
| 12 | }; |
| 13 | |
| 14 | struct VADGateConfig { |
| 15 | float threshold = 0.0f; |
no outgoing calls
no test coverage detected