Neural network in embedded applicaion

Thread Starter

bug13

Joined Feb 13, 2012
2,002
Hi guys

I have played around with an Artificial Neural Network (ANN) library a while ago, I found it very interesting. But yet I can't thought of an application for it. Have anyone of you worked on a project that requires ANN? Or can think of a project that would benefit from ANN?

Thanks guys!

PS:
It's possible to run some simple ANN in a 8bit MCU, but I mainly focus on ARM here.
 

wayneh

Joined Sep 9, 2010
18,104
My only experience with it was using it to model data, instead of linear regression. The latter has an absolute requirement for complete data. It cannot tolerate a missing data point for any X value. So maybe you have a Y data point and 9 of 10 of your X values. You have to eliminate that point from the data set.

A neural network model does not have that requirement. So in my case I was hoping to get a better model by allowing in a few more data points.

It's a long time ago, but my recollection is that it worked, but not well enough to warrant bothering with it.
 
Top