Browse Source

File struction completed. Starting to add skeleton methods and params before implementations

tags/v0.20
Deepak Kumar 5 years ago
parent
commit
c40b9065c1
100 changed files with 1000 additions and 0 deletions
  1. +10
    -0
      src/TensorFlowNET.Keras/Activations.cs
  2. +10
    -0
      src/TensorFlowNET.Keras/Backend.cs
  3. +10
    -0
      src/TensorFlowNET.Keras/BackendConfig.cs
  4. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/BaseLogger.cs
  5. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/CSVLogger.cs
  6. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/Callback.cs
  7. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/CallbackList.cs
  8. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/EarlyStopping.cs
  9. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/History.cs
  10. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/LambdaCallback.cs
  11. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/LearningRateScheduler.cs
  12. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/ModelCheckpoint.cs
  13. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/ProgbarLogger.cs
  14. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/ReduceLROnPlateau.cs
  15. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/RemoteMonitor.cs
  16. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/TensorBoard.cs
  17. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/TensorBoardV1.cs
  18. +10
    -0
      src/TensorFlowNET.Keras/Callbacks/TerminateOnNaN.cs
  19. +10
    -0
      src/TensorFlowNET.Keras/Constraints/ConstraintBase.cs
  20. +10
    -0
      src/TensorFlowNET.Keras/Constraints/MaxNorm.cs
  21. +10
    -0
      src/TensorFlowNET.Keras/Constraints/MinMaxNorm.cs
  22. +10
    -0
      src/TensorFlowNET.Keras/Constraints/NonNeg.cs
  23. +10
    -0
      src/TensorFlowNET.Keras/Constraints/RadialConstraint.cs
  24. +10
    -0
      src/TensorFlowNET.Keras/Constraints/UnitNorm.cs
  25. +10
    -0
      src/TensorFlowNET.Keras/Initializers/Constant.cs
  26. +10
    -0
      src/TensorFlowNET.Keras/Initializers/ConstantV2.cs
  27. +10
    -0
      src/TensorFlowNET.Keras/Initializers/GlorotNormal.cs
  28. +10
    -0
      src/TensorFlowNET.Keras/Initializers/GlorotNormalV2.cs
  29. +10
    -0
      src/TensorFlowNET.Keras/Initializers/GlorotUniform.cs
  30. +10
    -0
      src/TensorFlowNET.Keras/Initializers/GlorotUniformV2.cs
  31. +10
    -0
      src/TensorFlowNET.Keras/Initializers/HeNormal.cs
  32. +10
    -0
      src/TensorFlowNET.Keras/Initializers/HeNormalV2.cs
  33. +10
    -0
      src/TensorFlowNET.Keras/Initializers/HeUniform.cs
  34. +10
    -0
      src/TensorFlowNET.Keras/Initializers/HeUniformV2.cs
  35. +10
    -0
      src/TensorFlowNET.Keras/Initializers/Identity.cs
  36. +10
    -0
      src/TensorFlowNET.Keras/Initializers/IdentityV2.cs
  37. +10
    -0
      src/TensorFlowNET.Keras/Initializers/Initializer.cs
  38. +10
    -0
      src/TensorFlowNET.Keras/Initializers/InitializerV2.cs
  39. +10
    -0
      src/TensorFlowNET.Keras/Initializers/LecunNormal.cs
  40. +10
    -0
      src/TensorFlowNET.Keras/Initializers/LecunNormalV2.cs
  41. +10
    -0
      src/TensorFlowNET.Keras/Initializers/LecunUniform.cs
  42. +10
    -0
      src/TensorFlowNET.Keras/Initializers/LecunUniformV2.cs
  43. +10
    -0
      src/TensorFlowNET.Keras/Initializers/Ones.cs
  44. +10
    -0
      src/TensorFlowNET.Keras/Initializers/OnesV2.cs
  45. +10
    -0
      src/TensorFlowNET.Keras/Initializers/Orthogonal.cs
  46. +10
    -0
      src/TensorFlowNET.Keras/Initializers/OrthogonalV2.cs
  47. +10
    -0
      src/TensorFlowNET.Keras/Initializers/RandomNormal.cs
  48. +10
    -0
      src/TensorFlowNET.Keras/Initializers/RandomNormalV2.cs
  49. +10
    -0
      src/TensorFlowNET.Keras/Initializers/RandomUniform.cs
  50. +10
    -0
      src/TensorFlowNET.Keras/Initializers/RandomUniformV2.cs
  51. +10
    -0
      src/TensorFlowNET.Keras/Initializers/TruncatedNormal.cs
  52. +10
    -0
      src/TensorFlowNET.Keras/Initializers/TruncatedNormalV2.cs
  53. +10
    -0
      src/TensorFlowNET.Keras/Initializers/VarianceScaling.cs
  54. +10
    -0
      src/TensorFlowNET.Keras/Initializers/VarianceScalingV2.cs
  55. +10
    -0
      src/TensorFlowNET.Keras/Initializers/Zeros.cs
  56. +10
    -0
      src/TensorFlowNET.Keras/Initializers/ZerosV2.cs
  57. +10
    -0
      src/TensorFlowNET.Keras/KerasParameterized.cs
  58. +10
    -0
      src/TensorFlowNET.Keras/Losses/BinaryCrossentropy.cs
  59. +10
    -0
      src/TensorFlowNET.Keras/Losses/CategoricalCrossentropy.cs
  60. +10
    -0
      src/TensorFlowNET.Keras/Losses/CategoricalHinge.cs
  61. +10
    -0
      src/TensorFlowNET.Keras/Losses/CosineSimilarity.cs
  62. +10
    -0
      src/TensorFlowNET.Keras/Losses/Hinge.cs
  63. +10
    -0
      src/TensorFlowNET.Keras/Losses/Huber.cs
  64. +10
    -0
      src/TensorFlowNET.Keras/Losses/KLDivergence.cs
  65. +10
    -0
      src/TensorFlowNET.Keras/Losses/LogCosh.cs
  66. +10
    -0
      src/TensorFlowNET.Keras/Losses/Loss.cs
  67. +10
    -0
      src/TensorFlowNET.Keras/Losses/LossFunctionWrapper.cs
  68. +10
    -0
      src/TensorFlowNET.Keras/Losses/MeanAbsoluteError.cs
  69. +10
    -0
      src/TensorFlowNET.Keras/Losses/MeanAbsolutePercentageError.cs
  70. +10
    -0
      src/TensorFlowNET.Keras/Losses/MeanSquaredError.cs
  71. +10
    -0
      src/TensorFlowNET.Keras/Losses/MeanSquaredLogarithmicError.cs
  72. +10
    -0
      src/TensorFlowNET.Keras/Losses/Poisson.cs
  73. +10
    -0
      src/TensorFlowNET.Keras/Losses/SparseCategoricalCrossentropy.cs
  74. +10
    -0
      src/TensorFlowNET.Keras/Losses/SquaredHinge.cs
  75. +10
    -0
      src/TensorFlowNET.Keras/Metrics/AUC.cs
  76. +10
    -0
      src/TensorFlowNET.Keras/Metrics/Accuracy.cs
  77. +10
    -0
      src/TensorFlowNET.Keras/Metrics/BinaryAccuracy.cs
  78. +10
    -0
      src/TensorFlowNET.Keras/Metrics/BinaryCrossentropy.cs
  79. +10
    -0
      src/TensorFlowNET.Keras/Metrics/CategoricalAccuracy.cs
  80. +10
    -0
      src/TensorFlowNET.Keras/Metrics/CategoricalCrossentropy.cs
  81. +10
    -0
      src/TensorFlowNET.Keras/Metrics/CategoricalHinge.cs
  82. +10
    -0
      src/TensorFlowNET.Keras/Metrics/CosineSimilarity.cs
  83. +10
    -0
      src/TensorFlowNET.Keras/Metrics/FalseNegatives.cs
  84. +10
    -0
      src/TensorFlowNET.Keras/Metrics/FalsePositives.cs
  85. +10
    -0
      src/TensorFlowNET.Keras/Metrics/Hinge.cs
  86. +10
    -0
      src/TensorFlowNET.Keras/Metrics/KLDivergence.cs
  87. +10
    -0
      src/TensorFlowNET.Keras/Metrics/LogCoshError.cs
  88. +10
    -0
      src/TensorFlowNET.Keras/Metrics/Mean.cs
  89. +10
    -0
      src/TensorFlowNET.Keras/Metrics/MeanAbsoluteError.cs
  90. +10
    -0
      src/TensorFlowNET.Keras/Metrics/MeanAbsolutePercentageError.cs
  91. +10
    -0
      src/TensorFlowNET.Keras/Metrics/MeanIoU.cs
  92. +10
    -0
      src/TensorFlowNET.Keras/Metrics/MeanMetricWrapper.cs
  93. +10
    -0
      src/TensorFlowNET.Keras/Metrics/MeanRelativeError.cs
  94. +10
    -0
      src/TensorFlowNET.Keras/Metrics/MeanSquaredError.cs
  95. +10
    -0
      src/TensorFlowNET.Keras/Metrics/MeanSquaredLogarithmicError.cs
  96. +10
    -0
      src/TensorFlowNET.Keras/Metrics/MeanTensor.cs
  97. +10
    -0
      src/TensorFlowNET.Keras/Metrics/Metric.cs
  98. +10
    -0
      src/TensorFlowNET.Keras/Metrics/Poisson.cs
  99. +10
    -0
      src/TensorFlowNET.Keras/Metrics/Precision.cs
  100. +10
    -0
      src/TensorFlowNET.Keras/Metrics/PrecisionAtRecall.cs

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

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

