Skip to content

Commit eb455bc

Browse files
committed
Conv2D
1 parent f0e0a84 commit eb455bc

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
5+
namespace Tensorflow.Keras.Layers
6+
{
7+
public class Conv
8+
{
9+
}
10+
}

src/TensorFlowNET.Core/Layers/convolutional.py.cs renamed to src/TensorFlowNET.Core/Keras/Layers/Conv2D.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using System.Text;
44
using Tensorflow.Operations.Activation;
55

6-
namespace Tensorflow.Layers
6+
namespace Tensorflow.Keras.Layers
77
{
8-
public class Conv2D
8+
public class Conv2D : Conv
99
{
1010
private int filters;
1111
private int[] kernel_size;

0 commit comments

Comments
 (0)