Skip to content

Commit

Permalink
fix typo in extendednn
Browse files Browse the repository at this point in the history
  • Loading branch information
kailaix committed Oct 24, 2020
1 parent 8dec3d3 commit 4d9d15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ $$x \rightarrow o_1 \rightarrow o_2 \rightarrow \ldots \rightarrow o_k$$
function fcx(x::Union{Array{Float64,2},PyObject}, output_dims::Array{Int64,1},
θ::Union{Array{Float64,1}, PyObject};
activation::String = "tanh")
pth = joinpath(@__DIR__, "../deps/Plugin/ExtendedNN/build/ExtendedNN")
pth = joinpath(@__DIR__, "../deps/Plugin/ExtendedNN/build/ExtendedNn")
pth = get_library(pth)
require_file(pth) do
install_adept()
Expand Down

2 comments on commit 4d9d15a

@kailaix
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/23576

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.4 -m "<description of version>" 4d9d15a335b6374752a12d9e251450296f534413
git push origin v0.6.4

Please sign in to comment.