Calling python script from C#

前端 未结 3 1089
一整个雨季
一整个雨季 2021-02-10 19:22

I have a C# code which helps to run python environment first and then it executes my python process. But the problem is it takes a lot of time to execute.

Actually i j

3条回答
  •  清酒与你
    2021-02-10 20:08

    Why don't you actually use Python to run the code instead of embedding in C#? How are you going to deploy on another machine with Python dependencies?

    If you would like to build machine learning models there are many frameworks like http://accord-framework.net/ for classic machine learning algorithms

    Also try my project as well: deepakkumar1984/SiaNet (https://github.com/deepakkumar1984/SiaNet) Its a C# wrapper with CNTK backend. Trying to implement keras like wrapper. Hope it helps!

提交回复
热议问题