Browse Source

minor fix: NN XOR example runs with self built graph per default

tags/v0.9
Meinrad Recheis 6 years ago
parent
commit
09a434d91d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/TensorFlowNET.Examples/NeuralNetXor.cs

+ 1
- 1
test/TensorFlowNET.Examples/NeuralNetXor.cs View File

@@ -16,7 +16,7 @@ namespace TensorFlowNET.Examples
public int Priority => 10;
public bool Enabled { get; set; } = true;
public string Name => "NN XOR";
public bool ImportGraph { get; set; } = true;
public bool ImportGraph { get; set; } = false;
public int num_steps = 5000;


Loading…
Cancel
Save