We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58fbf2d + 72bf008 commit c80d9f3Copy full SHA for c80d9f3
src/data.jl
@@ -72,7 +72,10 @@ function load(id::Int; maxbytes = nothing)
72
@info "Downloading dataset $id."
73
download(load_Dataset_Description(id)["data_set_description"]["url"], fname)
74
end
75
- ARFFFiles.load(x -> ARFFFiles.readcolumns(x; maxbytes = maxbytes), fname)
+ open(fname) do io
76
+ reader = ARFFFiles.loadstreaming(io)
77
+ return ARFFFiles.readcolumns(reader; maxbytes=maxbytes)
78
+ end
79
80
81
0 commit comments