| 9 | |
| 10 | #[derive(Debug, Clone)] |
| 11 | pub struct BypassModule { |
| 12 | /// Learned bypass scale, clamped to [0, 1] at inference. |
| 13 | scale: Tensor, |
| 14 | } |
| 15 | |
| 16 | impl BypassModule { |
| 17 | pub fn load(vb: VarBuilder) -> Result<Self> { |
nothing calls this directly
no outgoing calls
no test coverage detected