".github/git@developer.sourcefind.cn:wangsen/mineru.git" did not exist on "774ef7526f19c80d13fad06d0c2c81f2e3cf6c0f"
Commit 7272bc74 authored by Davis King's avatar Davis King
Browse files

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