I am looking for a good example of the source code of a controlled neural network that takes more than two functions (unlike most XY examples) and classifies the data into two sets. From what I read, there may be a Support Vector Machine (SVM) solution
All the classification examples that I found are two-dimensional. Here are a few:
I am trying to distinguish rare events from a series of inputs that are usually stable. Features - key-value pairs, where a value can usually be sampled as a small number. The available training data for the first category is huge, but with several sets of exercises for the second category, if that matters.
Sample training set
Category A
[2, 1, 0, 1, 4, 3] -> A [1, 1, 2, 3, 3, 0] -> A [0, 0, 1, 3, 2, 0] -> A
Category B
[0, 4, 4, 4, 4, 3] -> B
Classification Example
[1, 3, 4, 4, 4, 0] -> ??? (probably B)
Trust rating, for example. โ85% defined Bโ, it would be useful to distinguish between a threshold for a rare event.
Is a neural network the best solution and are there any .NET libraries with this built-in?
c # classification neural-network
Petrus theron
source share