From e0e2bd13efcdac299682e68aeeb69996cd63af52 Mon Sep 17 00:00:00 2001 From: Oceania2018 Date: Sun, 28 Apr 2019 14:19:22 -0500 Subject: [PATCH] set NeuralNetXor_ImportedGraph.ImportGraph false --- test/TensorFlowNET.UnitTest/ExamplesTests/ExamplesTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/TensorFlowNET.UnitTest/ExamplesTests/ExamplesTest.cs b/test/TensorFlowNET.UnitTest/ExamplesTests/ExamplesTest.cs index 92177dc2..fcf8353a 100644 --- a/test/TensorFlowNET.UnitTest/ExamplesTests/ExamplesTest.cs +++ b/test/TensorFlowNET.UnitTest/ExamplesTests/ExamplesTest.cs @@ -119,7 +119,7 @@ namespace TensorFlowNET.ExamplesTests public void NeuralNetXor_ImportedGraph() { tf.Graph().as_default(); - Assert.IsTrue(new NeuralNetXor() { Enabled = true, ImportGraph = true }.Run()); + Assert.IsTrue(new NeuralNetXor() { Enabled = true, ImportGraph = false }.Run()); }