Deep learning using Keras.Net with C#.
Please follow site to Deeplearning using Keras.Net with .Net C#
- install Keras.NET using
Install-Package Keras.NET
.
2. you will get error like “System.DllNotFoundException: ‘Unable to load DLL ‘python37’ or one of its dependencies: The specified module could not be found. (0x8007007E)’” then you have to install python37 using below url.
3. once installed python37 you have to set the environment variable path.
PYTHON_HOME :C:\Users\..\AppData\Local\Programs\Python\Python37
PYTHONPATH:C:\Users\..\AppData\Local\Programs\Python\Python37\Lib
4. Once you run application it will throw an below errors.
Python.Runtime.PythonException: ‘ModuleNotFoundError : No module named ‘numpy’’
Then install “pip install numpy”
Python.Runtime.PythonException: ‘ModuleNotFoundError : No module named ‘keras’’
Then install “pip install keras”
Python.Runtime.PythonException: ‘ModuleNotFoundError : No module named ‘tensorflow’’
Then install “pip install tensorflow”
5. below code looks like python with keras but its a C# with Keras.Net.
Please follow my accounts and learn better.