How to create neural networks in C #?

I am doing object detection in C # using the emgucv library. But is it difficult for me to develop a neural network in C # to detect an object? Please, any body will help me in this topic and how to test an object on the network.

+3
source share
3 answers

It may not be exactly what you are looking for, but you can use this simple library as the base library of OOP neural networks in C #, which allows you to create additional functions: http://allthingscs.blogspot.com/2011/04/neural -networks-with-c-part-1.html

+2

Source: https://habr.com/ru/post/1721478/


All Articles