I've been playing around with this on and off for weeks and I'm feeling like this isn't possible on embedded systems I just want to train and develop the network on pc and implement a realtime network on an embedded ARM system with the training data compiled into it. the problem is having no filesystem. I've tried rewriting the Fann_create_from_file_fd to acccept a header containing a giant string containing the XOR_data.net saved fann data but That's not really feasible since a network with a hundred...
I've been playing around with this on and off for weeks and I'm feeling like this isn't possible on embedded systems I just want to train and develop the network on pc and implement a realtime network on an embedded system with the training data compiled into it. the problem is having no filesystem. I've tried rewriting the Fann_create_from_file_fd to acccept a header containing a giant string containing the XOR_data.net saved fann data but That's not really feasible since a network with a hundred...
Hi there, I'm a pretty big novice at this stuff but excited to learn. I'm trying to adapt the provided source files to work on a ARM0 C processor on KeilUvision but getting lost at what needs to be changed in the libraries to get it working. I'm assuming I'm going to train the data on a pc and then transfer traning data to the device for compiling. My confusion stems from the Simple execution example. It uses fann_create_from_file("xor_float.net"); since this is not a device with a filesystem how...