mirror of https://github.com/davisking/dlib.git
Made fill_gaussian() default to a standard normal distribution.
This commit is contained in:
parent
9da21b0b0c
commit
7272bc74c2
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue