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.
1 parent 58fbf2d commit 72bf008Copy full SHA for 72bf008
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