diff --git a/src/TensorFlowNET.Core/Buffers/Buffer.cs b/src/TensorFlowNET.Core/Buffers/Buffer.cs index c08d3175..ad5dbc44 100644 --- a/src/TensorFlowNET.Core/Buffers/Buffer.cs +++ b/src/TensorFlowNET.Core/Buffers/Buffer.cs @@ -70,7 +70,7 @@ namespace Tensorflow public Buffer() => _handle = TF_NewBuffer(); - internal Buffer(IntPtr handle) + public Buffer(IntPtr handle) { if (handle == IntPtr.Zero) throw new ArgumentException("Handle (IntPtr) can't be zero.", nameof(handle));