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
make GlorotUniform true as default.
tags/v0.13
Oceania2018
5 years ago
parent
42ba8b6233
commit
ed2aa36687
1 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
src/TensorFlowNET.Core/Operations/Initializers/GlorotUniform.cs
+ 2
- 0
src/TensorFlowNET.Core/Operations/Initializers/GlorotUniform.cs
View File
@@ -20,9 +20,11 @@ namespace Tensorflow.Operations.Initializers
{
public GlorotUniform(float scale = 1.0f,
string mode = "FAN_AVG",
bool uniform = true,
int? seed = null,
TF_DataType dtype = TF_DataType.TF_FLOAT) : base(factor: scale,
mode: mode,
uniform: uniform,
seed: seed,
dtype: dtype)
{
Write
Preview
Loading…
Cancel
Save