| 22 | }; |
| 23 | |
| 24 | struct LeakyReluConfig { |
| 25 | float negative_slope = 0.01F; |
| 26 | }; |
| 27 | |
| 28 | class LeakyReluModule { |
| 29 | public: |
| 30 | explicit LeakyReluModule(LeakyReluConfig config = {}); |
| 31 | |
| 32 | const LeakyReluConfig & config() const noexcept; |
no outgoing calls
no test coverage detected