Create a linear module.
(*args, **kwargs)
| 259 | |
| 260 | |
| 261 | def linear(*args, **kwargs): |
| 262 | """ |
| 263 | Create a linear module. |
| 264 | """ |
| 265 | return nn.Linear(*args, **kwargs) |
| 266 | |
| 267 | |
| 268 | def avg_pool_nd(dims, *args, **kwargs): |
no outgoing calls
no test coverage detected