We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4204c98 commit b7ccf3bCopy full SHA for b7ccf3b
1 file changed
src/TensorFlowNET.Core/Tensors/dtypes.cs
@@ -45,6 +45,8 @@ public static Type as_numpy_dtype(this TF_DataType type)
45
return typeof(bool);
46
case TF_DataType.TF_UINT8:
47
return typeof(byte);
48
+ case TF_DataType.TF_INT8:
49
+ return typeof(sbyte);
50
case TF_DataType.TF_INT64:
51
return typeof(long);
52
case TF_DataType.TF_UINT64:
0 commit comments