Skip to content

Commit de2c730

Browse files
authored
Merge pull request #158 from SciML/ap/fix
fix: remove printing as valid check
2 parents dff8a04 + 164c7eb commit de2c730

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DeepEquilibriumNetworks"
22
uuid = "6748aba7-0e9b-415e-a410-ae3cc0ecb334"
33
authors = ["Avik Pal <[email protected]>"]
4-
version = "2.1.3"
4+
version = "2.1.4"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

src/layers.jl

+1-10
Original file line numberDiff line numberDiff line change
@@ -156,16 +156,7 @@ Deep Equilibrium Network as proposed in [baideep2019](@cite) and [pal2022mixing]
156156
```jldoctest
157157
julia> model = DeepEquilibriumNetwork(
158158
Parallel(+, Dense(2, 2; use_bias=false), Dense(2, 2; use_bias=false)),
159-
VCABM3(); verbose=false)
160-
DeepEquilibriumNetwork(
161-
model = Parallel(
162-
+
163-
layer_1 = Dense(2 => 2, bias=false), # 4 parameters
164-
layer_2 = Dense(2 => 2, bias=false), # 4 parameters
165-
),
166-
init = WrappedFunction(Base.Fix1{typeof(DeepEquilibriumNetworks.__zeros_init), Nothing}(DeepEquilibriumNetworks.__zeros_init, nothing)),
167-
) # Total: 8 parameters,
168-
# plus 0 states.
159+
VCABM3(); verbose=false);
169160
170161
julia> rng = Xoshiro(0);
171162

0 commit comments

Comments
 (0)