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
Copy file name to clipboardExpand all lines: docs/src/index.md
+7-10Lines changed: 7 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -140,26 +140,23 @@ In practice, applying `getobs` and `numobs` on datasets is equivalent to applyin
140
140
141
141
## Conditional module loading
142
142
143
-
MLDatasets.jl relies on many different packages in order to load and process the diverse type of
144
-
datasets it supports. Most likely, any single user of the library will use a limited subset
145
-
of these functionalities. In order to reduce the time taken by `using MLDatasets` in users' code,
143
+
MLDatasets.jl relies on many different packages in order to load and process the diverse type of datasets it supports. Most likely, any single user of the library will use a limited subset of these functionalities.
144
+
In order to reduce the time taken by `using MLDatasets` in users' code,
146
145
we use a [lazy import system](https://github.com/johnnychen94/LazyModules.jl) that defers the import of packages inside MLDatasets.jl as much as possible.
147
-
For some of the packages like (e.g. `DataFrames.jl`) some manual intervention is needed from the user.
146
+
For some of the packages, some manual intervention is needed from the user.
148
147
As an example, the following code will produce an error:
0 commit comments