Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.65 KB

README.md

File metadata and controls

25 lines (20 loc) · 1.65 KB

[Depricated] !!!Example of integration between Tensorflow Serving 2.0 and NetCore Client App is available here.

TensorFlow Serving MNIST Deep C# client

This is example of C# clients for TensorFlow Serving gRPC service. Repository contains the following content:

  • learning - python script with MNIST deep training model prepare and Readme short instructions how to execute TensorFlow serving with this model.
  • ClientBaseLib - base library with TF Serving gRPC generated classes and utils classes to create Tensors.
  • Console Client - simple console client application MNIST prediction example
  • ASP.NET Core 2.0/ ReactJS Client - SPA application gRPC client for MNIST prediction TensorFlow Serving

How to start web application

  • Run TensorFlow Serving with instructions here
  • Open .NET solution.
  • Update appsetting.json with TensorFlow Serving address:
"TfServer": {
        "ServerUrl": "192.168.1.38:9000"
    }
  • Start web application with IIS express
  • Test prediction

.NET TensorFlow Client