Browse Source

fix compile error

tags/v0.8.0
Oceania2018 6 years ago
parent
commit
8914e6164d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/TensorFlowNET.Core/Graphs/Graph.cs

+ 1
- 1
src/TensorFlowNET.Core/Graphs/Graph.cs View File

@@ -145,7 +145,7 @@ namespace Tensorflow
_create_op_helper(op, true);

Console.Write($"create_op: {op_type} '{node_def.Name}'");
Console.Write($", inputs: {(inputs.Count == 0 ? "empty" : String.Join(",", inputs.Select(x => x.name)))}");
Console.Write($", inputs: {(inputs.Length == 0 ? "empty" : String.Join(",", inputs.Select(x => x.name)))}");
Console.Write($", outputs: {(op.outputs.Length == 0 ? "empty" : String.Join(",", op.outputs.Select(x => x.name)))}");
Console.WriteLine();



Loading…
Cancel
Save