Added entry to docs for outdims

This commit is contained in:
Kyle Daruwalla 2019-12-07 14:06:11 -06:00
parent 0cdd11c0dc
commit 04991d3261
1 changed files with 10 additions and 0 deletions

View File

@ -219,3 +219,13 @@ Flux.@functor Affine
```
This enables a useful extra set of functionality for our `Affine` layer, such as [collecting its parameters](../training/optimisers.md) or [moving it to the GPU](../gpu.md).
## Utility functions
Flux provides some utility functions to help you generate models in an automated fashion.
`outdims` enables you to calculate the spatial output dimensions of layers like `Conv` when applied to input images of a given size.
```@docs
outdims
```