General minuscule improvements

This commit is contained in:
janEbert 2020-04-04 19:43:28 +02:00
parent a614983e0b
commit e16c24a9b8
3 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@ end
"""
phones()
Return a `Vector` containing the phones used in the dataset.
Return a `Vector` containing the phones used in the CMU Pronouncing Dictionary.
"""
function phones()
load()
@ -38,7 +38,7 @@ end
"""
symbols()
Return a `Vector` containing the symbols used in the dataset.
Return a `Vector` containing the symbols used in the CMU Pronouncing Dictionary.
A symbol is a phone with optional auxiliary symbols, indicating for example the
amount of stress on the phone.
"""

View File

@ -30,7 +30,7 @@ end
"""
Dropout(p, dims = :)
Dropout layer. In the forward pass, applies the [`Flux.dropout`](@ref) function on the input.
Dropout layer. In the forward pass, apply the [`Flux.dropout`](@ref) function on the input.
Does nothing to the input once [`Flux.testmode!`](@ref) is `true`.
"""

View File

@ -48,7 +48,7 @@ Base.show(io::IO, m::Recur) = print(io, "Recur(", m.cell, ")")
Reset the hidden state of a recurrent layer back to its original value.
Assuming you have a `Recur` layer `rnn`, this is roughly equivalent to:
```
```julia
rnn.state = hidden(rnn.cell)
```
"""