Browse Source

data_flow_ops.stack_pop_v2

tags/v0.12
Oceania2018 6 years ago
parent
commit
57f77ab233
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      src/TensorFlowNET.Core/Operations/gen_data_flow_ops.cs

+ 11
- 0
src/TensorFlowNET.Core/Operations/gen_data_flow_ops.cs View File

@@ -285,5 +285,16 @@ namespace Tensorflow

return _op.output;
}

public static Tensor stack_pop_v2(Tensor handle, TF_DataType elem_type, string name = null)
{
var _op = _op_def_lib._apply_op_helper("StackPopV2", name, new
{
handle,
elem_type
});

return _op.output;
}
}
}

Loading…
Cancel
Save