We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6baebb commit 6728d55Copy full SHA for 6728d55
docs/src/training/train_api.md
@@ -5,6 +5,10 @@ Flux.Train.setup
5
Flux.Optimise.train!(loss, model, data, opt; cb)
6
```
7
8
+`train!` uses [`@progress`](https://github.com/JuliaLogging/ProgressLogging.jl) which should show a progress bar in VSCode.
9
+To see one in a terminal, you will need to install [TerminalLoggers.jl](https://github.com/JuliaLogging/TerminalLoggers.jl)
10
+and follow its setup instructions.
11
+
12
The new version of Flux's training code was written as an independent package, called Optimisers.jl.
13
However, at present all Flux models contain parameter arrays (such as `Array`s and `CuArray`s)
14
which can be updated in-place. Thus objects returned by `update!` can be ignored.
0 commit comments