remove confusing comments

This commit is contained in:
Mike J Innes 2017-07-03 20:47:41 +01:00
parent 76acd5a820
commit e915f614aa

View File

@ -23,12 +23,8 @@ update!(m, η) = m
""" """
graph(model) => ::IVertex{Any} | nothing graph(model) => ::IVertex{Any} | nothing
Returns the graph representation of the model, if any. Most models are built Returns the graph representation of the model, if any. May be used for
from lower-level components and can simply implement this method to get most of compilation, generating symbolic gradients, etc.
Flux's functionality. If this method isn't available, functionality like
backpropagation or conversion for backend must be implemented on a case-by-case
basis. Alternatively, one can implement this method and override individual
methods as necessary.
""" """
graph(m) = nothing graph(m) = nothing