This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
scisharp
/
TensorFlow.NET
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
21
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Change default stddev to 0.05f for RandomNormal.
tags/v0.20
Oceania2018
5 years ago
parent
8168b48dcd
commit
623afd529e
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/TensorFlowNET.Core/APIs/tf.init.cs
+1
-1
src/TensorFlowNET.Core/Operations/Initializers/RandomNormal.cs
+ 1
- 1
src/TensorFlowNET.Core/APIs/tf.init.cs
View File
@@ -88,7 +88,7 @@ namespace Tensorflow
public class InitializersImpl
{
public IInitializer random_normal_initializer(float mean = 0.0f,
float stddev =
1.0
f,
float stddev =
0.05
f,
int? seed = null,
TF_DataType dtype = TF_DataType.TF_FLOAT) => new RandomNormal(mean: mean,
stddev: stddev,
+ 1
- 1
src/TensorFlowNET.Core/Operations/Initializers/RandomNormal.cs
View File
@@ -28,7 +28,7 @@ namespace Tensorflow.Operations.Initializers
private TF_DataType dtype;
public RandomNormal(float mean = 0.0f,
float stddev =
1.0
f,
float stddev =
0.05
f,
int? seed = null,
TF_DataType dtype = TF_DataType.TF_FLOAT)
{
Write
Preview
Loading…
Cancel
Save