From e915f614aa673e725aa4ef4e41e74591e8983ed1 Mon Sep 17 00:00:00 2001 From: Mike J Innes Date: Mon, 3 Jul 2017 20:47:41 +0100 Subject: [PATCH] remove confusing comments --- src/core.jl | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/core.jl b/src/core.jl index 66e33440..3100f957 100644 --- a/src/core.jl +++ b/src/core.jl @@ -23,12 +23,8 @@ update!(m, η) = m """ graph(model) => ::IVertex{Any} | nothing -Returns the graph representation of the model, if any. Most models are built -from lower-level components and can simply implement this method to get most of -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. +Returns the graph representation of the model, if any. May be used for +compilation, generating symbolic gradients, etc. """ graph(m) = nothing