This commit is contained in:
Michael Abbott 2019-09-25 13:47:29 +02:00
parent 19830c71b1
commit 1a1a96571a

View File

@ -217,7 +217,7 @@ end
function Base.show(io::IO, b::SkipConnection)
print(io, "SkipConnection(")
b.layers isa Chain ? join(io, b.layers, ", ") : print(io, b.layers)
print(io, ",", b.connection)
print(io, ")")
b.layers isa Chain ? print(io, "Chain(", join(b.layers, ", "), "), ") :
print(io, b.layers, ", ")
print(io, b.connection, ")")
end