Browse Source

Build Keras Skeleton

tags/v0.20
Deepak Battini 5 years ago
parent
commit
8b8919c9c6
100 changed files with 981 additions and 0 deletions
  1. +1
    -0
      .gitignore
  2. +10
    -0
      TensorFlow.NET.sln
  3. +10
    -0
      src/TensorFlowNET.Keras/Applications/Densenet.cs
  4. +10
    -0
      src/TensorFlowNET.Keras/Applications/Efficientnet.cs
  5. +10
    -0
      src/TensorFlowNET.Keras/Applications/ImagenetUtils.cs
  6. +10
    -0
      src/TensorFlowNET.Keras/Applications/InceptionResnetV2.cs
  7. +10
    -0
      src/TensorFlowNET.Keras/Applications/InceptionV3.cs
  8. +10
    -0
      src/TensorFlowNET.Keras/Applications/Mobilenet.cs
  9. +10
    -0
      src/TensorFlowNET.Keras/Applications/MobilenetV2.cs
  10. +10
    -0
      src/TensorFlowNET.Keras/Applications/Nasnet.cs
  11. +10
    -0
      src/TensorFlowNET.Keras/Applications/Resnet.cs
  12. +10
    -0
      src/TensorFlowNET.Keras/Applications/ResnetV2.cs
  13. +10
    -0
      src/TensorFlowNET.Keras/Applications/Vgg16.cs
  14. +10
    -0
      src/TensorFlowNET.Keras/Applications/Vgg19.cs
  15. +10
    -0
      src/TensorFlowNET.Keras/Applications/Xception.cs
  16. +10
    -0
      src/TensorFlowNET.Keras/Datasets/BostonHousing.cs
  17. +10
    -0
      src/TensorFlowNET.Keras/Datasets/Cifar.cs
  18. +10
    -0
      src/TensorFlowNET.Keras/Datasets/Cifar10.cs
  19. +10
    -0
      src/TensorFlowNET.Keras/Datasets/Cifar100.cs
  20. +10
    -0
      src/TensorFlowNET.Keras/Datasets/FashionMNIST.cs
  21. +10
    -0
      src/TensorFlowNET.Keras/Datasets/IMDB.cs
  22. +10
    -0
      src/TensorFlowNET.Keras/Datasets/MNIST.cs
  23. +10
    -0
      src/TensorFlowNET.Keras/Datasets/Reuters.cs
  24. +10
    -0
      src/TensorFlowNET.Keras/Distribute/DistributedTrainingUtils.cs
  25. +10
    -0
      src/TensorFlowNET.Keras/Distribute/KerasCorrectnessTestBase.cs
  26. +10
    -0
      src/TensorFlowNET.Keras/Distribute/KerasDnnCorrectnessTest.cs
  27. +10
    -0
      src/TensorFlowNET.Keras/Distribute/KerasEmbeddingModelCorrectnessTest.cs
  28. +10
    -0
      src/TensorFlowNET.Keras/Distribute/KerasImageModelCorrectnessTest.cs
  29. +10
    -0
      src/TensorFlowNET.Keras/Distribute/KerasOptimizerV2Test.cs
  30. +10
    -0
      src/TensorFlowNET.Keras/Distribute/KerasPremadeModelsTest.cs
  31. +10
    -0
      src/TensorFlowNET.Keras/Distribute/KerasRnnModelCorrectnessTest.cs
  32. +10
    -0
      src/TensorFlowNET.Keras/Distribute/KerasStatefulLstmModelCorrectnessTest.cs
  33. +10
    -0
      src/TensorFlowNET.Keras/Distribute/KerasUtilsTest.cs
  34. +10
    -0
      src/TensorFlowNET.Keras/Distribute/MultiWorkerCallbackTF1Test.cs
  35. +10
    -0
      src/TensorFlowNET.Keras/Distribute/MultiWorkerCallbackTf2Test.cs
  36. +10
    -0
      src/TensorFlowNET.Keras/Distribute/MultiWorkerFaultToleranceTest.cs
  37. +10
    -0
      src/TensorFlowNET.Keras/Distribute/MultiWorkerTest.cs
  38. +10
    -0
      src/TensorFlowNET.Keras/Distribute/MultiWorkerTestingUtils.cs
  39. +10
    -0
      src/TensorFlowNET.Keras/Distribute/MultiWorkerTrainingState.cs
  40. +10
    -0
      src/TensorFlowNET.Keras/Distribute/MultiWorkerTrainingStateTest.cs
  41. +10
    -0
      src/TensorFlowNET.Keras/Engine/BaseLayer.cs
  42. +10
    -0
      src/TensorFlowNET.Keras/Engine/BaseLayerUtils.cs
  43. +10
    -0
      src/TensorFlowNET.Keras/Engine/BasePreprocessingLayer.cs
  44. +10
    -0
      src/TensorFlowNET.Keras/Engine/BasePreprocessingLayerV1.cs
  45. +10
    -0
      src/TensorFlowNET.Keras/Engine/CompileUtils.cs
  46. +10
    -0
      src/TensorFlowNET.Keras/Engine/DataAdapter.cs
  47. +10
    -0
      src/TensorFlowNET.Keras/Engine/InputLayer.cs
  48. +10
    -0
      src/TensorFlowNET.Keras/Engine/InputSpec.cs
  49. +10
    -0
      src/TensorFlowNET.Keras/Engine/Network.cs
  50. +10
    -0
      src/TensorFlowNET.Keras/Engine/Node.cs
  51. +10
    -0
      src/TensorFlowNET.Keras/Engine/PartialBatchPaddingHandler.cs
  52. +10
    -0
      src/TensorFlowNET.Keras/Engine/Saving.cs
  53. +10
    -0
      src/TensorFlowNET.Keras/Engine/Sequential.cs
  54. +10
    -0
      src/TensorFlowNET.Keras/Engine/Training.cs
  55. +10
    -0
      src/TensorFlowNET.Keras/Engine/TrainingArrays.cs
  56. +10
    -0
      src/TensorFlowNET.Keras/Engine/TrainingDistributed.cs
  57. +10
    -0
      src/TensorFlowNET.Keras/Engine/TrainingEager.cs
  58. +10
    -0
      src/TensorFlowNET.Keras/Engine/TrainingGenerator.cs
  59. +10
    -0
      src/TensorFlowNET.Keras/Engine/TrainingUtils.cs
  60. +10
    -0
      src/TensorFlowNET.Keras/Engine/TrainingV1.cs
  61. +10
    -0
      src/TensorFlowNET.Keras/Engine/TrainingV2.cs
  62. +10
    -0
      src/TensorFlowNET.Keras/Engine/TrainingV2Utils.cs
  63. +10
    -0
      src/TensorFlowNET.Keras/Estimator.cs
  64. +10
    -0
      src/TensorFlowNET.Keras/Layers/AdvancedActivations/ELU.cs
  65. +10
    -0
      src/TensorFlowNET.Keras/Layers/AdvancedActivations/LeakyReLU.cs
  66. +10
    -0
      src/TensorFlowNET.Keras/Layers/AdvancedActivations/PReLU.cs
  67. +10
    -0
      src/TensorFlowNET.Keras/Layers/AdvancedActivations/ReLU.cs
  68. +10
    -0
      src/TensorFlowNET.Keras/Layers/AdvancedActivations/Softmax.cs
  69. +10
    -0
      src/TensorFlowNET.Keras/Layers/AdvancedActivations/ThresholdedReLU.cs
  70. +10
    -0
      src/TensorFlowNET.Keras/Layers/Convolutional/Conv.cs
  71. +10
    -0
      src/TensorFlowNET.Keras/Layers/Convolutional/Conv1D.cs
  72. +10
    -0
      src/TensorFlowNET.Keras/Layers/Convolutional/Conv2D.cs
  73. +10
    -0
      src/TensorFlowNET.Keras/Layers/Convolutional/Conv2DTranspose.cs
  74. +10
    -0
      src/TensorFlowNET.Keras/Layers/Convolutional/Conv3D.cs
  75. +10
    -0
      src/TensorFlowNET.Keras/Layers/Convolutional/Conv3DTranspose.cs
  76. +10
    -0
      src/TensorFlowNET.Keras/Layers/Convolutional/Cropping1D.cs
  77. +10
    -0
      src/TensorFlowNET.Keras/Layers/Convolutional/Cropping2D.cs
  78. +10
    -0
      src/TensorFlowNET.Keras/Layers/Convolutional/Cropping3D.cs
  79. +10
    -0
      src/TensorFlowNET.Keras/Layers/Convolutional/DepthwiseConv2D.cs
  80. +10
    -0
      src/TensorFlowNET.Keras/Layers/ConvolutionalRecurrent/ConvLSTM2D.cs
  81. +10
    -0
      src/TensorFlowNET.Keras/Layers/ConvolutionalRecurrent/ConvLSTM2DCell.cs
  82. +10
    -0
      src/TensorFlowNET.Keras/Layers/ConvolutionalRecurrent/ConvRNN2D.cs
  83. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/Activation.cs
  84. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/ActivityRegularization.cs
  85. +0
    -0
      src/TensorFlowNET.Keras/Layers/Core/Dense.cs
  86. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/Dropout.cs
  87. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/Flatten.cs
  88. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/Lambda.cs
  89. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/Masking.cs
  90. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/Permute.cs
  91. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/RepeatVector.cs
  92. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/Reshape.cs
  93. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/SpatialDropout1D.cs
  94. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/SpatialDropout2D.cs
  95. +10
    -0
      src/TensorFlowNET.Keras/Layers/Core/SpatialDropout3D.cs
  96. +10
    -0
      src/TensorFlowNET.Keras/Layers/CuDnnRecurrent/CuDNNGRU.cs
  97. +10
    -0
      src/TensorFlowNET.Keras/Layers/CuDnnRecurrent/CuDNNLSTM.cs
  98. +10
    -0
      src/TensorFlowNET.Keras/Layers/CuDnnRecurrent/_CuDNNRNN.cs
  99. +10
    -0
      src/TensorFlowNET.Keras/Layers/DenseAttention/AdditiveAttention.cs
  100. +10
    -0
      src/TensorFlowNET.Keras/Layers/DenseAttention/Attention.cs

