Julia ERROR: UndefVarError: σ not defined

Julia ERROR: UndefVarError: σ not defined

我是 运行 来自 julia 的:

W1 = param(rand(3, 5))
b1 = param(rand(3))
layer1(x) = W1 * x .+ b1
W2 = param(rand(2, 3))
b2 = param(rand(2))

layer2(x) = W2 * x .+ b2
model(x) = layer2(σ.(layer1(x)))

model(rand(5))

我收到这个错误:

ERROR: UndefVarError: σ not defined
Stacktrace:
[1] model(::Array{Float64,1}) at ./REPL[35]:1

我不明白这个错误。我是朱莉娅的新手。请帮帮我。我正在学习本教程:https://fluxml.github.io/Flux.jl/stable/models/basics.html#Taking-Gradients-1

谢谢。

大家可以看看评论。这可以通过在给定代码前添加 using Fluxusing Foo:bar, baz 来解决。