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;