From 43b27c3a00c9a768bc9093e66e1fdf6e8a14ff62 Mon Sep 17 00:00:00 2001 From: Deepak Kumar Date: Wed, 8 Jan 2020 20:39:37 +1030 Subject: [PATCH] Added Layers, Saving and utils --- .../Layers/Processing/CategoryLookup.cs | 10 ++++++++++ .../Layers/Processing/ImagePreprocessing.cs | 10 ++++++++++ .../Layers/Processing/Normalization.cs | 10 ++++++++++ .../Layers/Processing/NormalizationV1.cs | 10 ++++++++++ .../Layers/Processing/TextVectorization.cs | 10 ++++++++++ .../Layers/Processing/TextVectorizationV1.cs | 10 ++++++++++ .../Layers/RNNCellWrapper/DeviceWrapper.cs | 10 ++++++++++ .../Layers/RNNCellWrapper/DropoutWrapper.cs | 10 ++++++++++ .../Layers/RNNCellWrapper/ResidualWrapper.cs | 10 ++++++++++ .../Layers/RNNCellWrapper/_RNNCellWrapperV2.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Layers/Recurrent/GRUCellv2.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Layers/Recurrent/GRUv2.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Layers/Recurrent/LSTMCellv2.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Layers/Recurrent/LSTMv2.cs | 10 ++++++++++ .../Layers/Wrapper/Bidirectional.cs | 10 ++++++++++ .../Layers/Wrapper/Serialization.cs | 10 ++++++++++ .../Layers/Wrapper/TimeDistributed.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Layers/Wrapper/Wrapper.cs | 10 ++++++++++ src/TensorFlowNET.Keras/OptimizersV2/Adadelta.cs | 10 ++++++++++ src/TensorFlowNET.Keras/OptimizersV2/Adagrad.cs | 10 ++++++++++ src/TensorFlowNET.Keras/OptimizersV2/Adam.cs | 10 ++++++++++ src/TensorFlowNET.Keras/OptimizersV2/Adamax.cs | 10 ++++++++++ .../OptimizersV2/BaseOptimizerV2.cs | 10 ++++++++++ src/TensorFlowNET.Keras/OptimizersV2/Ftrl.cs | 10 ++++++++++ .../OptimizersV2/LearningRateSchedule.cs | 10 ++++++++++ src/TensorFlowNET.Keras/OptimizersV2/Nadam.cs | 10 ++++++++++ src/TensorFlowNET.Keras/OptimizersV2/RMSProp.cs | 10 ++++++++++ src/TensorFlowNET.Keras/OptimizersV2/SGD.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Premade/LinearModel.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Premade/WideDeepModel.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Preprocessing/Image.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Preprocessing/Sequence.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Preprocessing/Text.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Saving/HDF5Format.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Saving/ModelConfig.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Saving/Save.cs | 10 ++++++++++ .../Saving/SavedModel/BaseSerialization.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Saving/SavedModel/Constants.cs | 10 ++++++++++ .../Saving/SavedModel/LayerSerialization.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Saving/SavedModel/Load.cs | 10 ++++++++++ .../Saving/SavedModel/ModelSerialization.cs | 10 ++++++++++ .../Saving/SavedModel/NetworkSerialization.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Saving/SavedModel/Save.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Saving/SavedModel/SaveImpl.cs | 10 ++++++++++ .../Saving/SavedModel/SerializedAttributes.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Saving/SavedModel/Utils.cs | 10 ++++++++++ .../Saving/SavedModelExperimental.cs | 10 ++++++++++ src/TensorFlowNET.Keras/Saving/SavingUtils.cs | 10 ++++++++++ 48 files changed, 480 insertions(+) create mode 100644 src/TensorFlowNET.Keras/Layers/Processing/CategoryLookup.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Processing/ImagePreprocessing.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Processing/Normalization.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Processing/NormalizationV1.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Processing/TextVectorization.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Processing/TextVectorizationV1.cs create mode 100644 src/TensorFlowNET.Keras/Layers/RNNCellWrapper/DeviceWrapper.cs create mode 100644 src/TensorFlowNET.Keras/Layers/RNNCellWrapper/DropoutWrapper.cs create mode 100644 src/TensorFlowNET.Keras/Layers/RNNCellWrapper/ResidualWrapper.cs create mode 100644 src/TensorFlowNET.Keras/Layers/RNNCellWrapper/_RNNCellWrapperV2.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Recurrent/GRUCellv2.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Recurrent/GRUv2.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Recurrent/LSTMCellv2.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Recurrent/LSTMv2.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Wrapper/Bidirectional.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Wrapper/Serialization.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Wrapper/TimeDistributed.cs create mode 100644 src/TensorFlowNET.Keras/Layers/Wrapper/Wrapper.cs create mode 100644 src/TensorFlowNET.Keras/OptimizersV2/Adadelta.cs create mode 100644 src/TensorFlowNET.Keras/OptimizersV2/Adagrad.cs create mode 100644 src/TensorFlowNET.Keras/OptimizersV2/Adam.cs create mode 100644 src/TensorFlowNET.Keras/OptimizersV2/Adamax.cs create mode 100644 src/TensorFlowNET.Keras/OptimizersV2/BaseOptimizerV2.cs create mode 100644 src/TensorFlowNET.Keras/OptimizersV2/Ftrl.cs create mode 100644 src/TensorFlowNET.Keras/OptimizersV2/LearningRateSchedule.cs create mode 100644 src/TensorFlowNET.Keras/OptimizersV2/Nadam.cs create mode 100644 src/TensorFlowNET.Keras/OptimizersV2/RMSProp.cs create mode 100644 src/TensorFlowNET.Keras/OptimizersV2/SGD.cs create mode 100644 src/TensorFlowNET.Keras/Premade/LinearModel.cs create mode 100644 src/TensorFlowNET.Keras/Premade/WideDeepModel.cs create mode 100644 src/TensorFlowNET.Keras/Preprocessing/Image.cs create mode 100644 src/TensorFlowNET.Keras/Preprocessing/Sequence.cs create mode 100644 src/TensorFlowNET.Keras/Preprocessing/Text.cs create mode 100644 src/TensorFlowNET.Keras/Saving/HDF5Format.cs create mode 100644 src/TensorFlowNET.Keras/Saving/ModelConfig.cs create mode 100644 src/TensorFlowNET.Keras/Saving/Save.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModel/BaseSerialization.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModel/Constants.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModel/LayerSerialization.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModel/Load.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModel/ModelSerialization.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModel/NetworkSerialization.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModel/Save.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModel/SaveImpl.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModel/SerializedAttributes.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModel/Utils.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavedModelExperimental.cs create mode 100644 src/TensorFlowNET.Keras/Saving/SavingUtils.cs diff --git a/src/TensorFlowNET.Keras/Layers/Processing/CategoryLookup.cs b/src/TensorFlowNET.Keras/Layers/Processing/CategoryLookup.cs new file mode 100644 index 00000000..6fb1191f --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Processing/CategoryLookup.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers.Processing +{ + class CategoryLookup + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Processing/ImagePreprocessing.cs b/src/TensorFlowNET.Keras/Layers/Processing/ImagePreprocessing.cs new file mode 100644 index 00000000..debcfe45 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Processing/ImagePreprocessing.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers.Processing +{ + class ImagePreprocessing + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Processing/Normalization.cs b/src/TensorFlowNET.Keras/Layers/Processing/Normalization.cs new file mode 100644 index 00000000..07bf2dd6 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Processing/Normalization.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers.Processing +{ + class Normalization + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Processing/NormalizationV1.cs b/src/TensorFlowNET.Keras/Layers/Processing/NormalizationV1.cs new file mode 100644 index 00000000..0c54ecc9 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Processing/NormalizationV1.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers.Processing +{ + class NormalizationV1 + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Processing/TextVectorization.cs b/src/TensorFlowNET.Keras/Layers/Processing/TextVectorization.cs new file mode 100644 index 00000000..21b5f334 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Processing/TextVectorization.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers.Processing +{ + class TextVectorization + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Processing/TextVectorizationV1.cs b/src/TensorFlowNET.Keras/Layers/Processing/TextVectorizationV1.cs new file mode 100644 index 00000000..07fac27c --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Processing/TextVectorizationV1.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers.Processing +{ + class TextVectorizationV1 + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/DeviceWrapper.cs b/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/DeviceWrapper.cs new file mode 100644 index 00000000..2754ba2d --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/DeviceWrapper.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class DeviceWrapper + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/DropoutWrapper.cs b/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/DropoutWrapper.cs new file mode 100644 index 00000000..10f310b1 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/DropoutWrapper.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class DropoutWrapper + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/ResidualWrapper.cs b/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/ResidualWrapper.cs new file mode 100644 index 00000000..71d31d17 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/ResidualWrapper.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class ResidualWrapper + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/_RNNCellWrapperV2.cs b/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/_RNNCellWrapperV2.cs new file mode 100644 index 00000000..db920f3b --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/RNNCellWrapper/_RNNCellWrapperV2.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class _RNNCellWrapperV2 + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Recurrent/GRUCellv2.cs b/src/TensorFlowNET.Keras/Layers/Recurrent/GRUCellv2.cs new file mode 100644 index 00000000..47166e48 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Recurrent/GRUCellv2.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class GRUCellv2 + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Recurrent/GRUv2.cs b/src/TensorFlowNET.Keras/Layers/Recurrent/GRUv2.cs new file mode 100644 index 00000000..1e218fd7 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Recurrent/GRUv2.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class GRUv2 + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Recurrent/LSTMCellv2.cs b/src/TensorFlowNET.Keras/Layers/Recurrent/LSTMCellv2.cs new file mode 100644 index 00000000..241ed8d1 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Recurrent/LSTMCellv2.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class LSTMCellv2 + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Recurrent/LSTMv2.cs b/src/TensorFlowNET.Keras/Layers/Recurrent/LSTMv2.cs new file mode 100644 index 00000000..48b4abd7 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Recurrent/LSTMv2.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class LSTMv2 + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Wrapper/Bidirectional.cs b/src/TensorFlowNET.Keras/Layers/Wrapper/Bidirectional.cs new file mode 100644 index 00000000..d60f8f6f --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Wrapper/Bidirectional.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class Bidirectional + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Wrapper/Serialization.cs b/src/TensorFlowNET.Keras/Layers/Wrapper/Serialization.cs new file mode 100644 index 00000000..8bae368e --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Wrapper/Serialization.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class Serialization + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Wrapper/TimeDistributed.cs b/src/TensorFlowNET.Keras/Layers/Wrapper/TimeDistributed.cs new file mode 100644 index 00000000..07ff1f6e --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Wrapper/TimeDistributed.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class TimeDistributed + { + } +} diff --git a/src/TensorFlowNET.Keras/Layers/Wrapper/Wrapper.cs b/src/TensorFlowNET.Keras/Layers/Wrapper/Wrapper.cs new file mode 100644 index 00000000..9b330b33 --- /dev/null +++ b/src/TensorFlowNET.Keras/Layers/Wrapper/Wrapper.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Layers +{ + class Wrapper + { + } +} diff --git a/src/TensorFlowNET.Keras/OptimizersV2/Adadelta.cs b/src/TensorFlowNET.Keras/OptimizersV2/Adadelta.cs new file mode 100644 index 00000000..1ba244da --- /dev/null +++ b/src/TensorFlowNET.Keras/OptimizersV2/Adadelta.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.OptimizersV2 +{ + class Adadelta + { + } +} diff --git a/src/TensorFlowNET.Keras/OptimizersV2/Adagrad.cs b/src/TensorFlowNET.Keras/OptimizersV2/Adagrad.cs new file mode 100644 index 00000000..9781c898 --- /dev/null +++ b/src/TensorFlowNET.Keras/OptimizersV2/Adagrad.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.OptimizersV2 +{ + class Adagrad + { + } +} diff --git a/src/TensorFlowNET.Keras/OptimizersV2/Adam.cs b/src/TensorFlowNET.Keras/OptimizersV2/Adam.cs new file mode 100644 index 00000000..7e08d517 --- /dev/null +++ b/src/TensorFlowNET.Keras/OptimizersV2/Adam.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.OptimizersV2 +{ + class Adam + { + } +} diff --git a/src/TensorFlowNET.Keras/OptimizersV2/Adamax.cs b/src/TensorFlowNET.Keras/OptimizersV2/Adamax.cs new file mode 100644 index 00000000..73f37ad9 --- /dev/null +++ b/src/TensorFlowNET.Keras/OptimizersV2/Adamax.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.OptimizersV2 +{ + class Adamax + { + } +} diff --git a/src/TensorFlowNET.Keras/OptimizersV2/BaseOptimizerV2.cs b/src/TensorFlowNET.Keras/OptimizersV2/BaseOptimizerV2.cs new file mode 100644 index 00000000..e84acc00 --- /dev/null +++ b/src/TensorFlowNET.Keras/OptimizersV2/BaseOptimizerV2.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.OptimizersV2 +{ + class BaseOptimizerV2 + { + } +} diff --git a/src/TensorFlowNET.Keras/OptimizersV2/Ftrl.cs b/src/TensorFlowNET.Keras/OptimizersV2/Ftrl.cs new file mode 100644 index 00000000..758698a8 --- /dev/null +++ b/src/TensorFlowNET.Keras/OptimizersV2/Ftrl.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.OptimizersV2 +{ + class Ftrl + { + } +} diff --git a/src/TensorFlowNET.Keras/OptimizersV2/LearningRateSchedule.cs b/src/TensorFlowNET.Keras/OptimizersV2/LearningRateSchedule.cs new file mode 100644 index 00000000..2dd3df40 --- /dev/null +++ b/src/TensorFlowNET.Keras/OptimizersV2/LearningRateSchedule.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.OptimizersV2 +{ + class LearningRateSchedule + { + } +} diff --git a/src/TensorFlowNET.Keras/OptimizersV2/Nadam.cs b/src/TensorFlowNET.Keras/OptimizersV2/Nadam.cs new file mode 100644 index 00000000..ec247c41 --- /dev/null +++ b/src/TensorFlowNET.Keras/OptimizersV2/Nadam.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.OptimizersV2 +{ + class Nadam + { + } +} diff --git a/src/TensorFlowNET.Keras/OptimizersV2/RMSProp.cs b/src/TensorFlowNET.Keras/OptimizersV2/RMSProp.cs new file mode 100644 index 00000000..62d9f57b --- /dev/null +++ b/src/TensorFlowNET.Keras/OptimizersV2/RMSProp.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.OptimizersV2 +{ + class RMSProp + { + } +} diff --git a/src/TensorFlowNET.Keras/OptimizersV2/SGD.cs b/src/TensorFlowNET.Keras/OptimizersV2/SGD.cs new file mode 100644 index 00000000..8e72c486 --- /dev/null +++ b/src/TensorFlowNET.Keras/OptimizersV2/SGD.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.OptimizersV2 +{ + class SGD + { + } +} diff --git a/src/TensorFlowNET.Keras/Premade/LinearModel.cs b/src/TensorFlowNET.Keras/Premade/LinearModel.cs new file mode 100644 index 00000000..7b3d1276 --- /dev/null +++ b/src/TensorFlowNET.Keras/Premade/LinearModel.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Premade +{ + class LinearModel + { + } +} diff --git a/src/TensorFlowNET.Keras/Premade/WideDeepModel.cs b/src/TensorFlowNET.Keras/Premade/WideDeepModel.cs new file mode 100644 index 00000000..108c689b --- /dev/null +++ b/src/TensorFlowNET.Keras/Premade/WideDeepModel.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Premade +{ + class WideDeepModel + { + } +} diff --git a/src/TensorFlowNET.Keras/Preprocessing/Image.cs b/src/TensorFlowNET.Keras/Preprocessing/Image.cs new file mode 100644 index 00000000..ad9c9b12 --- /dev/null +++ b/src/TensorFlowNET.Keras/Preprocessing/Image.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Preprocessing +{ + class Image + { + } +} diff --git a/src/TensorFlowNET.Keras/Preprocessing/Sequence.cs b/src/TensorFlowNET.Keras/Preprocessing/Sequence.cs new file mode 100644 index 00000000..3773001f --- /dev/null +++ b/src/TensorFlowNET.Keras/Preprocessing/Sequence.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Preprocessing +{ + class Sequence + { + } +} diff --git a/src/TensorFlowNET.Keras/Preprocessing/Text.cs b/src/TensorFlowNET.Keras/Preprocessing/Text.cs new file mode 100644 index 00000000..7f6012c7 --- /dev/null +++ b/src/TensorFlowNET.Keras/Preprocessing/Text.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Preprocessing +{ + class Text + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/HDF5Format.cs b/src/TensorFlowNET.Keras/Saving/HDF5Format.cs new file mode 100644 index 00000000..52ed591c --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/HDF5Format.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving +{ + class HDF5Format + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/ModelConfig.cs b/src/TensorFlowNET.Keras/Saving/ModelConfig.cs new file mode 100644 index 00000000..934e9429 --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/ModelConfig.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving +{ + class ModelConfig + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/Save.cs b/src/TensorFlowNET.Keras/Saving/Save.cs new file mode 100644 index 00000000..f4469902 --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/Save.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving +{ + class Save + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModel/BaseSerialization.cs b/src/TensorFlowNET.Keras/Saving/SavedModel/BaseSerialization.cs new file mode 100644 index 00000000..90102a06 --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModel/BaseSerialization.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving.SavedModel +{ + class BaseSerialization + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModel/Constants.cs b/src/TensorFlowNET.Keras/Saving/SavedModel/Constants.cs new file mode 100644 index 00000000..85daf45d --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModel/Constants.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving.SavedModel +{ + class Constants + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModel/LayerSerialization.cs b/src/TensorFlowNET.Keras/Saving/SavedModel/LayerSerialization.cs new file mode 100644 index 00000000..bbf067fb --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModel/LayerSerialization.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving.SavedModel +{ + class LayerSerialization + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModel/Load.cs b/src/TensorFlowNET.Keras/Saving/SavedModel/Load.cs new file mode 100644 index 00000000..2508f7f6 --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModel/Load.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving.SavedModel +{ + class Load + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModel/ModelSerialization.cs b/src/TensorFlowNET.Keras/Saving/SavedModel/ModelSerialization.cs new file mode 100644 index 00000000..4a3e1336 --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModel/ModelSerialization.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving.SavedModel +{ + class ModelSerialization + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModel/NetworkSerialization.cs b/src/TensorFlowNET.Keras/Saving/SavedModel/NetworkSerialization.cs new file mode 100644 index 00000000..6eb17318 --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModel/NetworkSerialization.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving.SavedModel +{ + class NetworkSerialization + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModel/Save.cs b/src/TensorFlowNET.Keras/Saving/SavedModel/Save.cs new file mode 100644 index 00000000..45933877 --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModel/Save.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving.SavedModel +{ + class Save + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModel/SaveImpl.cs b/src/TensorFlowNET.Keras/Saving/SavedModel/SaveImpl.cs new file mode 100644 index 00000000..67a5f0dc --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModel/SaveImpl.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving.SavedModel +{ + class SaveImpl + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModel/SerializedAttributes.cs b/src/TensorFlowNET.Keras/Saving/SavedModel/SerializedAttributes.cs new file mode 100644 index 00000000..d1b19ccf --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModel/SerializedAttributes.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving.SavedModel +{ + class SerializedAttributes + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModel/Utils.cs b/src/TensorFlowNET.Keras/Saving/SavedModel/Utils.cs new file mode 100644 index 00000000..8beebdea --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModel/Utils.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving.SavedModel +{ + class Utils + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavedModelExperimental.cs b/src/TensorFlowNET.Keras/Saving/SavedModelExperimental.cs new file mode 100644 index 00000000..0455b622 --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavedModelExperimental.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving +{ + class SavedModelExperimental + { + } +} diff --git a/src/TensorFlowNET.Keras/Saving/SavingUtils.cs b/src/TensorFlowNET.Keras/Saving/SavingUtils.cs new file mode 100644 index 00000000..b5f03de8 --- /dev/null +++ b/src/TensorFlowNET.Keras/Saving/SavingUtils.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Tensorflow.Keras.Saving +{ + class SavingUtils + { + } +}