namespace Tensorflow.Keras
{
class Activations
{
}
}

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

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

namespace Tensorflow.Keras
{
class Backend
{
}
}

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

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

namespace Tensorflow.Keras
{
class BackendConfig
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class BaseLogger
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class CSVLogger
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class Callback
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class CallbackList
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class EarlyStopping
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class History
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class LambdaCallback
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class LearningRateScheduler
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class ModelCheckpoint
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class ProgbarLogger
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class ReduceLROnPlateau
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class RemoteMonitor
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class TensorBoard
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class TensorBoardV1
{
}
}

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

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

namespace Tensorflow.Keras.Callbacks
{
class TerminateOnNaN
{
}
}

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

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

namespace Tensorflow.Keras.Constraints
{
class ConstraintBase
{
}
}

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

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

namespace Tensorflow.Keras.Constraints
{
class MaxNorm
{
}
}

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

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

namespace Tensorflow.Keras.Constraints
{
class MinMaxNorm
{
}
}

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

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

namespace Tensorflow.Keras.Constraints
{
class NonNeg
{
}
}

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

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

namespace Tensorflow.Keras.Constraints
{
class RadialConstraint
{
}
}

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

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

namespace Tensorflow.Keras.Constraints
{
class UnitNorm
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class Constant
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class ConstantV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class GlorotNormal
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class GlorotNormalV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class GlorotUniform
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class GlorotUniformV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class HeNormal
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class HeNormalV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class HeUniform
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class HeUniformV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class Identity
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class IdentityV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class Initializer
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class InitializerV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class LecunNormal
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class LecunNormalV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class LecunUniform
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class LecunUniformV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class Ones
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class OnesV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class Orthogonal
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class OrthogonalV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class RandomNormal
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class RandomNormalV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class RandomUniform
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class RandomUniformV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class TruncatedNormal
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class TruncatedNormalV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class VarianceScaling
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class VarianceScalingV2
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class Zeros
{
}
}

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

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

