utils errors fixed

This commit is contained in:
ayush1999 2018-08-11 18:24:59 +05:30 committed by Josh Christie
parent 5db7a3a3ad
commit 89881a9b21
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
using Flux.Optimise
using Flux.Tracker
using Test
@testset "Optimise" begin
w = randn(10, 10)
@testset for Opt in [SGD, Nesterov, Momentum, ADAM, AdaMax, RMSProp, ps -> ADAGrad(ps, 0.1), ADADelta, AMSGrad, NADAM]

View File

@ -1,7 +1,10 @@
using Flux: throttle, initn, glorot_uniform, glorot_normal, jacobian
using Flux
using Flux: throttle, jacobian, initn, glorot_uniform, glorot_normal
using StatsBase: std
using Dates
using Random
using Test
using Dates: now
@testset "Throttle" begin
@testset "default behaviour" begin