Update basics.md

Removing superfluous ```using Flux```
This commit is contained in:
Mikkel Paltorp Schmitt 2020-05-06 13:41:56 +02:00 committed by GitHub
parent c444226db5
commit 40efa9df49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -32,8 +32,6 @@ julia> gradient(f, [2, 1], [2, 0])
But machine learning models can have *hundreds* of parameters! To handle this, Flux lets you work with collections of parameters, via `params`. You can get the gradient of all parameters used in a program without explicitly passing them in.
```jldoctest basics
julia> using Flux
julia> x = [2, 1];
julia> y = [2, 0];