Skip to content

Commit

Permalink
Fix doc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
darsnack committed Mar 5, 2022
1 parent df48e5e commit 2ff0d29
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ makedocs(
"Mutagenesis" => "datasets/Mutagenesis.md",
"Titanic" => "datasets/Titanic.md",
],

"Text" => Any[
"PTBLM" => "datasets/PTBLM.md",
"UD_English" => "datasets/UD_English.md",
Expand All @@ -52,9 +51,11 @@ makedocs(

],
"Utils" => "utils.md",
"Data Containers" => "containers/overview.md",
"LICENSE.md",
],
strict = true
strict = true,
checkdocs = :exports
)


Expand Down
14 changes: 14 additions & 0 deletions docs/src/containers/overview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Dataset Containers

MLDatasets.jl contains several reusable data containers for accessing datasets in common storage formats. This feature is a work-in-progress and subject to change.

```@docs
FileDataset
TableDataset
HDF5Dataset
Base.close(::HDF5Dataset)
JLD2Dataset
Base.close(::JLD2Dataset)
CachedDataset
MLDatasets.make_cache
```

0 comments on commit 2ff0d29

Please sign in to comment.