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
Keras layer activations fix
tags/yolov3
MPnoy
Haiping
4 years ago
parent
c8643c4266
commit
5801566a8d
2 changed files
with
6 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
src/TensorFlowNET.Keras/Activations/Activations.Sigmoid.cs
+3
-1
src/TensorFlowNET.Keras/Activations/Activations.Tanh.cs
+ 3
- 1
src/TensorFlowNET.Keras/Activations/Activations.Sigmoid.cs
View File
@@ -17,7 +17,9 @@ namespace Tensorflow.Keras
return results[0];
}
throw new NotImplementedException("");
var _op = tf.OpDefLib._apply_op_helper("Sigmoid", name: name, args: new { x = features });
return _op.output;
};
}
}
+ 3
- 1
src/TensorFlowNET.Keras/Activations/Activations.Tanh.cs
View File
@@ -17,7 +17,9 @@ namespace Tensorflow.Keras
return results[0];
}
throw new NotImplementedException("");
var _op = tf.OpDefLib._apply_op_helper("Tanh", name: name, args: new { x = features });
return _op.output;
};
}
}
Write
Preview
Loading…
Cancel
Save