Skip to content
Snippets Groups Projects
utils.jl 117 B
Newer Older
Pat Alt's avatar
uh
Pat Alt committed
function pre_process(x; noise::Float32=0.03f0)
    ϵ = Float32.(randn(size(x)) * noise)
    x += ϵ
    return x
end