Reputation: 87
I don't really understand how I should implement following problem with help of ANN:
Let's say I have a few data sets, which represent the force on a car. (The test car drives on a special road with simulated road damages. All in all there are 8 different ones).
Now I want to train my model to recognize these road damages on data from cars, which drive on normal roads. That's the goal.
The question for me is, how do I classify the road damages correctly for the ANN?
Should I just cut out the special patterns of the road damages and feed my ANN with it?
Thanks in advance!
Upvotes: 0
Views: 115
Reputation: 627
First of all, if you want to traing an ANN for a any specific task you generally have to complete the following steps:
That means for your case:
You will probably need some iterations of step 3-5 until you come up with a well working classifier.
Upvotes: 1