From eb455bcb201c3ebb5fbb3e64fa2a8301867d014f Mon Sep 17 00:00:00 2001 From: haiping008 Date: Wed, 6 Mar 2019 17:31:10 -0600 Subject: [PATCH] Conv2D --- src/TensorFlowNET.Core/Keras/Layers/Conv.cs | 10 ++++++++++ .../convolutional.py.cs => Keras/Layers/Conv2D.cs} | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 src/TensorFlowNET.Core/Keras/Layers/Conv.cs rename src/TensorFlowNET.Core/{Layers/convolutional.py.cs => Keras/Layers/Conv2D.cs} (92%) diff --git a/src/TensorFlowNET.Core/Keras/Layers/Conv.cs b/src/TensorFlowNET.Core/Keras/Layers/Conv.cs new file mode 100644 index 00000000..70df628b --- /dev/null +++ b/src/TensorFlowNET.Core/Keras/Layers/Conv.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + public class Conv + { + } +} diff --git a/src/TensorFlowNET.Core/Layers/convolutional.py.cs b/src/TensorFlowNET.Core/Keras/Layers/Conv2D.cs similarity index 92% rename from src/TensorFlowNET.Core/Layers/convolutional.py.cs rename to src/TensorFlowNET.Core/Keras/Layers/Conv2D.cs index babc761d..b9d884ce 100644 --- a/src/TensorFlowNET.Core/Layers/convolutional.py.cs +++ b/src/TensorFlowNET.Core/Keras/Layers/Conv2D.cs @@ -3,9 +3,9 @@ using System.Collections.Generic; using System.Text; using Tensorflow.Operations.Activation; -namespace Tensorflow.Layers +namespace Tensorflow.Keras.Layers { - public class Conv2D + public class Conv2D : Conv { private int filters; private int[] kernel_size;