Keras.NET 0.5.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Keras.NET --version 0.5.0
                    
NuGet\Install-Package Keras.NET -Version 0.5.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Keras.NET" Version="0.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Keras.NET" Version="0.5.0" />
                    
Directory.Packages.props
<PackageReference Include="Keras.NET" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Keras.NET --version 0.5.0
                    
#r "nuget: Keras.NET, 0.5.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Keras.NET&version=0.5.0
                    
Install Keras.NET as a Cake Addin
#tool nuget:?package=Keras.NET&version=0.5.0
                    
Install Keras.NET as a Cake Tool

Keras.NET

Keras.NET is a high-level neural networks API, written in C# with Python Binding and capable of running on top of TensorFlow, CNTK, or Theano. It was developed with a focus on enabling fast experimentation. Being able to go from idea to result with the least possible delay is key to doing good research.

Use Keras if you need a deep learning library that:

Allows for easy and fast prototyping (through user friendliness, modularity, and extensibility). Supports both convolutional networks and recurrent networks, as well as combinations of the two. Runs seamlessly on CPU and GPU.

Keras.NET is using:

Prerequisite

  • Python 3.7
  • Install keras and numpy

Example with XOR sample

//Load train data
NDarray x = np.array(new float[,] { { 0, 0 }, { 0, 1 }, { 1, 0 }, { 1, 1 } });
NDarray y = np.array(new float[] { 0, 1, 1, 0 });

//Build sequential model
var model = new Sequential();
model.Add(new Dense(32, activation: "relu", input_shape: new Shape(2)));
model.Add(new Dense(64, activation: "relu"));
model.Add(new Dense(1, activation: "sigmoid"));

//Compile and train
model.Compile(optimizer:"sgd", loss:"binary_crossentropy", metrics: new string[] { "accuracy" });
model.Fit(x, y, batch_size: 2, epochs: 1000, verbose: 1);

//Save model and weights
string json = model.ToJson();
File.WriteAllText("model.json", json);
model.SaveWeight("model.h5");

//Load model and weight
var loaded_model = Sequential.ModelFromJson(File.ReadAllText("model.json"));
loaded_model.LoadWeight("model.h5");

Output:

alternate text is missing from this package README image

Another example with Prima Indians Diabetic Dataset

Python example taken from: https://machinelearningmastery.com/save-load-keras-deep-learning-models/

//Load train data
NDarray dataset = np.loadtxt(fname: "pima-indians-diabetes.data.csv", delimiter: ",");
var X = dataset[":,0: 8"];
var Y = dataset[":, 8"];

//Build sequential model
var model = new Sequential();
model.Add(new Dense(12, input_dim: 8, kernel_initializer: "uniform", activation: "relu"));
model.Add(new Dense(8, kernel_initializer: "uniform", activation: "relu"));
model.Add(new Dense(1, activation: "sigmoid"));

//Compile and train
model.Compile(optimizer:"adam", loss:"binary_crossentropy", metrics: new string[] { "accuracy" });
model.Fit(X, Y, batch_size: 10, epochs: 150, verbose: 1);

//Evaluate model
var scores = model.Evaluate(X, Y, verbose: 1);
Console.WriteLine("Accuracy: {0}", scores[1] * 100);

//Save model and weights
string json = model.ToJson();
File.WriteAllText("model.json", json);
model.SaveWeight("model.h5");
Console.WriteLine("Saved model to disk");
//Load model and weight
var loaded_model = Sequential.ModelFromJson(File.ReadAllText("model.json"));
loaded_model.LoadWeight("model.h5");
Console.WriteLine("Loaded model from disk");

loaded_model.Compile(optimizer: "rmsprop", loss: "binary_crossentropy", metrics: new string[] { "accuracy" });
scores = model.Evaluate(X, Y, verbose: 1);
Console.WriteLine("Accuracy: {0}", scores[1] * 100);

Output

alternate text is missing from this package README image

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Keras.NET:

Package Downloads
Laraue.Core.Keras

Utils to launch Keras models in .NET

BasicSamples

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.8.5 26,501 12/7/2020
3.8.4.4 2,756 9/22/2020
3.7.5 1,441 12/7/2020
3.7.4.4 1,136 9/22/2020
3.7.4.2 8,751 5/1/2020
3.7.4.1 1,510 3/23/2020
3.7.3 2,494 1/10/2020
3.6.4.2 1,109 5/1/2020
3.6.4.1 681 3/23/2020
3.6.3 935 1/10/2020
3.6.2.4 954 12/28/2019
3.6.2.3 675 12/28/2019
3.6.2.2 715 12/28/2019
3.6.2.1 590 12/28/2019
3.6.1.12 1,507 11/8/2019
3.6.1.11 1,041 10/6/2019
3.6.1.10 688 10/6/2019
3.6.1.9 712 9/27/2019
3.6.1.8 3,547 8/22/2019
3.6.1.6 761 8/14/2019
3.6.1.5 807 7/30/2019
3.6.1.4 719 7/22/2019
3.6.1.1 706 7/22/2019
3.5.4.2 608 5/1/2020
3.5.4.1 608 3/23/2020
3.5.3 728 1/10/2020
3.5.2.4 640 12/28/2019
3.5.2.3 662 12/28/2019
3.5.2.2 679 12/28/2019
3.5.2.1 560 12/28/2019
3.5.1.12 583 11/8/2019
3.5.1.11 571 10/6/2019
3.5.1.10 587 10/6/2019
3.5.1.9 596 9/27/2019
3.5.1.8 612 8/22/2019
3.5.1.6 592 8/14/2019
3.5.1.5 603 7/30/2019
3.5.1.4 743 7/22/2019
2.7.5 567 12/7/2020
2.7.4.4 508 9/22/2020
2.7.4.2 558 5/1/2020
2.7.4.1 596 3/23/2020
2.7.3 660 1/10/2020
2.7.2.4 645 12/28/2019
2.7.2.3 680 12/28/2019
2.7.2.2 699 12/28/2019
2.7.2.1 676 12/28/2019
2.7.1.12 565 11/8/2019
2.7.1.11 593 10/6/2019
2.7.1.10 562 10/6/2019
2.7.1.9 557 9/27/2019
2.7.1.8 585 8/22/2019
2.7.1.6 589 8/14/2019
2.7.1.5 587 7/30/2019
2.7.1.4 597 7/22/2019
2.7.1.2 623 7/22/2019
2.7.1.1 713 7/22/2019
0.6.4 793 7/16/2019
0.6.3 735 6/26/2019
0.6.2 614 6/25/2019
0.6.0 630 6/21/2019
0.5.2 624 6/18/2019
0.5.0 694 6/18/2019