You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
┌ Warning:`haskey(::TargetIterator, name::String)` is deprecated, use `Target(; name = name) !== nothing` instead.
│ caller =llvm_compat(::VersionNumber) at compatibility.jl:176
└ @ CUDAnative ~/.julia/packages/CUDAnative/ierw8/src/compatibility.jl:176
ERROR: LoadError: LoadError: SystemError: unable to read directory /home/foo/transflearn/dataloader.jl/train: Not a directory
After explicitly writing the path to the dataset on the r.h.s. of the line
const PATH =joinpath(@__FILE__, "train")
in dataloader.jl, the dataset appears properly loaded, but then I get
┌ Warning:`haskey(::TargetIterator, name::String)` is deprecated, use `Target(; name = name) !== nothing` instead.
│ caller =llvm_compat(::VersionNumber) at compatibility.jl:176
└ @ CUDAnative ~/.julia/packages/CUDAnative/ierw8/src/compatibility.jl:176
[ Info: Epoch 1
┌ Warning:`Target(triple::String)` is deprecated, use `Target(; triple = triple)` instead.
│ caller = ip:0x0
└ @ Core :-1
[ Info: Epoch 22×10 CuArrays.CuArray{Float32,2,Nothing}:NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
If I write @show model(imgs) before the training, it correctly shows an array of Floats:
I'm trying to run the transfer learning with Flux tutorial, but I get
After explicitly writing the path to the dataset on the r.h.s. of the line
in
dataloader.jl
, the dataset appears properly loaded, but then I getIf I write
@show model(imgs)
before the training, it correctly shows an array of Floats:The text was updated successfully, but these errors were encountered: