| 528 | |
| 529 | #[derive(Config)] |
| 530 | pub struct MLPConfig { |
| 531 | n_state: usize, |
| 532 | mult: usize, |
| 533 | } |
| 534 | |
| 535 | impl MLPConfig { |
| 536 | pub fn init<B: Backend>(&self, device: &B::Device) -> MLP<B> { |
nothing calls this directly
no outgoing calls
no test coverage detected