Flux.jl/docs/src/training/training.md

51 lines
1.7 KiB
Markdown
Raw Normal View History

2017-09-11 12:40:11 +00:00
# Training
2017-09-11 12:06:53 +00:00
To actually train a model we need three things:
2017-09-22 14:27:06 +00:00
* A *model loss function*, that evaluates how well a model is doing given some input data.
2017-09-11 12:06:53 +00:00
* A collection of data points that will be provided to the loss function.
2017-09-12 10:34:04 +00:00
* An [optimiser](optimisers.md) that will update the model parameters appropriately.
2017-09-11 12:06:53 +00:00
With these we can call `Flux.train!`:
2017-09-10 01:01:19 +00:00
```julia
2017-09-22 14:27:06 +00:00
Flux.train!(model, data, opt)
2017-09-11 12:06:53 +00:00
```
There are plenty of examples in the [model zoo](https://github.com/FluxML/model-zoo).
## Loss Functions
2017-09-12 10:34:04 +00:00
The `loss` that we defined in [basics](../models/basics.md) is completely valid for training. We can also define a loss in terms of some model:
2017-09-11 12:06:53 +00:00
```julia
m = Chain(
Dense(784, 32, σ),
Dense(32, 10), softmax)
2017-09-22 14:27:06 +00:00
# Model loss function
2017-09-11 12:06:53 +00:00
loss(x, y) = Flux.mse(m(x), y)
```
The loss will almost always be defined in terms of some *cost function* that measures the distance of the prediction `m(x)` from the target `y`. Flux has several of these built in, like `mse` for mean squared error or `logloss` for cross entropy loss, but you can calculate it however you want.
## Callbacks
`train!` takes an additional argument, `cb`, that's used for callbacks so that you can observe the training process. For example:
```julia
train!(loss, data, opt, cb = () -> println("training"))
```
Callbacks are called for every batch of training data. You can slow this down using `Flux.throttle(f, timeout)` which prevents `f` from being called more than once every `timeout` seconds.
A more typical callback might look like this:
```julia
test_x, test_y = # ... create single batch of test data ...
evalcb() = @show(loss(test_x, test_y))
Flux.train!(loss, data, opt,
cb = throttle(evalcb, 5))
2017-09-10 01:01:19 +00:00
```