@@ -230,10 +230,6 @@ namespace Tensorflow | |||||
public void add_to_collection<T>(string name, T value) | public void add_to_collection<T>(string name, T value) | ||||
{ | { | ||||
if(name == "update_ops") | |||||
{ | |||||
} | |||||
_check_not_finalized(); | _check_not_finalized(); | ||||
if (_collections.ContainsKey(name)) | if (_collections.ContainsKey(name)) | ||||
(_collections[name] as List<T>).Add(value); | (_collections[name] as List<T>).Add(value); | ||||
@@ -34,7 +34,7 @@ https://tensorflownet.readthedocs.io</Description> | |||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||||
<DefineConstants>TRACE;DEBUG;SERIALIZABLE</DefineConstants> | |||||
<DefineConstants>TRACE;DEBUG;SERIALIZABLE_</DefineConstants> | |||||
</PropertyGroup> | </PropertyGroup> | ||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||||
@@ -56,8 +56,7 @@ https://tensorflownet.readthedocs.io</Description> | |||||
</ItemGroup> | </ItemGroup> | ||||
<ItemGroup> | <ItemGroup> | ||||
<PackageReference Include="Google.Protobuf" Version="3.10.0" /> | |||||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" /> | |||||
<PackageReference Include="Google.Protobuf" Version="3.10.1" /> | |||||
<PackageReference Include="NumSharp" Version="0.20.4" /> | <PackageReference Include="NumSharp" Version="0.20.4" /> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -14,6 +14,7 @@ namespace TensorFlowNET.UnitTest.Keras | |||||
[TestClass] | [TestClass] | ||||
public class EmbeddingTest | public class EmbeddingTest | ||||
{ | { | ||||
[Ignore] | |||||
[TestMethod] | [TestMethod] | ||||
public void Embedding() | public void Embedding() | ||||
{ | { | ||||
@@ -13,6 +13,8 @@ namespace TensorFlowNET.UnitTest.img_test | |||||
[TestMethod] | [TestMethod] | ||||
public void TestCropAndResize() | public void TestCropAndResize() | ||||
{ | { | ||||
var graph = tf.Graph().as_default(); | |||||
// 3x3 'Image' with numbered coordinates | // 3x3 'Image' with numbered coordinates | ||||
var input = np.array(0f, 1f, 2f, 3f, 4f, 5f, 6f, 7f, 8f); | var input = np.array(0f, 1f, 2f, 3f, 4f, 5f, 6f, 7f, 8f); | ||||
var image = tf.reshape(input, new int[] { 1, 3, 3, 1 }); | var image = tf.reshape(input, new int[] { 1, 3, 3, 1 }); | ||||