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/lecture_06/develop.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -263,15 +263,15 @@ x = FashionMNIST.traintensor(1);
263
263
plot(image(x); axis =nothing, border =:none)
264
264
```
265
265
266
-
**Hint:** Each Julia package contains its environment for tracking package dependencies. Use proper commands in the Pkg REPL to add `Colors` as a dependency of the ImageInspector package. Do not forget to add `MLDataset` and `Plots` to the `scripts` environment.
266
+
**Hint:** Each Julia package contains its environment for tracking package dependencies. Use proper commands in the Pkg REPL to add `Colors` as a dependency of the ImageInspector package. Do not forget to add `MLDatasets` and `Plots` to the `scripts` environment.
267
267
268
268
```@raw html
269
269
</p></div>
270
270
<details class = "solution-body">
271
271
<summary class = "solution-header">Solution:</summary><p>
272
272
```
273
273
274
-
First, we need to install all necessary packages. Since we set the `scripts` environment as the default one for this project, we first install `MLDataset` and `Plots`.
274
+
First, we need to install all necessary packages. Since we set the `scripts` environment as the default one for this project, we first install `MLDatasets` and `Plots`.
0 commit comments