Browse Source

Conv2D

tags/v0.8.0
haiping008 6 years ago
parent
commit
eb455bcb20
2 changed files with 12 additions and 2 deletions
  1. +10
    -0
      src/TensorFlowNET.Core/Keras/Layers/Conv.cs
  2. +2
    -2
      src/TensorFlowNET.Core/Keras/Layers/Conv2D.cs

+ 10
- 0
src/TensorFlowNET.Core/Keras/Layers/Conv.cs View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Tensorflow.Keras.Layers
{
public class Conv
{
}
}

src/TensorFlowNET.Core/Layers/convolutional.py.cs → src/TensorFlowNET.Core/Keras/Layers/Conv2D.cs View File

@@ -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;

Loading…
Cancel
Save