Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/extended_examples/MNIST/notebook.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ images, labels = MNIST(split=:train)[:];
# must force the labels to have the `Multiclass` [scientific
# type](https://juliaai.github.io/ScientificTypes.jl/dev/). For
# more on this, see [Working with Categorical
# Data](https://alan-turing-institute.github.io/MLJ.jl/dev/working_with_categorical_data/).
# Data](https://juliaai.github.io/MLJ.jl/dev/working_with_categorical_data/).

labels = coerce(labels, Multiclass);
images = coerce(images, GrayImage);
Expand Down
2 changes: 1 addition & 1 deletion docs/src/extended_examples/MNIST/notebook.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ In MLJ, integers cannot be used for encoding categorical data, so we
must force the labels to have the `Multiclass` [scientific
type](https://juliaai.github.io/ScientificTypes.jl/dev/). For
more on this, see [Working with Categorical
Data](https://alan-turing-institute.github.io/MLJ.jl/dev/working_with_categorical_data/).
Data](https://juliaai.github.io/MLJ.jl/dev/working_with_categorical_data/).

````@example MNIST
labels = coerce(labels, Multiclass);
Expand Down
2 changes: 1 addition & 1 deletion docs/src/extended_examples/MNIST/notebook.unexecuted.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"must force the labels to have the `Multiclass` [scientific\n",
"type](https://juliaai.github.io/ScientificTypes.jl/dev/). For\n",
"more on this, see [Working with Categorical\n",
"Data](https://alan-turing-institute.github.io/MLJ.jl/dev/working_with_categorical_data/)."
"Data](https://juliaai.github.io/MLJ.jl/dev/working_with_categorical_data/)."
],
"metadata": {}
},
Expand Down
Loading