Skip to content

Commit d9b7b51

Browse files
author
Michael Abbott
committed
try with ...
1 parent 762cf0f commit d9b7b51

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

docs/src/utilities.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,9 @@ function make_model(width, height, inchannels, nclasses;
8383
end
8484
```
8585

86-
```@meta
87-
DocTestFilters = [r"@ Flux .+\n"]
88-
```
8986
```@docs
9087
Flux.outputsize
9188
```
92-
```@meta
93-
DocTestFilters = nothing
94-
```
9589

9690
## Model Abstraction
9791

src/outputsize.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ julia> outputsize(m, (10, 10, 3, 64))
8181
8282
julia> try outputsize(m, (10, 10, 7, 64)) catch e println(e) end
8383
┌ Error: layer Conv((3, 3), 3=>16), index 1 in Chain, gave an error with input of size (10, 10, 7, 64)
84-
└ @ Flux ~/.julia/dev/Flux/src/outputsize.jl:114
85-
DimensionMismatch("Input channels must match! (7 vs. 3)")
84+
[...]
8685
8786
julia> outputsize([Dense(10, 4), Dense(4, 2)], (10, 1)) # Vector of layers becomes a Chain
8887
(2, 1)

0 commit comments

Comments
 (0)