namespace Tensorflow.Keras.Initializers
{
class ZerosV2
{
}
}

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

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

namespace Tensorflow.Keras
{
class KerasParameterized
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class BinaryCrossentropy
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class CategoricalCrossentropy
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class CategoricalHinge
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class CosineSimilarity
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class Hinge
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class Huber
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class KLDivergence
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class LogCosh
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class Loss
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class LossFunctionWrapper
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class MeanAbsoluteError
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class MeanAbsolutePercentageError
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class MeanSquaredError
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class MeanSquaredLogarithmicError
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class Poisson
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class SparseCategoricalCrossentropy
{
}
}

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

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

namespace Tensorflow.Keras.Losses
{
class SquaredHinge
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class AUC
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class Accuracy
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class BinaryAccuracy
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class BinaryCrossentropy
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class CategoricalAccuracy
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class CategoricalCrossentropy
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class CategoricalHinge
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class CosineSimilarity
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class FalseNegatives
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class FalsePositives
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class Hinge
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class KLDivergence
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class LogCoshError
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class Mean
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class MeanAbsoluteError
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class MeanAbsolutePercentageError
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class MeanIoU
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class MeanMetricWrapper
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class MeanRelativeError
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class MeanSquaredError
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class MeanSquaredLogarithmicError
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class MeanTensor
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class Metric
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class Poisson
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class Precision
{
}
}

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

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

namespace Tensorflow.Keras.Metrics
{
class PrecisionAtRecall
{
}
}

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

Loading…
Cancel
Save