diff --git a/src/TensorFlowNET.Core/Variables/RefVariable.cs b/src/TensorFlowNET.Core/Variables/RefVariable.cs index e0e66869..075123f1 100644 --- a/src/TensorFlowNET.Core/Variables/RefVariable.cs +++ b/src/TensorFlowNET.Core/Variables/RefVariable.cs @@ -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;