JLD.jl icon indicating copy to clipboard operation
JLD.jl copied to clipboard

Saving and loading julia variables while preserving native types

Results 100 JLD.jl issues
Sort by recently updated
recently updated
newest added

Hi, How to view .jld files in VScode? Thanks!

I'm having an issue while saving a `PyObject` together with PyCallJLD.jl. I'm doing: `JLD.save(joinpath(ODINN.root_dir, "test/data/gdirs.jld"), "gdirs", gdirs)` Which returns the following error: ``` Error encountered while save FileIO.File{FileIO.DataFormat{:JLD}, String}("/home/jovyan/Julia/fork/ODINN/test/data/gdirs.jld"). Fatal...

I think I have found a strange interaction between JLD.jl and DSP.jl. If I call jldopen to save a nested mutable struct, then load DSP.jl, and then call jldopen to...

Error on "save" and on "load": ERROR: type DataType has no field mutable

When I use jld write in a loop, it seems to ruin the ability of `Threads.@threads` to distribute work. This might be a Julia 1.3 bug, but reporting it here...

I am using Julia 1.6.1, JLD v0.12.3, Optim v1.3.0 The reture value of Optim.optimize is saved in the "res.jld" file, while loading this file, I got the following error: julia>...

We (me + @grig-guz) are trying to store a (large) CSV dataset into a sparse matrix and subsequently put that in a JLD blob. However we are getting some weird...

See https://github.com/KristofferC/TimerOutputs.jl/issues/40. Saving a `TimerOutput` produces a StackOverflow error with JLD but works with JLD2. ```julia using Timeroutputs, JLD to = TimerOutput() @timeit to "rand" @save "to.jld" to ```