You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Activations.Relu.cs 247 B

4 years ago
12345678910
  1. using static Tensorflow.Binding;
  2. namespace Tensorflow.Keras
  3. {
  4. public partial class Activations
  5. {
  6. public Activation Relu = (features, name)
  7. => tf.Context.ExecuteOp("Relu", name, new ExecuteOpArgs(features));
  8. }
  9. }