+ 1
- 0
.gitignore View File

@@ -336,3 +336,4 @@ test/TensorFlowNET.Examples/mnist

# training model resources
.resources
/redist

+ 10
- 0
TensorFlow.NET.sln View File

@@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Benchmark", "src\TensorFlow
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTest", "test\TensorFlowNET.UnitTest\UnitTest.csproj", "{23C28035-2FCE-41F3-9A12-E73CE8A5AE32}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tensorflow.Keras", "src\TensorFlowNET.Keras\Tensorflow.Keras.csproj", "{6268B461-486A-460B-9B3C-86493CBBAAF7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -41,6 +43,14 @@ Global
{23C28035-2FCE-41F3-9A12-E73CE8A5AE32}.Release|Any CPU.Build.0 = Release|Any CPU
{23C28035-2FCE-41F3-9A12-E73CE8A5AE32}.Release|x64.ActiveCfg = Release|Any CPU
{23C28035-2FCE-41F3-9A12-E73CE8A5AE32}.Release|x64.Build.0 = Release|Any CPU
{6268B461-486A-460B-9B3C-86493CBBAAF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6268B461-486A-460B-9B3C-86493CBBAAF7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6268B461-486A-460B-9B3C-86493CBBAAF7}.Debug|x64.ActiveCfg = Debug|Any CPU
{6268B461-486A-460B-9B3C-86493CBBAAF7}.Debug|x64.Build.0 = Debug|Any CPU
{6268B461-486A-460B-9B3C-86493CBBAAF7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6268B461-486A-460B-9B3C-86493CBBAAF7}.Release|Any CPU.Build.0 = Release|Any CPU
{6268B461-486A-460B-9B3C-86493CBBAAF7}.Release|x64.ActiveCfg = Release|Any CPU
{6268B461-486A-460B-9B3C-86493CBBAAF7}.Release|x64.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE


+ 10
- 0
src/TensorFlowNET.Keras/Applications/Densenet.cs View File

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

namespace Tensorflow.Keras.Applications
{
class Densenet
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/Efficientnet.cs View File

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

namespace Tensorflow.Keras.Applications
{
class Efficientnet
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/ImagenetUtils.cs View File

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

namespace Tensorflow.Keras.Applications
{
class ImagenetUtils
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/InceptionResnetV2.cs View File

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

namespace Tensorflow.Keras.Applications
{
class InceptionResnetV2
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/InceptionV3.cs View File

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

namespace Tensorflow.Keras.Applications
{
class InceptionV3
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/Mobilenet.cs View File

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

namespace Tensorflow.Keras.Applications
{
class Mobilenet
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/MobilenetV2.cs View File

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

namespace Tensorflow.Keras.Applications
{
class MobilenetV2
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/Nasnet.cs View File

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

namespace Tensorflow.Keras.Applications
{
class Nasnet
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/Resnet.cs View File

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

namespace Tensorflow.Keras.Applications
{
class Resnet
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/ResnetV2.cs View File

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

namespace Tensorflow.Keras.Applications
{
class ResnetV2
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/Vgg16.cs View File

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

namespace Tensorflow.Keras.Applications
{
class Vgg16
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/Vgg19.cs View File

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

namespace Tensorflow.Keras.Applications
{
class Vgg19
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Applications/Xception.cs View File

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

namespace Tensorflow.Keras.Applications
{
class Xception
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Datasets/BostonHousing.cs View File

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

namespace Tensorflow.Keras.Datasets
{
class BostonHousing
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Datasets/Cifar.cs View File

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

namespace Tensorflow.Keras.Datasets
{
class Cifar100
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Datasets/Cifar10.cs View File

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

namespace Tensorflow.Keras.Datasets
{
class Cifar10
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Datasets/Cifar100.cs View File

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

namespace Tensorflow.Keras.Datasets
{
class Cifar
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Datasets/FashionMNIST.cs View File

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

namespace Tensorflow.Keras.Datasets
{
class FashionMNIST
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Datasets/IMDB.cs View File

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

namespace Tensorflow.Keras.Datasets
{
class IMDB
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Datasets/MNIST.cs View File

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

namespace Tensorflow.Keras.Datasets
{
class MNIST
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Datasets/Reuters.cs View File

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

namespace Tensorflow.Keras.Datasets
{
class Reuters
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/DistributedTrainingUtils.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class DistributedTrainingUtils
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/KerasCorrectnessTestBase.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class KerasCorrectnessTestBase
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/KerasDnnCorrectnessTest.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class KerasDnnCorrectnessTest
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/KerasEmbeddingModelCorrectnessTest.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class KerasEmbeddingModelCorrectnessTest
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/KerasImageModelCorrectnessTest.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class KerasImageModelCorrectnessTest
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/KerasOptimizerV2Test.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class KerasOptimizerV2Test
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/KerasPremadeModelsTest.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class KerasPremadeModelsTest
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/KerasRnnModelCorrectnessTest.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class KerasRnnModelCorrectnessTest
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/KerasStatefulLstmModelCorrectnessTest.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class KerasStatefulLstmModelCorrectnessTest
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/KerasUtilsTest.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class KerasUtilsTest
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/MultiWorkerCallbackTF1Test.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class MultiWorkerCallbackTF1Test
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/MultiWorkerCallbackTf2Test.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class MultiWorkerCallbackTf2Test
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/MultiWorkerFaultToleranceTest.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class MultiWorkerFaultToleranceTest
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/MultiWorkerTest.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class MultiWorkerTest
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/MultiWorkerTestingUtils.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class MultiWorkerTestingUtils
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/MultiWorkerTrainingState.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class MultiWorkerTrainingState
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Distribute/MultiWorkerTrainingStateTest.cs View File

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

namespace Tensorflow.Keras.Distribute
{
class MultiWorkerTrainingStateTest
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/BaseLayer.cs View File

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

namespace Tensorflow.Keras.Engine
{
class BaseLayer
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/BaseLayerUtils.cs View File

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

namespace Tensorflow.Keras.Engine
{
class BaseLayerUtils
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/BasePreprocessingLayer.cs View File

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

namespace Tensorflow.Keras.Engine
{
class BasePreprocessingLayer
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/BasePreprocessingLayerV1.cs View File

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

namespace Tensorflow.Keras.Engine
{
class BasePreprocessingLayerV1
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/CompileUtils.cs View File

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

namespace Tensorflow.Keras.Engine
{
class CompileUtils
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/DataAdapter.cs View File

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

namespace Tensorflow.Keras.Engine
{
class DataAdapter
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/InputLayer.cs View File

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

namespace Tensorflow.Keras.Engine
{
class InputLayer
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/InputSpec.cs View File

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

namespace Tensorflow.Keras.Engine
{
class InputSpec
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/Network.cs View File

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

namespace Tensorflow.Keras.Engine
{
class Network
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/Node.cs View File

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

namespace Tensorflow.Keras.Engine
{
class Node
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/PartialBatchPaddingHandler.cs View File

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

namespace Tensorflow.Keras.Engine
{
class PartialBatchPaddingHandler
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/Saving.cs View File

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

namespace Tensorflow.Keras.Engine
{
class Saving
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/Sequential.cs View File

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

namespace Tensorflow.Keras.Engine
{
class Sequential
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/Training.cs View File

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

namespace Tensorflow.Keras.Engine
{
class Training
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/TrainingArrays.cs View File

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

namespace Tensorflow.Keras.Engine
{
class TrainingArrays
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/TrainingDistributed.cs View File

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

namespace Tensorflow.Keras.Engine
{
class TrainingDistributed
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/TrainingEager.cs View File

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

namespace Tensorflow.Keras.Engine
{
class TrainingEager
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/TrainingGenerator.cs View File

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

namespace Tensorflow.Keras.Engine
{
class TrainingGenerator
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/TrainingUtils.cs View File

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

namespace Tensorflow.Keras.Engine
{
class TrainingUtils
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/TrainingV1.cs View File

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

namespace Tensorflow.Keras.Engine
{
class TrainingV1
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/TrainingV2.cs View File

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

namespace Tensorflow.Keras.Engine
{
class TrainingV2
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Engine/TrainingV2Utils.cs View File

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

namespace Tensorflow.Keras.Engine
{
class TrainingV2Utils
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Estimator.cs View File

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

namespace Tensorflow.Keras
{
class Estimator
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/AdvancedActivations/ELU.cs View File

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

namespace Tensorflow.Keras.Layers.AdvancedActivations
{
class ELU
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/AdvancedActivations/LeakyReLU.cs View File

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

namespace Tensorflow.Keras.Layers.AdvancedActivations
{
class LeakyReLU
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/AdvancedActivations/PReLU.cs View File

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

namespace Tensorflow.Keras.Layers.AdvancedActivations
{
class PReLU
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/AdvancedActivations/ReLU.cs View File

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

namespace Tensorflow.Keras.Layers.AdvancedActivations
{
class ReLU
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/AdvancedActivations/Softmax.cs View File

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

namespace Tensorflow.Keras.Layers.AdvancedActivations
{
class Softmax
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/AdvancedActivations/ThresholdedReLU.cs View File

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

namespace Tensorflow.Keras.Layers.AdvancedActivations
{
class ThresholdedReLU
{
}
}

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

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

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

+ 10
- 0
src/TensorFlowNET.Keras/Layers/Convolutional/Conv1D.cs View File

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

namespace Tensorflow.Keras.Layers
{
class Conv1D
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/Convolutional/Conv2D.cs View File

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

namespace Tensorflow.Keras.Layers
{
class Conv2D
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/Convolutional/Conv2DTranspose.cs View File

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

namespace Tensorflow.Keras.Layers
{
class Conv2DTranspose
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/Convolutional/Conv3D.cs View File

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

namespace Tensorflow.Keras.Layers
{
class Conv3D
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/Convolutional/Conv3DTranspose.cs View File

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

namespace Tensorflow.Keras.Layers
{
class Conv3DTranspose
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/Convolutional/Cropping1D.cs View File

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

namespace Tensorflow.Keras.Layers
{
class Cropping1D
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/Convolutional/Cropping2D.cs View File

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

namespace Tensorflow.Keras.Layers
{
class Cropping2D
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/Convolutional/Cropping3D.cs View File

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

namespace Tensorflow.Keras.Layers
{
class Cropping3D
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/Convolutional/DepthwiseConv2D.cs View File

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

namespace Tensorflow.Keras.Layers
{
class DepthwiseConv2D
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/ConvolutionalRecurrent/ConvLSTM2D.cs View File

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

namespace Tensorflow.Keras.Layers
{
class ConvLSTM2D
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/ConvolutionalRecurrent/ConvLSTM2DCell.cs View File

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

namespace Tensorflow.Keras.Layers
{
class ConvLSTM2DCell
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/ConvolutionalRecurrent/ConvRNN2D.cs View File

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

namespace Tensorflow.Keras.Layers
{
class ConvRNN2D
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class Activation
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class ActivityRegularization
{
}
}

src/TensorFlowNET.Keras/Layers/Dense.cs → src/TensorFlowNET.Keras/Layers/Core/Dense.cs View File


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

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

namespace Tensorflow.Keras.Layers
{
class Dropout
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class Flatten
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class Lambda
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class Masking
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class Permute
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class RepeatVector
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class Reshape
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class SpatialDropout1D
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class SpatialDropout2D
{
}
}

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

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

namespace Tensorflow.Keras.Layers
{
class SpatialDropout3D
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/CuDnnRecurrent/CuDNNGRU.cs View File

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

namespace Tensorflow.Keras.Layers
{
class CuDNNGRU
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/CuDnnRecurrent/CuDNNLSTM.cs View File

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

namespace Tensorflow.Keras.Layers
{
class CuDNNLSTM
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/CuDnnRecurrent/_CuDNNRNN.cs View File

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

namespace Tensorflow.Keras.Layers
{
class _CuDNNRNN
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/DenseAttention/AdditiveAttention.cs View File

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

namespace Tensorflow.Keras.Layers
{
class AdditiveAttention
{
}
}

+ 10
- 0
src/TensorFlowNET.Keras/Layers/DenseAttention/Attention.cs View File

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

namespace Tensorflow.Keras.Layers
{
class Attention
{
}
}

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save