|
1 |
| -using Documenter, Flux, NNlib, Functors, MLUtils, BSON, Optimisers, OneHotArrays, Zygote, ChainRulesCore, Statistics |
| 1 | +using Documenter, Flux, NNlib, Functors, MLUtils, BSON, Optimisers, OneHotArrays, Zygote, ChainRulesCore, Plots, MLDatasets, Statistics, DataFrames |
2 | 2 |
|
3 | 3 |
|
4 | 4 | DocMeta.setdocmeta!(Flux, :DocTestSetup, :(using Flux); recursive = true)
|
5 | 5 |
|
6 | 6 | makedocs(
|
7 |
| - modules = [Flux, NNlib, Functors, MLUtils, BSON, Optimisers, OneHotArrays, Zygote, ChainRulesCore, Base, Statistics], |
| 7 | + modules = [Flux, NNlib, Functors, MLUtils, BSON, Optimisers, OneHotArrays, Zygote, ChainRulesCore, Base, Plots, MLDatasets, Statistics, DataFrames], |
8 | 8 | doctest = false,
|
9 | 9 | sitename = "Flux",
|
10 | 10 | # strict = [:cross_references,],
|
@@ -41,11 +41,12 @@ makedocs(
|
41 | 41 | "Flat vs. Nested 📚" => "destructure.md",
|
42 | 42 | "Functors.jl 📚 (`fmap`, ...)" => "models/functors.md",
|
43 | 43 | ],
|
| 44 | + "Tutorials" => [ |
| 45 | + "Linear Regression" => "tutorials/linear_regression.md", |
| 46 | + "Custom Layers" => "models/advanced.md", # TODO move freezing to Training |
| 47 | + ], |
44 | 48 | "Performance Tips" => "performance.md",
|
45 | 49 | "Flux's Ecosystem" => "ecosystem.md",
|
46 |
| - "Tutorials" => [ # TODO, maybe |
47 |
| - "Custom Layers" => "models/advanced.md", # TODO move freezing to Training |
48 |
| - ], |
49 | 50 | ],
|
50 | 51 | format = Documenter.HTML(
|
51 | 52 | sidebar_sitename = false,
|
|
0 commit comments