diff --git a/src/TensorFlowNET.Core/Keras/IOptimizerApi.cs b/src/TensorFlowNET.Core/Keras/IOptimizerApi.cs
index 19e3a7b8..6c15fd46 100644
--- a/src/TensorFlowNET.Core/Keras/IOptimizerApi.cs
+++ b/src/TensorFlowNET.Core/Keras/IOptimizerApi.cs
@@ -63,6 +63,6 @@ namespace Tensorflow.Keras
bool centered = false,
string name = "RMSprop");
- IOptimizer SGD(float learning_rate, float momentum);
+ IOptimizer SGD(float learning_rate = 0.01f, float momentum = 0f);
}
}
diff --git a/src/TensorFlowNET.Core/Tensorflow.Binding.csproj b/src/TensorFlowNET.Core/Tensorflow.Binding.csproj
index ca5aa47a..babb5256 100644
--- a/src/TensorFlowNET.Core/Tensorflow.Binding.csproj
+++ b/src/TensorFlowNET.Core/Tensorflow.Binding.csproj
@@ -5,13 +5,13 @@
Tensorflow.Binding
Tensorflow
2.11.0
- 0.110.2
+ 0.110.3
10.0
enable
Haiping Chen, Eli Belash, Yaohui Liu, Meinrad Recheis
SciSharp STACK
False
- Apache 2.0, Haiping Chen $([System.DateTime]::UtcNow.ToString(yyyy))
+ Apache 2.0, Haiping Chen since 2018
https://github.com/SciSharp/TensorFlow.NET
git
http://scisharpstack.org
@@ -20,7 +20,7 @@
Google's TensorFlow full binding in .NET Standard.
Building, training and infering deep learning models.
https://tensorflownet.readthedocs.io
- 0.110.1.0
+ 0.110.3.0
tf.net 0.110.x and above are based on tensorflow native 2.11.0
* Support RNN, LSTM model.
@@ -43,7 +43,7 @@ https://tensorflownet.readthedocs.io
tf.net 0.10x.x aligns with TensorFlow v2.10.x native library.
tf.net 0.11x.x aligns with TensorFlow v2.11.x native library.
- 0.110.2.0
+ 0.110.3.0
LICENSE
true
packages
@@ -172,7 +172,7 @@ https://tensorflownet.readthedocs.io
-
+
diff --git a/src/TensorFlowNET.Keras/Optimizers/OptimizerApi.cs b/src/TensorFlowNET.Keras/Optimizers/OptimizerApi.cs
index affd43a4..a237499f 100644
--- a/src/TensorFlowNET.Keras/Optimizers/OptimizerApi.cs
+++ b/src/TensorFlowNET.Keras/Optimizers/OptimizerApi.cs
@@ -71,7 +71,7 @@ namespace Tensorflow.Keras.Optimizers
Name = name
});
- public IOptimizer SGD(float learning_rate, float momentum)
+ public IOptimizer SGD(float learning_rate = 0.01f, float momentum = 0f)
=> new SGD(learning_rate, momentum);
}
}
diff --git a/src/TensorFlowNET.Keras/Tensorflow.Keras.csproj b/src/TensorFlowNET.Keras/Tensorflow.Keras.csproj
index eeb7c559..36d1bc1d 100644
--- a/src/TensorFlowNET.Keras/Tensorflow.Keras.csproj
+++ b/src/TensorFlowNET.Keras/Tensorflow.Keras.csproj
@@ -7,27 +7,30 @@
enable
Tensorflow.Keras
AnyCPU;x64
- 0.11.2
+ 0.11.3
Haiping Chen
Keras for .NET
- Apache 2.0, Haiping Chen 2023
+ Apache 2.0, Haiping Chen since 2018
TensorFlow.Keras
https://github.com/SciSharp/TensorFlow.NET
https://avatars3.githubusercontent.com/u/44989469?s=200&v=4
https://github.com/SciSharp/TensorFlow.NET
- Keras for .NET is a C# version of Keras ported from the python version.
-
-* Support CIFAR-10 dataset in keras.datasets.
-* Support Conv2D functional API.
-* Support BatchNormalization layer.
-* Building keras model in subclass, functional and sequential api
-* Implemented backward_function.
-* Support model.load_weights.
-* Add Subtract layer
-* Text preprocessing
-* Preprocessing.timeseries_dataset_from_array
-* Fixed memory leak for YOLOv3 model.
-* Support RNN and LSTM models
+
+ Keras for .NET is a C# version of Keras ported from the python version.
+
+ * Support CIFAR-10 dataset in keras.datasets.
+ * Support Conv2D functional API.
+ * Support BatchNormalization layer.
+ * Building keras model in subclass, functional and sequential api
+ * Implemented backward_function.
+ * Support model.load_weights.
+ * Add Subtract layer
+ * Text preprocessing
+ * Preprocessing.timeseries_dataset_from_array
+ * Fixed memory leak for YOLOv3 model.
+ * Support RNN and LSTM models
+ * Support Transformer model
+
Keras for .NET
Keras is an API designed for human beings, not machines. Keras follows best practices for reducing cognitive load: it offers consistent & simple APIs, it minimizes the number of user actions required for common use cases, and it provides clear & actionable error messages.
@@ -39,8 +42,8 @@ Keras is an API designed for human beings, not machines. Keras follows best prac
Git
False
Open.snk
- 0.11.2.0
- 0.11.2.0
+ 0.11.3.0
+ 0.11.3.0
LICENSE
Debug;Release;GPU
@@ -140,7 +143,7 @@ Keras is an API designed for human beings, not machines. Keras follows best prac
-
+