Browse Source

dtype in RefVariable #137

tags/v0.1.0-Tensor
Oceania2018 6 years ago
parent
commit
a0de3a01f0
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/TensorFlowNET.Core/Variables/RefVariable.cs

+ 1
- 0
src/TensorFlowNET.Core/Variables/RefVariable.cs View File

@@ -17,6 +17,7 @@ namespace Tensorflow
private Operation _initializer_op;
public Operation initializer => _initializer_op;
public Operation op => _variable.op;
public TF_DataType dtype => _variable.dtype;

public string name => _variable.name;



Loading…
Cancel
Save