How to use a pre-trained model in Flux.jl?
Asked Answered
U

0

10

I'm using the Flux library in Julia. How can I import an Inception neural network into it?

I've seen that the following can be done in Mocha.jl to import a pre-trained net.

using HDF5
h5open("model/bvlc_reference_caffenet.hdf5", "r") do h5
    load_network(h5, net)
end
init(net)

Is there some way I can import a pre-trained model in Flux?

Undesigned answered 12/3, 2018 at 6:12 Comment(3)
xref: discourse.julialang.org/t/…Eugenieeugenio
This is discussed in the documentationDepository
The docs only show how to do it with one filetype right now, I image the scope of this question is beyond thatLipstick

© 2022 - 2024 — McMap. All rights reserved.