Browse Source

change to Newtonsoft.Json.

tags/v0.12
Oceania2018 6 years ago
parent
commit
27ab492cad
6 changed files with 6 additions and 6 deletions
  1. +1
    -1
      src/TensorFlowNET.Core/Operations/Operation.Input.cs
  2. +1
    -1
      src/TensorFlowNET.Core/Operations/Operation.Output.cs
  3. +1
    -1
      src/TensorFlowNET.Core/Operations/Operation.cs
  4. +1
    -1
      src/TensorFlowNET.Core/Tensors/Tensor.Creation.cs
  5. +1
    -1
      src/TensorFlowNET.Core/Tensors/Tensor.cs
  6. +1
    -1
      src/TensorFlowNET.Core/Tensors/TensorShape.cs

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

@@ -18,7 +18,7 @@ using System;
using System.Linq; using System.Linq;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
#if SERIALIZABLE #if SERIALIZABLE
using System.Text.Json.Serialization;
using Newtonsoft.Json;
#endif #endif
namespace Tensorflow namespace Tensorflow


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

@@ -18,7 +18,7 @@ using System;
using System.Linq; using System.Linq;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
#if SERIALIZABLE #if SERIALIZABLE
using System.Text.Json.Serialization;
using Newtonsoft.Json;
#endif #endif
using static Tensorflow.Binding; using static Tensorflow.Binding;




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

@@ -16,7 +16,7 @@


using Google.Protobuf.Collections; using Google.Protobuf.Collections;
#if SERIALIZABLE #if SERIALIZABLE
using System.Text.Json.Serialization;
using Newtonsoft.Json;
#endif #endif
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;


+ 1
- 1
src/TensorFlowNET.Core/Tensors/Tensor.Creation.cs View File

@@ -26,7 +26,7 @@ using NumSharp.Backends;
using NumSharp.Backends.Unmanaged; using NumSharp.Backends.Unmanaged;
using static Tensorflow.c_api; using static Tensorflow.c_api;
#if SERIALIZABLE #if SERIALIZABLE
using System.Text.Json.Serialization;
using Newtonsoft.Json;
#endif #endif


namespace Tensorflow namespace Tensorflow


+ 1
- 1
src/TensorFlowNET.Core/Tensors/Tensor.cs View File

@@ -29,7 +29,7 @@ using NumSharp.Backends.Unmanaged;
using NumSharp.Utilities; using NumSharp.Utilities;
using Tensorflow.Framework; using Tensorflow.Framework;
#if SERIALIZABLE #if SERIALIZABLE
using System.Text.Json.Serialization;
using Newtonsoft.Json;
#endif #endif


namespace Tensorflow namespace Tensorflow


+ 1
- 1
src/TensorFlowNET.Core/Tensors/TensorShape.cs View File

@@ -5,7 +5,7 @@ using System.Diagnostics.CodeAnalysis;
using System.Linq; using System.Linq;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
#if SERIALIZABLE #if SERIALIZABLE
using System.Text.Json.Serialization;
using Newtonsoft.Json;
#endif #endif
using static Tensorflow.Binding; using static Tensorflow.Binding;




Loading…
Cancel
Save