Browse Source

Fix get operation by pointer.

tags/v0.30
Oceania2018 5 years ago
parent
commit
bdfe6d476d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/TensorFlowNET.Core/Operations/Operation.Instance.cs

+ 1
- 1
src/TensorFlowNET.Core/Operations/Operation.Instance.cs View File

@@ -40,7 +40,7 @@ namespace Tensorflow
} }
} }


return null;
return new Operation(handle);
} }
} }
} }

Loading…
Cancel
Save