This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
scisharp
/
TensorFlow.NET
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
21
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
File struction completed. Starting to add skeleton methods and params before implementations
tags/v0.20
Deepak Kumar
5 years ago
parent
43b27c3a00
commit
c40b9065c1
100 changed files
with
1000 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-0
src/TensorFlowNET.Keras/Activations.cs
+10
-0
src/TensorFlowNET.Keras/Backend.cs
+10
-0
src/TensorFlowNET.Keras/BackendConfig.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/BaseLogger.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/CSVLogger.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/Callback.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/CallbackList.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/EarlyStopping.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/History.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/LambdaCallback.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/LearningRateScheduler.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/ModelCheckpoint.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/ProgbarLogger.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/ReduceLROnPlateau.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/RemoteMonitor.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/TensorBoard.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/TensorBoardV1.cs
+10
-0
src/TensorFlowNET.Keras/Callbacks/TerminateOnNaN.cs
+10
-0
src/TensorFlowNET.Keras/Constraints/ConstraintBase.cs
+10
-0
src/TensorFlowNET.Keras/Constraints/MaxNorm.cs
+10
-0
src/TensorFlowNET.Keras/Constraints/MinMaxNorm.cs
+10
-0
src/TensorFlowNET.Keras/Constraints/NonNeg.cs
+10
-0
src/TensorFlowNET.Keras/Constraints/RadialConstraint.cs
+10
-0
src/TensorFlowNET.Keras/Constraints/UnitNorm.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/Constant.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/ConstantV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/GlorotNormal.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/GlorotNormalV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/GlorotUniform.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/GlorotUniformV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/HeNormal.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/HeNormalV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/HeUniform.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/HeUniformV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/Identity.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/IdentityV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/Initializer.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/InitializerV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/LecunNormal.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/LecunNormalV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/LecunUniform.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/LecunUniformV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/Ones.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/OnesV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/Orthogonal.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/OrthogonalV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/RandomNormal.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/RandomNormalV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/RandomUniform.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/RandomUniformV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/TruncatedNormal.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/TruncatedNormalV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/VarianceScaling.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/VarianceScalingV2.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/Zeros.cs
+10
-0
src/TensorFlowNET.Keras/Initializers/ZerosV2.cs
+10
-0
src/TensorFlowNET.Keras/KerasParameterized.cs
+10
-0
src/TensorFlowNET.Keras/Losses/BinaryCrossentropy.cs
+10
-0
src/TensorFlowNET.Keras/Losses/CategoricalCrossentropy.cs
+10
-0
src/TensorFlowNET.Keras/Losses/CategoricalHinge.cs
+10
-0
src/TensorFlowNET.Keras/Losses/CosineSimilarity.cs
+10
-0
src/TensorFlowNET.Keras/Losses/Hinge.cs
+10
-0
src/TensorFlowNET.Keras/Losses/Huber.cs
+10
-0
src/TensorFlowNET.Keras/Losses/KLDivergence.cs
+10
-0
src/TensorFlowNET.Keras/Losses/LogCosh.cs
+10
-0
src/TensorFlowNET.Keras/Losses/Loss.cs
+10
-0
src/TensorFlowNET.Keras/Losses/LossFunctionWrapper.cs
+10
-0
src/TensorFlowNET.Keras/Losses/MeanAbsoluteError.cs
+10
-0
src/TensorFlowNET.Keras/Losses/MeanAbsolutePercentageError.cs
+10
-0
src/TensorFlowNET.Keras/Losses/MeanSquaredError.cs
+10
-0
src/TensorFlowNET.Keras/Losses/MeanSquaredLogarithmicError.cs
+10
-0
src/TensorFlowNET.Keras/Losses/Poisson.cs
+10
-0
src/TensorFlowNET.Keras/Losses/SparseCategoricalCrossentropy.cs
+10
-0
src/TensorFlowNET.Keras/Losses/SquaredHinge.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/AUC.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/Accuracy.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/BinaryAccuracy.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/BinaryCrossentropy.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/CategoricalAccuracy.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/CategoricalCrossentropy.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/CategoricalHinge.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/CosineSimilarity.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/FalseNegatives.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/FalsePositives.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/Hinge.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/KLDivergence.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/LogCoshError.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/Mean.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/MeanAbsoluteError.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/MeanAbsolutePercentageError.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/MeanIoU.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/MeanMetricWrapper.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/MeanRelativeError.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/MeanSquaredError.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/MeanSquaredLogarithmicError.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/MeanTensor.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/Metric.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/Poisson.cs
+10
-0
src/TensorFlowNET.Keras/Metrics/Precision.cs
+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
Write
Preview
Loading…
Cancel
Save