Commit 7272bc74 authored by Davis King's avatar Davis King

Made fill_gaussian() default to a standard normal distribution.

parent 9da21b0b
......@@ -28,8 +28,8 @@ namespace dlib
void fill_gaussian (
tensor& data,
float mean,
float stddev
float mean = 0,
float stddev = 1
);
/*!
requires
......
......@@ -72,8 +72,8 @@ namespace dlib { namespace tt
void fill_gaussian (
tensor& data,
float mean,
float stddev
float mean = 0,
float stddev = 1
);
/*!
requires
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment