Skip to content

Commit 640ce97

Browse files
Merge pull request #136 from JuliaML/jc/eager_csv
eagerly load CSV
2 parents 5dad66d + c0dbf82 commit 640ce97

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/MLDatasets.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ include("require.jl") # export @require
1616
# Use `@lazy import SomePkg` whenever the returned types are not its own types,
1717
# since for methods applied on the returned types we would encounter in world-age issues
1818
# (see discussion in https://github.com/JuliaML/MLDatasets.jl/pull/128).
19-
# In the other case instead, use `require import SomePkg` to force
19+
# In the other case instead, use `require import SomePkg` to force
2020
# the use to manually import.
2121

2222
@require import JSON3="0f8b85d8-7281-11e9-16c2-39a750bddbf1"
@@ -25,14 +25,14 @@ include("require.jl") # export @require
2525
# @lazy import NPZ # lazy imported by FileIO
2626
@lazy import Pickle="fbb45041-c46e-462f-888f-7c521cafbc2c"
2727
@lazy import MAT="23992714-dd62-5051-b70f-ba57cb901cac"
28-
@lazy import CSV="336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
28+
import CSV
2929
@lazy import HDF5="f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f"
3030
# @lazy import JLD2
3131

3232
export getobs, numobs # From MLUtils.jl
3333

3434
include("abstract_datasets.jl")
35-
# export AbstractDataset,
35+
# export AbstractDataset,
3636
# SupervisedDataset
3737

3838
include("utils.jl")

0 commit comments

Comments
 (0)